diff options
Diffstat (limited to 'drivers/scsi')
81 files changed, 3727 insertions, 1794 deletions
diff --git a/drivers/scsi/3w-9xxx.c b/drivers/scsi/3w-9xxx.c index 31c497542272..d9152d02088c 100644 --- a/drivers/scsi/3w-9xxx.c +++ b/drivers/scsi/3w-9xxx.c | |||
@@ -61,6 +61,7 @@ | |||
61 | Add support for embedded firmware error strings. | 61 | Add support for embedded firmware error strings. |
62 | 2.26.02.003 - Correctly handle single sgl's with use_sg=1. | 62 | 2.26.02.003 - Correctly handle single sgl's with use_sg=1. |
63 | 2.26.02.004 - Add support for 9550SX controllers. | 63 | 2.26.02.004 - Add support for 9550SX controllers. |
64 | 2.26.02.005 - Fix use_sg == 0 mapping on systems with 4GB or higher. | ||
64 | */ | 65 | */ |
65 | 66 | ||
66 | #include <linux/module.h> | 67 | #include <linux/module.h> |
@@ -84,7 +85,7 @@ | |||
84 | #include "3w-9xxx.h" | 85 | #include "3w-9xxx.h" |
85 | 86 | ||
86 | /* Globals */ | 87 | /* Globals */ |
87 | #define TW_DRIVER_VERSION "2.26.02.004" | 88 | #define TW_DRIVER_VERSION "2.26.02.005" |
88 | static TW_Device_Extension *twa_device_extension_list[TW_MAX_SLOT]; | 89 | static TW_Device_Extension *twa_device_extension_list[TW_MAX_SLOT]; |
89 | static unsigned int twa_device_extension_count; | 90 | static unsigned int twa_device_extension_count; |
90 | static int twa_major = -1; | 91 | static int twa_major = -1; |
@@ -1408,7 +1409,7 @@ static dma_addr_t twa_map_scsi_single_data(TW_Device_Extension *tw_dev, int requ | |||
1408 | dma_addr_t mapping; | 1409 | dma_addr_t mapping; |
1409 | struct scsi_cmnd *cmd = tw_dev->srb[request_id]; | 1410 | struct scsi_cmnd *cmd = tw_dev->srb[request_id]; |
1410 | struct pci_dev *pdev = tw_dev->tw_pci_dev; | 1411 | struct pci_dev *pdev = tw_dev->tw_pci_dev; |
1411 | int retval = 0; | 1412 | dma_addr_t retval = 0; |
1412 | 1413 | ||
1413 | if (cmd->request_bufflen == 0) { | 1414 | if (cmd->request_bufflen == 0) { |
1414 | retval = 0; | 1415 | retval = 0; |
@@ -1798,7 +1799,7 @@ static int twa_scsiop_execute_scsi(TW_Device_Extension *tw_dev, int request_id, | |||
1798 | int i, sg_count; | 1799 | int i, sg_count; |
1799 | struct scsi_cmnd *srb = NULL; | 1800 | struct scsi_cmnd *srb = NULL; |
1800 | struct scatterlist *sglist = NULL; | 1801 | struct scatterlist *sglist = NULL; |
1801 | u32 buffaddr = 0x0; | 1802 | dma_addr_t buffaddr = 0x0; |
1802 | int retval = 1; | 1803 | int retval = 1; |
1803 | 1804 | ||
1804 | if (tw_dev->srb[request_id]) { | 1805 | if (tw_dev->srb[request_id]) { |
diff --git a/drivers/scsi/aacraid/aachba.c b/drivers/scsi/aacraid/aachba.c index 7139659dd952..a16f8ded8f1d 100644 --- a/drivers/scsi/aacraid/aachba.c +++ b/drivers/scsi/aacraid/aachba.c | |||
@@ -173,10 +173,10 @@ int aac_get_config_status(struct aac_dev *dev) | |||
173 | int status = 0; | 173 | int status = 0; |
174 | struct fib * fibptr; | 174 | struct fib * fibptr; |
175 | 175 | ||
176 | if (!(fibptr = fib_alloc(dev))) | 176 | if (!(fibptr = aac_fib_alloc(dev))) |
177 | return -ENOMEM; | 177 | return -ENOMEM; |
178 | 178 | ||
179 | fib_init(fibptr); | 179 | aac_fib_init(fibptr); |
180 | { | 180 | { |
181 | struct aac_get_config_status *dinfo; | 181 | struct aac_get_config_status *dinfo; |
182 | dinfo = (struct aac_get_config_status *) fib_data(fibptr); | 182 | dinfo = (struct aac_get_config_status *) fib_data(fibptr); |
@@ -186,7 +186,7 @@ int aac_get_config_status(struct aac_dev *dev) | |||
186 | dinfo->count = cpu_to_le32(sizeof(((struct aac_get_config_status_resp *)NULL)->data)); | 186 | dinfo->count = cpu_to_le32(sizeof(((struct aac_get_config_status_resp *)NULL)->data)); |
187 | } | 187 | } |
188 | 188 | ||
189 | status = fib_send(ContainerCommand, | 189 | status = aac_fib_send(ContainerCommand, |
190 | fibptr, | 190 | fibptr, |
191 | sizeof (struct aac_get_config_status), | 191 | sizeof (struct aac_get_config_status), |
192 | FsaNormal, | 192 | FsaNormal, |
@@ -209,30 +209,30 @@ int aac_get_config_status(struct aac_dev *dev) | |||
209 | status = -EINVAL; | 209 | status = -EINVAL; |
210 | } | 210 | } |
211 | } | 211 | } |
212 | fib_complete(fibptr); | 212 | aac_fib_complete(fibptr); |
213 | /* Send a CT_COMMIT_CONFIG to enable discovery of devices */ | 213 | /* Send a CT_COMMIT_CONFIG to enable discovery of devices */ |
214 | if (status >= 0) { | 214 | if (status >= 0) { |
215 | if (commit == 1) { | 215 | if (commit == 1) { |
216 | struct aac_commit_config * dinfo; | 216 | struct aac_commit_config * dinfo; |
217 | fib_init(fibptr); | 217 | aac_fib_init(fibptr); |
218 | dinfo = (struct aac_commit_config *) fib_data(fibptr); | 218 | dinfo = (struct aac_commit_config *) fib_data(fibptr); |
219 | 219 | ||
220 | dinfo->command = cpu_to_le32(VM_ContainerConfig); | 220 | dinfo->command = cpu_to_le32(VM_ContainerConfig); |
221 | dinfo->type = cpu_to_le32(CT_COMMIT_CONFIG); | 221 | dinfo->type = cpu_to_le32(CT_COMMIT_CONFIG); |
222 | 222 | ||
223 | status = fib_send(ContainerCommand, | 223 | status = aac_fib_send(ContainerCommand, |
224 | fibptr, | 224 | fibptr, |
225 | sizeof (struct aac_commit_config), | 225 | sizeof (struct aac_commit_config), |
226 | FsaNormal, | 226 | FsaNormal, |
227 | 1, 1, | 227 | 1, 1, |
228 | NULL, NULL); | 228 | NULL, NULL); |
229 | fib_complete(fibptr); | 229 | aac_fib_complete(fibptr); |
230 | } else if (commit == 0) { | 230 | } else if (commit == 0) { |
231 | printk(KERN_WARNING | 231 | printk(KERN_WARNING |
232 | "aac_get_config_status: Foreign device configurations are being ignored\n"); | 232 | "aac_get_config_status: Foreign device configurations are being ignored\n"); |
233 | } | 233 | } |
234 | } | 234 | } |
235 | fib_free(fibptr); | 235 | aac_fib_free(fibptr); |
236 | return status; | 236 | return status; |
237 | } | 237 | } |
238 | 238 | ||
@@ -255,15 +255,15 @@ int aac_get_containers(struct aac_dev *dev) | |||
255 | 255 | ||
256 | instance = dev->scsi_host_ptr->unique_id; | 256 | instance = dev->scsi_host_ptr->unique_id; |
257 | 257 | ||
258 | if (!(fibptr = fib_alloc(dev))) | 258 | if (!(fibptr = aac_fib_alloc(dev))) |
259 | return -ENOMEM; | 259 | return -ENOMEM; |
260 | 260 | ||
261 | fib_init(fibptr); | 261 | aac_fib_init(fibptr); |
262 | dinfo = (struct aac_get_container_count *) fib_data(fibptr); | 262 | dinfo = (struct aac_get_container_count *) fib_data(fibptr); |
263 | dinfo->command = cpu_to_le32(VM_ContainerConfig); | 263 | dinfo->command = cpu_to_le32(VM_ContainerConfig); |
264 | dinfo->type = cpu_to_le32(CT_GET_CONTAINER_COUNT); | 264 | dinfo->type = cpu_to_le32(CT_GET_CONTAINER_COUNT); |
265 | 265 | ||
266 | status = fib_send(ContainerCommand, | 266 | status = aac_fib_send(ContainerCommand, |
267 | fibptr, | 267 | fibptr, |
268 | sizeof (struct aac_get_container_count), | 268 | sizeof (struct aac_get_container_count), |
269 | FsaNormal, | 269 | FsaNormal, |
@@ -272,7 +272,7 @@ int aac_get_containers(struct aac_dev *dev) | |||
272 | if (status >= 0) { | 272 | if (status >= 0) { |
273 | dresp = (struct aac_get_container_count_resp *)fib_data(fibptr); | 273 | dresp = (struct aac_get_container_count_resp *)fib_data(fibptr); |
274 | maximum_num_containers = le32_to_cpu(dresp->ContainerSwitchEntries); | 274 | maximum_num_containers = le32_to_cpu(dresp->ContainerSwitchEntries); |
275 | fib_complete(fibptr); | 275 | aac_fib_complete(fibptr); |
276 | } | 276 | } |
277 | 277 | ||
278 | if (maximum_num_containers < MAXIMUM_NUM_CONTAINERS) | 278 | if (maximum_num_containers < MAXIMUM_NUM_CONTAINERS) |
@@ -280,7 +280,7 @@ int aac_get_containers(struct aac_dev *dev) | |||
280 | fsa_dev_ptr = (struct fsa_dev_info *) kmalloc( | 280 | fsa_dev_ptr = (struct fsa_dev_info *) kmalloc( |
281 | sizeof(*fsa_dev_ptr) * maximum_num_containers, GFP_KERNEL); | 281 | sizeof(*fsa_dev_ptr) * maximum_num_containers, GFP_KERNEL); |
282 | if (!fsa_dev_ptr) { | 282 | if (!fsa_dev_ptr) { |
283 | fib_free(fibptr); | 283 | aac_fib_free(fibptr); |
284 | return -ENOMEM; | 284 | return -ENOMEM; |
285 | } | 285 | } |
286 | memset(fsa_dev_ptr, 0, sizeof(*fsa_dev_ptr) * maximum_num_containers); | 286 | memset(fsa_dev_ptr, 0, sizeof(*fsa_dev_ptr) * maximum_num_containers); |
@@ -294,14 +294,14 @@ int aac_get_containers(struct aac_dev *dev) | |||
294 | 294 | ||
295 | fsa_dev_ptr[index].devname[0] = '\0'; | 295 | fsa_dev_ptr[index].devname[0] = '\0'; |
296 | 296 | ||
297 | fib_init(fibptr); | 297 | aac_fib_init(fibptr); |
298 | dinfo = (struct aac_query_mount *) fib_data(fibptr); | 298 | dinfo = (struct aac_query_mount *) fib_data(fibptr); |
299 | 299 | ||
300 | dinfo->command = cpu_to_le32(VM_NameServe); | 300 | dinfo->command = cpu_to_le32(VM_NameServe); |
301 | dinfo->count = cpu_to_le32(index); | 301 | dinfo->count = cpu_to_le32(index); |
302 | dinfo->type = cpu_to_le32(FT_FILESYS); | 302 | dinfo->type = cpu_to_le32(FT_FILESYS); |
303 | 303 | ||
304 | status = fib_send(ContainerCommand, | 304 | status = aac_fib_send(ContainerCommand, |
305 | fibptr, | 305 | fibptr, |
306 | sizeof (struct aac_query_mount), | 306 | sizeof (struct aac_query_mount), |
307 | FsaNormal, | 307 | FsaNormal, |
@@ -319,7 +319,7 @@ int aac_get_containers(struct aac_dev *dev) | |||
319 | dinfo->count = cpu_to_le32(index); | 319 | dinfo->count = cpu_to_le32(index); |
320 | dinfo->type = cpu_to_le32(FT_FILESYS); | 320 | dinfo->type = cpu_to_le32(FT_FILESYS); |
321 | 321 | ||
322 | if (fib_send(ContainerCommand, | 322 | if (aac_fib_send(ContainerCommand, |
323 | fibptr, | 323 | fibptr, |
324 | sizeof(struct aac_query_mount), | 324 | sizeof(struct aac_query_mount), |
325 | FsaNormal, | 325 | FsaNormal, |
@@ -347,7 +347,7 @@ int aac_get_containers(struct aac_dev *dev) | |||
347 | if (le32_to_cpu(dresp->mnt[0].state) & FSCS_READONLY) | 347 | if (le32_to_cpu(dresp->mnt[0].state) & FSCS_READONLY) |
348 | fsa_dev_ptr[index].ro = 1; | 348 | fsa_dev_ptr[index].ro = 1; |
349 | } | 349 | } |
350 | fib_complete(fibptr); | 350 | aac_fib_complete(fibptr); |
351 | /* | 351 | /* |
352 | * If there are no more containers, then stop asking. | 352 | * If there are no more containers, then stop asking. |
353 | */ | 353 | */ |
@@ -355,7 +355,7 @@ int aac_get_containers(struct aac_dev *dev) | |||
355 | break; | 355 | break; |
356 | } | 356 | } |
357 | } | 357 | } |
358 | fib_free(fibptr); | 358 | aac_fib_free(fibptr); |
359 | return status; | 359 | return status; |
360 | } | 360 | } |
361 | 361 | ||
@@ -413,8 +413,8 @@ static void get_container_name_callback(void *context, struct fib * fibptr) | |||
413 | 413 | ||
414 | scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD; | 414 | scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD; |
415 | 415 | ||
416 | fib_complete(fibptr); | 416 | aac_fib_complete(fibptr); |
417 | fib_free(fibptr); | 417 | aac_fib_free(fibptr); |
418 | scsicmd->scsi_done(scsicmd); | 418 | scsicmd->scsi_done(scsicmd); |
419 | } | 419 | } |
420 | 420 | ||
@@ -430,10 +430,10 @@ static int aac_get_container_name(struct scsi_cmnd * scsicmd, int cid) | |||
430 | 430 | ||
431 | dev = (struct aac_dev *)scsicmd->device->host->hostdata; | 431 | dev = (struct aac_dev *)scsicmd->device->host->hostdata; |
432 | 432 | ||
433 | if (!(cmd_fibcontext = fib_alloc(dev))) | 433 | if (!(cmd_fibcontext = aac_fib_alloc(dev))) |
434 | return -ENOMEM; | 434 | return -ENOMEM; |
435 | 435 | ||
436 | fib_init(cmd_fibcontext); | 436 | aac_fib_init(cmd_fibcontext); |
437 | dinfo = (struct aac_get_name *) fib_data(cmd_fibcontext); | 437 | dinfo = (struct aac_get_name *) fib_data(cmd_fibcontext); |
438 | 438 | ||
439 | dinfo->command = cpu_to_le32(VM_ContainerConfig); | 439 | dinfo->command = cpu_to_le32(VM_ContainerConfig); |
@@ -441,7 +441,7 @@ static int aac_get_container_name(struct scsi_cmnd * scsicmd, int cid) | |||
441 | dinfo->cid = cpu_to_le32(cid); | 441 | dinfo->cid = cpu_to_le32(cid); |
442 | dinfo->count = cpu_to_le32(sizeof(((struct aac_get_name_resp *)NULL)->data)); | 442 | dinfo->count = cpu_to_le32(sizeof(((struct aac_get_name_resp *)NULL)->data)); |
443 | 443 | ||
444 | status = fib_send(ContainerCommand, | 444 | status = aac_fib_send(ContainerCommand, |
445 | cmd_fibcontext, | 445 | cmd_fibcontext, |
446 | sizeof (struct aac_get_name), | 446 | sizeof (struct aac_get_name), |
447 | FsaNormal, | 447 | FsaNormal, |
@@ -455,14 +455,14 @@ static int aac_get_container_name(struct scsi_cmnd * scsicmd, int cid) | |||
455 | if (status == -EINPROGRESS) | 455 | if (status == -EINPROGRESS) |
456 | return 0; | 456 | return 0; |
457 | 457 | ||
458 | printk(KERN_WARNING "aac_get_container_name: fib_send failed with status: %d.\n", status); | 458 | printk(KERN_WARNING "aac_get_container_name: aac_fib_send failed with status: %d.\n", status); |
459 | fib_complete(cmd_fibcontext); | 459 | aac_fib_complete(cmd_fibcontext); |
460 | fib_free(cmd_fibcontext); | 460 | aac_fib_free(cmd_fibcontext); |
461 | return -1; | 461 | return -1; |
462 | } | 462 | } |
463 | 463 | ||
464 | /** | 464 | /** |
465 | * probe_container - query a logical volume | 465 | * aac_probe_container - query a logical volume |
466 | * @dev: device to query | 466 | * @dev: device to query |
467 | * @cid: container identifier | 467 | * @cid: container identifier |
468 | * | 468 | * |
@@ -470,7 +470,7 @@ static int aac_get_container_name(struct scsi_cmnd * scsicmd, int cid) | |||
470 | * is updated in the struct fsa_dev_info structure rather than returned. | 470 | * is updated in the struct fsa_dev_info structure rather than returned. |
471 | */ | 471 | */ |
472 | 472 | ||
473 | int probe_container(struct aac_dev *dev, int cid) | 473 | int aac_probe_container(struct aac_dev *dev, int cid) |
474 | { | 474 | { |
475 | struct fsa_dev_info *fsa_dev_ptr; | 475 | struct fsa_dev_info *fsa_dev_ptr; |
476 | int status; | 476 | int status; |
@@ -482,10 +482,10 @@ int probe_container(struct aac_dev *dev, int cid) | |||
482 | fsa_dev_ptr = dev->fsa_dev; | 482 | fsa_dev_ptr = dev->fsa_dev; |
483 | instance = dev->scsi_host_ptr->unique_id; | 483 | instance = dev->scsi_host_ptr->unique_id; |
484 | 484 | ||
485 | if (!(fibptr = fib_alloc(dev))) | 485 | if (!(fibptr = aac_fib_alloc(dev))) |
486 | return -ENOMEM; | 486 | return -ENOMEM; |
487 | 487 | ||
488 | fib_init(fibptr); | 488 | aac_fib_init(fibptr); |
489 | 489 | ||
490 | dinfo = (struct aac_query_mount *)fib_data(fibptr); | 490 | dinfo = (struct aac_query_mount *)fib_data(fibptr); |
491 | 491 | ||
@@ -493,14 +493,14 @@ int probe_container(struct aac_dev *dev, int cid) | |||
493 | dinfo->count = cpu_to_le32(cid); | 493 | dinfo->count = cpu_to_le32(cid); |
494 | dinfo->type = cpu_to_le32(FT_FILESYS); | 494 | dinfo->type = cpu_to_le32(FT_FILESYS); |
495 | 495 | ||
496 | status = fib_send(ContainerCommand, | 496 | status = aac_fib_send(ContainerCommand, |
497 | fibptr, | 497 | fibptr, |
498 | sizeof(struct aac_query_mount), | 498 | sizeof(struct aac_query_mount), |
499 | FsaNormal, | 499 | FsaNormal, |
500 | 1, 1, | 500 | 1, 1, |
501 | NULL, NULL); | 501 | NULL, NULL); |
502 | if (status < 0) { | 502 | if (status < 0) { |
503 | printk(KERN_WARNING "aacraid: probe_container query failed.\n"); | 503 | printk(KERN_WARNING "aacraid: aac_probe_container query failed.\n"); |
504 | goto error; | 504 | goto error; |
505 | } | 505 | } |
506 | 506 | ||
@@ -512,7 +512,7 @@ int probe_container(struct aac_dev *dev, int cid) | |||
512 | dinfo->count = cpu_to_le32(cid); | 512 | dinfo->count = cpu_to_le32(cid); |
513 | dinfo->type = cpu_to_le32(FT_FILESYS); | 513 | dinfo->type = cpu_to_le32(FT_FILESYS); |
514 | 514 | ||
515 | if (fib_send(ContainerCommand, | 515 | if (aac_fib_send(ContainerCommand, |
516 | fibptr, | 516 | fibptr, |
517 | sizeof(struct aac_query_mount), | 517 | sizeof(struct aac_query_mount), |
518 | FsaNormal, | 518 | FsaNormal, |
@@ -535,8 +535,8 @@ int probe_container(struct aac_dev *dev, int cid) | |||
535 | } | 535 | } |
536 | 536 | ||
537 | error: | 537 | error: |
538 | fib_complete(fibptr); | 538 | aac_fib_complete(fibptr); |
539 | fib_free(fibptr); | 539 | aac_fib_free(fibptr); |
540 | 540 | ||
541 | return status; | 541 | return status; |
542 | } | 542 | } |
@@ -700,14 +700,14 @@ int aac_get_adapter_info(struct aac_dev* dev) | |||
700 | struct aac_bus_info *command; | 700 | struct aac_bus_info *command; |
701 | struct aac_bus_info_response *bus_info; | 701 | struct aac_bus_info_response *bus_info; |
702 | 702 | ||
703 | if (!(fibptr = fib_alloc(dev))) | 703 | if (!(fibptr = aac_fib_alloc(dev))) |
704 | return -ENOMEM; | 704 | return -ENOMEM; |
705 | 705 | ||
706 | fib_init(fibptr); | 706 | aac_fib_init(fibptr); |
707 | info = (struct aac_adapter_info *) fib_data(fibptr); | 707 | info = (struct aac_adapter_info *) fib_data(fibptr); |
708 | memset(info,0,sizeof(*info)); | 708 | memset(info,0,sizeof(*info)); |
709 | 709 | ||
710 | rcode = fib_send(RequestAdapterInfo, | 710 | rcode = aac_fib_send(RequestAdapterInfo, |
711 | fibptr, | 711 | fibptr, |
712 | sizeof(*info), | 712 | sizeof(*info), |
713 | FsaNormal, | 713 | FsaNormal, |
@@ -716,8 +716,8 @@ int aac_get_adapter_info(struct aac_dev* dev) | |||
716 | NULL); | 716 | NULL); |
717 | 717 | ||
718 | if (rcode < 0) { | 718 | if (rcode < 0) { |
719 | fib_complete(fibptr); | 719 | aac_fib_complete(fibptr); |
720 | fib_free(fibptr); | 720 | aac_fib_free(fibptr); |
721 | return rcode; | 721 | return rcode; |
722 | } | 722 | } |
723 | memcpy(&dev->adapter_info, info, sizeof(*info)); | 723 | memcpy(&dev->adapter_info, info, sizeof(*info)); |
@@ -725,13 +725,13 @@ int aac_get_adapter_info(struct aac_dev* dev) | |||
725 | if (dev->adapter_info.options & AAC_OPT_SUPPLEMENT_ADAPTER_INFO) { | 725 | if (dev->adapter_info.options & AAC_OPT_SUPPLEMENT_ADAPTER_INFO) { |
726 | struct aac_supplement_adapter_info * info; | 726 | struct aac_supplement_adapter_info * info; |
727 | 727 | ||
728 | fib_init(fibptr); | 728 | aac_fib_init(fibptr); |
729 | 729 | ||
730 | info = (struct aac_supplement_adapter_info *) fib_data(fibptr); | 730 | info = (struct aac_supplement_adapter_info *) fib_data(fibptr); |
731 | 731 | ||
732 | memset(info,0,sizeof(*info)); | 732 | memset(info,0,sizeof(*info)); |
733 | 733 | ||
734 | rcode = fib_send(RequestSupplementAdapterInfo, | 734 | rcode = aac_fib_send(RequestSupplementAdapterInfo, |
735 | fibptr, | 735 | fibptr, |
736 | sizeof(*info), | 736 | sizeof(*info), |
737 | FsaNormal, | 737 | FsaNormal, |
@@ -748,7 +748,7 @@ int aac_get_adapter_info(struct aac_dev* dev) | |||
748 | * GetBusInfo | 748 | * GetBusInfo |
749 | */ | 749 | */ |
750 | 750 | ||
751 | fib_init(fibptr); | 751 | aac_fib_init(fibptr); |
752 | 752 | ||
753 | bus_info = (struct aac_bus_info_response *) fib_data(fibptr); | 753 | bus_info = (struct aac_bus_info_response *) fib_data(fibptr); |
754 | 754 | ||
@@ -761,7 +761,7 @@ int aac_get_adapter_info(struct aac_dev* dev) | |||
761 | command->MethodId = cpu_to_le32(1); | 761 | command->MethodId = cpu_to_le32(1); |
762 | command->CtlCmd = cpu_to_le32(GetBusInfo); | 762 | command->CtlCmd = cpu_to_le32(GetBusInfo); |
763 | 763 | ||
764 | rcode = fib_send(ContainerCommand, | 764 | rcode = aac_fib_send(ContainerCommand, |
765 | fibptr, | 765 | fibptr, |
766 | sizeof (*bus_info), | 766 | sizeof (*bus_info), |
767 | FsaNormal, | 767 | FsaNormal, |
@@ -891,8 +891,8 @@ int aac_get_adapter_info(struct aac_dev* dev) | |||
891 | } | 891 | } |
892 | } | 892 | } |
893 | 893 | ||
894 | fib_complete(fibptr); | 894 | aac_fib_complete(fibptr); |
895 | fib_free(fibptr); | 895 | aac_fib_free(fibptr); |
896 | 896 | ||
897 | return rcode; | 897 | return rcode; |
898 | } | 898 | } |
@@ -976,8 +976,8 @@ static void io_callback(void *context, struct fib * fibptr) | |||
976 | ? sizeof(scsicmd->sense_buffer) | 976 | ? sizeof(scsicmd->sense_buffer) |
977 | : sizeof(dev->fsa_dev[cid].sense_data)); | 977 | : sizeof(dev->fsa_dev[cid].sense_data)); |
978 | } | 978 | } |
979 | fib_complete(fibptr); | 979 | aac_fib_complete(fibptr); |
980 | fib_free(fibptr); | 980 | aac_fib_free(fibptr); |
981 | 981 | ||
982 | scsicmd->scsi_done(scsicmd); | 982 | scsicmd->scsi_done(scsicmd); |
983 | } | 983 | } |
@@ -1062,11 +1062,11 @@ static int aac_read(struct scsi_cmnd * scsicmd, int cid) | |||
1062 | /* | 1062 | /* |
1063 | * Alocate and initialize a Fib | 1063 | * Alocate and initialize a Fib |
1064 | */ | 1064 | */ |
1065 | if (!(cmd_fibcontext = fib_alloc(dev))) { | 1065 | if (!(cmd_fibcontext = aac_fib_alloc(dev))) { |
1066 | return -1; | 1066 | return -1; |
1067 | } | 1067 | } |
1068 | 1068 | ||
1069 | fib_init(cmd_fibcontext); | 1069 | aac_fib_init(cmd_fibcontext); |
1070 | 1070 | ||
1071 | if (dev->raw_io_interface) { | 1071 | if (dev->raw_io_interface) { |
1072 | struct aac_raw_io *readcmd; | 1072 | struct aac_raw_io *readcmd; |
@@ -1086,7 +1086,7 @@ static int aac_read(struct scsi_cmnd * scsicmd, int cid) | |||
1086 | /* | 1086 | /* |
1087 | * Now send the Fib to the adapter | 1087 | * Now send the Fib to the adapter |
1088 | */ | 1088 | */ |
1089 | status = fib_send(ContainerRawIo, | 1089 | status = aac_fib_send(ContainerRawIo, |
1090 | cmd_fibcontext, | 1090 | cmd_fibcontext, |
1091 | fibsize, | 1091 | fibsize, |
1092 | FsaNormal, | 1092 | FsaNormal, |
@@ -1112,7 +1112,7 @@ static int aac_read(struct scsi_cmnd * scsicmd, int cid) | |||
1112 | /* | 1112 | /* |
1113 | * Now send the Fib to the adapter | 1113 | * Now send the Fib to the adapter |
1114 | */ | 1114 | */ |
1115 | status = fib_send(ContainerCommand64, | 1115 | status = aac_fib_send(ContainerCommand64, |
1116 | cmd_fibcontext, | 1116 | cmd_fibcontext, |
1117 | fibsize, | 1117 | fibsize, |
1118 | FsaNormal, | 1118 | FsaNormal, |
@@ -1136,7 +1136,7 @@ static int aac_read(struct scsi_cmnd * scsicmd, int cid) | |||
1136 | /* | 1136 | /* |
1137 | * Now send the Fib to the adapter | 1137 | * Now send the Fib to the adapter |
1138 | */ | 1138 | */ |
1139 | status = fib_send(ContainerCommand, | 1139 | status = aac_fib_send(ContainerCommand, |
1140 | cmd_fibcontext, | 1140 | cmd_fibcontext, |
1141 | fibsize, | 1141 | fibsize, |
1142 | FsaNormal, | 1142 | FsaNormal, |
@@ -1153,14 +1153,14 @@ static int aac_read(struct scsi_cmnd * scsicmd, int cid) | |||
1153 | if (status == -EINPROGRESS) | 1153 | if (status == -EINPROGRESS) |
1154 | return 0; | 1154 | return 0; |
1155 | 1155 | ||
1156 | printk(KERN_WARNING "aac_read: fib_send failed with status: %d.\n", status); | 1156 | printk(KERN_WARNING "aac_read: aac_fib_send failed with status: %d.\n", status); |
1157 | /* | 1157 | /* |
1158 | * For some reason, the Fib didn't queue, return QUEUE_FULL | 1158 | * For some reason, the Fib didn't queue, return QUEUE_FULL |
1159 | */ | 1159 | */ |
1160 | scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL; | 1160 | scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL; |
1161 | scsicmd->scsi_done(scsicmd); | 1161 | scsicmd->scsi_done(scsicmd); |
1162 | fib_complete(cmd_fibcontext); | 1162 | aac_fib_complete(cmd_fibcontext); |
1163 | fib_free(cmd_fibcontext); | 1163 | aac_fib_free(cmd_fibcontext); |
1164 | return 0; | 1164 | return 0; |
1165 | } | 1165 | } |
1166 | 1166 | ||
@@ -1228,12 +1228,12 @@ static int aac_write(struct scsi_cmnd * scsicmd, int cid) | |||
1228 | /* | 1228 | /* |
1229 | * Allocate and initialize a Fib then setup a BlockWrite command | 1229 | * Allocate and initialize a Fib then setup a BlockWrite command |
1230 | */ | 1230 | */ |
1231 | if (!(cmd_fibcontext = fib_alloc(dev))) { | 1231 | if (!(cmd_fibcontext = aac_fib_alloc(dev))) { |
1232 | scsicmd->result = DID_ERROR << 16; | 1232 | scsicmd->result = DID_ERROR << 16; |
1233 | scsicmd->scsi_done(scsicmd); | 1233 | scsicmd->scsi_done(scsicmd); |
1234 | return 0; | 1234 | return 0; |
1235 | } | 1235 | } |
1236 | fib_init(cmd_fibcontext); | 1236 | aac_fib_init(cmd_fibcontext); |
1237 | 1237 | ||
1238 | if (dev->raw_io_interface) { | 1238 | if (dev->raw_io_interface) { |
1239 | struct aac_raw_io *writecmd; | 1239 | struct aac_raw_io *writecmd; |
@@ -1253,7 +1253,7 @@ static int aac_write(struct scsi_cmnd * scsicmd, int cid) | |||
1253 | /* | 1253 | /* |
1254 | * Now send the Fib to the adapter | 1254 | * Now send the Fib to the adapter |
1255 | */ | 1255 | */ |
1256 | status = fib_send(ContainerRawIo, | 1256 | status = aac_fib_send(ContainerRawIo, |
1257 | cmd_fibcontext, | 1257 | cmd_fibcontext, |
1258 | fibsize, | 1258 | fibsize, |
1259 | FsaNormal, | 1259 | FsaNormal, |
@@ -1279,7 +1279,7 @@ static int aac_write(struct scsi_cmnd * scsicmd, int cid) | |||
1279 | /* | 1279 | /* |
1280 | * Now send the Fib to the adapter | 1280 | * Now send the Fib to the adapter |
1281 | */ | 1281 | */ |
1282 | status = fib_send(ContainerCommand64, | 1282 | status = aac_fib_send(ContainerCommand64, |
1283 | cmd_fibcontext, | 1283 | cmd_fibcontext, |
1284 | fibsize, | 1284 | fibsize, |
1285 | FsaNormal, | 1285 | FsaNormal, |
@@ -1305,7 +1305,7 @@ static int aac_write(struct scsi_cmnd * scsicmd, int cid) | |||
1305 | /* | 1305 | /* |
1306 | * Now send the Fib to the adapter | 1306 | * Now send the Fib to the adapter |
1307 | */ | 1307 | */ |
1308 | status = fib_send(ContainerCommand, | 1308 | status = aac_fib_send(ContainerCommand, |
1309 | cmd_fibcontext, | 1309 | cmd_fibcontext, |
1310 | fibsize, | 1310 | fibsize, |
1311 | FsaNormal, | 1311 | FsaNormal, |
@@ -1322,15 +1322,15 @@ static int aac_write(struct scsi_cmnd * scsicmd, int cid) | |||
1322 | return 0; | 1322 | return 0; |
1323 | } | 1323 | } |
1324 | 1324 | ||
1325 | printk(KERN_WARNING "aac_write: fib_send failed with status: %d\n", status); | 1325 | printk(KERN_WARNING "aac_write: aac_fib_send failed with status: %d\n", status); |
1326 | /* | 1326 | /* |
1327 | * For some reason, the Fib didn't queue, return QUEUE_FULL | 1327 | * For some reason, the Fib didn't queue, return QUEUE_FULL |
1328 | */ | 1328 | */ |
1329 | scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL; | 1329 | scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL; |
1330 | scsicmd->scsi_done(scsicmd); | 1330 | scsicmd->scsi_done(scsicmd); |
1331 | 1331 | ||
1332 | fib_complete(cmd_fibcontext); | 1332 | aac_fib_complete(cmd_fibcontext); |
1333 | fib_free(cmd_fibcontext); | 1333 | aac_fib_free(cmd_fibcontext); |
1334 | return 0; | 1334 | return 0; |
1335 | } | 1335 | } |
1336 | 1336 | ||
@@ -1369,8 +1369,8 @@ static void synchronize_callback(void *context, struct fib *fibptr) | |||
1369 | sizeof(cmd->sense_buffer))); | 1369 | sizeof(cmd->sense_buffer))); |
1370 | } | 1370 | } |
1371 | 1371 | ||
1372 | fib_complete(fibptr); | 1372 | aac_fib_complete(fibptr); |
1373 | fib_free(fibptr); | 1373 | aac_fib_free(fibptr); |
1374 | cmd->scsi_done(cmd); | 1374 | cmd->scsi_done(cmd); |
1375 | } | 1375 | } |
1376 | 1376 | ||
@@ -1407,10 +1407,10 @@ static int aac_synchronize(struct scsi_cmnd *scsicmd, int cid) | |||
1407 | * Allocate and initialize a Fib | 1407 | * Allocate and initialize a Fib |
1408 | */ | 1408 | */ |
1409 | if (!(cmd_fibcontext = | 1409 | if (!(cmd_fibcontext = |
1410 | fib_alloc((struct aac_dev *)scsicmd->device->host->hostdata))) | 1410 | aac_fib_alloc((struct aac_dev *)scsicmd->device->host->hostdata))) |
1411 | return SCSI_MLQUEUE_HOST_BUSY; | 1411 | return SCSI_MLQUEUE_HOST_BUSY; |
1412 | 1412 | ||
1413 | fib_init(cmd_fibcontext); | 1413 | aac_fib_init(cmd_fibcontext); |
1414 | 1414 | ||
1415 | synchronizecmd = fib_data(cmd_fibcontext); | 1415 | synchronizecmd = fib_data(cmd_fibcontext); |
1416 | synchronizecmd->command = cpu_to_le32(VM_ContainerConfig); | 1416 | synchronizecmd->command = cpu_to_le32(VM_ContainerConfig); |
@@ -1422,7 +1422,7 @@ static int aac_synchronize(struct scsi_cmnd *scsicmd, int cid) | |||
1422 | /* | 1422 | /* |
1423 | * Now send the Fib to the adapter | 1423 | * Now send the Fib to the adapter |
1424 | */ | 1424 | */ |
1425 | status = fib_send(ContainerCommand, | 1425 | status = aac_fib_send(ContainerCommand, |
1426 | cmd_fibcontext, | 1426 | cmd_fibcontext, |
1427 | sizeof(struct aac_synchronize), | 1427 | sizeof(struct aac_synchronize), |
1428 | FsaNormal, | 1428 | FsaNormal, |
@@ -1437,9 +1437,9 @@ static int aac_synchronize(struct scsi_cmnd *scsicmd, int cid) | |||
1437 | return 0; | 1437 | return 0; |
1438 | 1438 | ||
1439 | printk(KERN_WARNING | 1439 | printk(KERN_WARNING |
1440 | "aac_synchronize: fib_send failed with status: %d.\n", status); | 1440 | "aac_synchronize: aac_fib_send failed with status: %d.\n", status); |
1441 | fib_complete(cmd_fibcontext); | 1441 | aac_fib_complete(cmd_fibcontext); |
1442 | fib_free(cmd_fibcontext); | 1442 | aac_fib_free(cmd_fibcontext); |
1443 | return SCSI_MLQUEUE_HOST_BUSY; | 1443 | return SCSI_MLQUEUE_HOST_BUSY; |
1444 | } | 1444 | } |
1445 | 1445 | ||
@@ -1465,7 +1465,7 @@ int aac_scsi_cmd(struct scsi_cmnd * scsicmd) | |||
1465 | * itself. | 1465 | * itself. |
1466 | */ | 1466 | */ |
1467 | if (scmd_id(scsicmd) != host->this_id) { | 1467 | if (scmd_id(scsicmd) != host->this_id) { |
1468 | if ((scsicmd->device->channel == 0) ){ | 1468 | if ((scsicmd->device->channel == CONTAINER_CHANNEL)) { |
1469 | if( (scsicmd->device->id >= dev->maximum_num_containers) || (scsicmd->device->lun != 0)){ | 1469 | if( (scsicmd->device->id >= dev->maximum_num_containers) || (scsicmd->device->lun != 0)){ |
1470 | scsicmd->result = DID_NO_CONNECT << 16; | 1470 | scsicmd->result = DID_NO_CONNECT << 16; |
1471 | scsicmd->scsi_done(scsicmd); | 1471 | scsicmd->scsi_done(scsicmd); |
@@ -1488,7 +1488,7 @@ int aac_scsi_cmd(struct scsi_cmnd * scsicmd) | |||
1488 | case READ_CAPACITY: | 1488 | case READ_CAPACITY: |
1489 | case TEST_UNIT_READY: | 1489 | case TEST_UNIT_READY: |
1490 | spin_unlock_irq(host->host_lock); | 1490 | spin_unlock_irq(host->host_lock); |
1491 | probe_container(dev, cid); | 1491 | aac_probe_container(dev, cid); |
1492 | if ((fsa_dev_ptr[cid].valid & 1) == 0) | 1492 | if ((fsa_dev_ptr[cid].valid & 1) == 0) |
1493 | fsa_dev_ptr[cid].valid = 0; | 1493 | fsa_dev_ptr[cid].valid = 0; |
1494 | spin_lock_irq(host->host_lock); | 1494 | spin_lock_irq(host->host_lock); |
@@ -1935,33 +1935,7 @@ static void aac_srb_callback(void *context, struct fib * fibptr) | |||
1935 | case SRB_STATUS_ERROR_RECOVERY: | 1935 | case SRB_STATUS_ERROR_RECOVERY: |
1936 | case SRB_STATUS_PENDING: | 1936 | case SRB_STATUS_PENDING: |
1937 | case SRB_STATUS_SUCCESS: | 1937 | case SRB_STATUS_SUCCESS: |
1938 | if(scsicmd->cmnd[0] == INQUIRY ){ | 1938 | scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8; |
1939 | u8 b; | ||
1940 | u8 b1; | ||
1941 | /* We can't expose disk devices because we can't tell whether they | ||
1942 | * are the raw container drives or stand alone drives. If they have | ||
1943 | * the removable bit set then we should expose them though. | ||
1944 | */ | ||
1945 | b = (*(u8*)scsicmd->buffer)&0x1f; | ||
1946 | b1 = ((u8*)scsicmd->buffer)[1]; | ||
1947 | if( b==TYPE_TAPE || b==TYPE_WORM || b==TYPE_ROM || b==TYPE_MOD|| b==TYPE_MEDIUM_CHANGER | ||
1948 | || (b==TYPE_DISK && (b1&0x80)) ){ | ||
1949 | scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8; | ||
1950 | /* | ||
1951 | * We will allow disk devices if in RAID/SCSI mode and | ||
1952 | * the channel is 2 | ||
1953 | */ | ||
1954 | } else if ((dev->raid_scsi_mode) && | ||
1955 | (scmd_channel(scsicmd) == 2)) { | ||
1956 | scsicmd->result = DID_OK << 16 | | ||
1957 | COMMAND_COMPLETE << 8; | ||
1958 | } else { | ||
1959 | scsicmd->result = DID_NO_CONNECT << 16 | | ||
1960 | COMMAND_COMPLETE << 8; | ||
1961 | } | ||
1962 | } else { | ||
1963 | scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8; | ||
1964 | } | ||
1965 | break; | 1939 | break; |
1966 | case SRB_STATUS_DATA_OVERRUN: | 1940 | case SRB_STATUS_DATA_OVERRUN: |
1967 | switch(scsicmd->cmnd[0]){ | 1941 | switch(scsicmd->cmnd[0]){ |
@@ -1981,28 +1955,7 @@ static void aac_srb_callback(void *context, struct fib * fibptr) | |||
1981 | scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8; | 1955 | scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8; |
1982 | break; | 1956 | break; |
1983 | case INQUIRY: { | 1957 | case INQUIRY: { |
1984 | u8 b; | 1958 | scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8; |
1985 | u8 b1; | ||
1986 | /* We can't expose disk devices because we can't tell whether they | ||
1987 | * are the raw container drives or stand alone drives | ||
1988 | */ | ||
1989 | b = (*(u8*)scsicmd->buffer)&0x0f; | ||
1990 | b1 = ((u8*)scsicmd->buffer)[1]; | ||
1991 | if( b==TYPE_TAPE || b==TYPE_WORM || b==TYPE_ROM || b==TYPE_MOD|| b==TYPE_MEDIUM_CHANGER | ||
1992 | || (b==TYPE_DISK && (b1&0x80)) ){ | ||
1993 | scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8; | ||
1994 | /* | ||
1995 | * We will allow disk devices if in RAID/SCSI mode and | ||
1996 | * the channel is 2 | ||
1997 | */ | ||
1998 | } else if ((dev->raid_scsi_mode) && | ||
1999 | (scmd_channel(scsicmd) == 2)) { | ||
2000 | scsicmd->result = DID_OK << 16 | | ||
2001 | COMMAND_COMPLETE << 8; | ||
2002 | } else { | ||
2003 | scsicmd->result = DID_NO_CONNECT << 16 | | ||
2004 | COMMAND_COMPLETE << 8; | ||
2005 | } | ||
2006 | break; | 1959 | break; |
2007 | } | 1960 | } |
2008 | default: | 1961 | default: |
@@ -2089,8 +2042,8 @@ static void aac_srb_callback(void *context, struct fib * fibptr) | |||
2089 | */ | 2042 | */ |
2090 | scsicmd->result |= le32_to_cpu(srbreply->scsi_status); | 2043 | scsicmd->result |= le32_to_cpu(srbreply->scsi_status); |
2091 | 2044 | ||
2092 | fib_complete(fibptr); | 2045 | aac_fib_complete(fibptr); |
2093 | fib_free(fibptr); | 2046 | aac_fib_free(fibptr); |
2094 | scsicmd->scsi_done(scsicmd); | 2047 | scsicmd->scsi_done(scsicmd); |
2095 | } | 2048 | } |
2096 | 2049 | ||
@@ -2142,10 +2095,10 @@ static int aac_send_srb_fib(struct scsi_cmnd* scsicmd) | |||
2142 | /* | 2095 | /* |
2143 | * Allocate and initialize a Fib then setup a BlockWrite command | 2096 | * Allocate and initialize a Fib then setup a BlockWrite command |
2144 | */ | 2097 | */ |
2145 | if (!(cmd_fibcontext = fib_alloc(dev))) { | 2098 | if (!(cmd_fibcontext = aac_fib_alloc(dev))) { |
2146 | return -1; | 2099 | return -1; |
2147 | } | 2100 | } |
2148 | fib_init(cmd_fibcontext); | 2101 | aac_fib_init(cmd_fibcontext); |
2149 | 2102 | ||
2150 | srbcmd = (struct aac_srb*) fib_data(cmd_fibcontext); | 2103 | srbcmd = (struct aac_srb*) fib_data(cmd_fibcontext); |
2151 | srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); | 2104 | srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); |
@@ -2179,7 +2132,7 @@ static int aac_send_srb_fib(struct scsi_cmnd* scsicmd) | |||
2179 | /* | 2132 | /* |
2180 | * Now send the Fib to the adapter | 2133 | * Now send the Fib to the adapter |
2181 | */ | 2134 | */ |
2182 | status = fib_send(ScsiPortCommand64, cmd_fibcontext, | 2135 | status = aac_fib_send(ScsiPortCommand64, cmd_fibcontext, |
2183 | fibsize, FsaNormal, 0, 1, | 2136 | fibsize, FsaNormal, 0, 1, |
2184 | (fib_callback) aac_srb_callback, | 2137 | (fib_callback) aac_srb_callback, |
2185 | (void *) scsicmd); | 2138 | (void *) scsicmd); |
@@ -2201,7 +2154,7 @@ static int aac_send_srb_fib(struct scsi_cmnd* scsicmd) | |||
2201 | /* | 2154 | /* |
2202 | * Now send the Fib to the adapter | 2155 | * Now send the Fib to the adapter |
2203 | */ | 2156 | */ |
2204 | status = fib_send(ScsiPortCommand, cmd_fibcontext, fibsize, FsaNormal, 0, 1, | 2157 | status = aac_fib_send(ScsiPortCommand, cmd_fibcontext, fibsize, FsaNormal, 0, 1, |
2205 | (fib_callback) aac_srb_callback, (void *) scsicmd); | 2158 | (fib_callback) aac_srb_callback, (void *) scsicmd); |
2206 | } | 2159 | } |
2207 | /* | 2160 | /* |
@@ -2211,9 +2164,9 @@ static int aac_send_srb_fib(struct scsi_cmnd* scsicmd) | |||
2211 | return 0; | 2164 | return 0; |
2212 | } | 2165 | } |
2213 | 2166 | ||
2214 | printk(KERN_WARNING "aac_srb: fib_send failed with status: %d\n", status); | 2167 | printk(KERN_WARNING "aac_srb: aac_fib_send failed with status: %d\n", status); |
2215 | fib_complete(cmd_fibcontext); | 2168 | aac_fib_complete(cmd_fibcontext); |
2216 | fib_free(cmd_fibcontext); | 2169 | aac_fib_free(cmd_fibcontext); |
2217 | 2170 | ||
2218 | return -1; | 2171 | return -1; |
2219 | } | 2172 | } |
diff --git a/drivers/scsi/aacraid/aacraid.h b/drivers/scsi/aacraid/aacraid.h index 66dbb6d2c506..2d430b7e8cf4 100644 --- a/drivers/scsi/aacraid/aacraid.h +++ b/drivers/scsi/aacraid/aacraid.h | |||
@@ -1774,16 +1774,16 @@ static inline u32 cap_to_cyls(sector_t capacity, u32 divisor) | |||
1774 | struct scsi_cmnd; | 1774 | struct scsi_cmnd; |
1775 | 1775 | ||
1776 | const char *aac_driverinfo(struct Scsi_Host *); | 1776 | const char *aac_driverinfo(struct Scsi_Host *); |
1777 | struct fib *fib_alloc(struct aac_dev *dev); | 1777 | struct fib *aac_fib_alloc(struct aac_dev *dev); |
1778 | int fib_setup(struct aac_dev *dev); | 1778 | int aac_fib_setup(struct aac_dev *dev); |
1779 | void fib_map_free(struct aac_dev *dev); | 1779 | void aac_fib_map_free(struct aac_dev *dev); |
1780 | void fib_free(struct fib * context); | 1780 | void aac_fib_free(struct fib * context); |
1781 | void fib_init(struct fib * context); | 1781 | void aac_fib_init(struct fib * context); |
1782 | void aac_printf(struct aac_dev *dev, u32 val); | 1782 | void aac_printf(struct aac_dev *dev, u32 val); |
1783 | int fib_send(u16 command, struct fib * context, unsigned long size, int priority, int wait, int reply, fib_callback callback, void *ctxt); | 1783 | int aac_fib_send(u16 command, struct fib * context, unsigned long size, int priority, int wait, int reply, fib_callback callback, void *ctxt); |
1784 | int aac_consumer_get(struct aac_dev * dev, struct aac_queue * q, struct aac_entry **entry); | 1784 | int aac_consumer_get(struct aac_dev * dev, struct aac_queue * q, struct aac_entry **entry); |
1785 | void aac_consumer_free(struct aac_dev * dev, struct aac_queue * q, u32 qnum); | 1785 | void aac_consumer_free(struct aac_dev * dev, struct aac_queue * q, u32 qnum); |
1786 | int fib_complete(struct fib * context); | 1786 | int aac_fib_complete(struct fib * context); |
1787 | #define fib_data(fibctx) ((void *)(fibctx)->hw_fib->data) | 1787 | #define fib_data(fibctx) ((void *)(fibctx)->hw_fib->data) |
1788 | struct aac_dev *aac_init_adapter(struct aac_dev *dev); | 1788 | struct aac_dev *aac_init_adapter(struct aac_dev *dev); |
1789 | int aac_get_config_status(struct aac_dev *dev); | 1789 | int aac_get_config_status(struct aac_dev *dev); |
@@ -1799,11 +1799,11 @@ unsigned int aac_command_normal(struct aac_queue * q); | |||
1799 | unsigned int aac_intr_normal(struct aac_dev * dev, u32 Index); | 1799 | unsigned int aac_intr_normal(struct aac_dev * dev, u32 Index); |
1800 | int aac_command_thread(struct aac_dev * dev); | 1800 | int aac_command_thread(struct aac_dev * dev); |
1801 | int aac_close_fib_context(struct aac_dev * dev, struct aac_fib_context *fibctx); | 1801 | int aac_close_fib_context(struct aac_dev * dev, struct aac_fib_context *fibctx); |
1802 | int fib_adapter_complete(struct fib * fibptr, unsigned short size); | 1802 | int aac_fib_adapter_complete(struct fib * fibptr, unsigned short size); |
1803 | struct aac_driver_ident* aac_get_driver_ident(int devtype); | 1803 | struct aac_driver_ident* aac_get_driver_ident(int devtype); |
1804 | int aac_get_adapter_info(struct aac_dev* dev); | 1804 | int aac_get_adapter_info(struct aac_dev* dev); |
1805 | int aac_send_shutdown(struct aac_dev *dev); | 1805 | int aac_send_shutdown(struct aac_dev *dev); |
1806 | int probe_container(struct aac_dev *dev, int cid); | 1806 | int aac_probe_container(struct aac_dev *dev, int cid); |
1807 | extern int numacb; | 1807 | extern int numacb; |
1808 | extern int acbsize; | 1808 | extern int acbsize; |
1809 | extern char aac_driver_version[]; | 1809 | extern char aac_driver_version[]; |
diff --git a/drivers/scsi/aacraid/commctrl.c b/drivers/scsi/aacraid/commctrl.c index 4fe79cd7c957..47fefca72695 100644 --- a/drivers/scsi/aacraid/commctrl.c +++ b/drivers/scsi/aacraid/commctrl.c | |||
@@ -63,7 +63,7 @@ static int ioctl_send_fib(struct aac_dev * dev, void __user *arg) | |||
63 | unsigned size; | 63 | unsigned size; |
64 | int retval; | 64 | int retval; |
65 | 65 | ||
66 | fibptr = fib_alloc(dev); | 66 | fibptr = aac_fib_alloc(dev); |
67 | if(fibptr == NULL) { | 67 | if(fibptr == NULL) { |
68 | return -ENOMEM; | 68 | return -ENOMEM; |
69 | } | 69 | } |
@@ -73,7 +73,7 @@ static int ioctl_send_fib(struct aac_dev * dev, void __user *arg) | |||
73 | * First copy in the header so that we can check the size field. | 73 | * First copy in the header so that we can check the size field. |
74 | */ | 74 | */ |
75 | if (copy_from_user((void *)kfib, arg, sizeof(struct aac_fibhdr))) { | 75 | if (copy_from_user((void *)kfib, arg, sizeof(struct aac_fibhdr))) { |
76 | fib_free(fibptr); | 76 | aac_fib_free(fibptr); |
77 | return -EFAULT; | 77 | return -EFAULT; |
78 | } | 78 | } |
79 | /* | 79 | /* |
@@ -110,13 +110,13 @@ static int ioctl_send_fib(struct aac_dev * dev, void __user *arg) | |||
110 | */ | 110 | */ |
111 | kfib->header.XferState = 0; | 111 | kfib->header.XferState = 0; |
112 | } else { | 112 | } else { |
113 | retval = fib_send(le16_to_cpu(kfib->header.Command), fibptr, | 113 | retval = aac_fib_send(le16_to_cpu(kfib->header.Command), fibptr, |
114 | le16_to_cpu(kfib->header.Size) , FsaNormal, | 114 | le16_to_cpu(kfib->header.Size) , FsaNormal, |
115 | 1, 1, NULL, NULL); | 115 | 1, 1, NULL, NULL); |
116 | if (retval) { | 116 | if (retval) { |
117 | goto cleanup; | 117 | goto cleanup; |
118 | } | 118 | } |
119 | if (fib_complete(fibptr) != 0) { | 119 | if (aac_fib_complete(fibptr) != 0) { |
120 | retval = -EINVAL; | 120 | retval = -EINVAL; |
121 | goto cleanup; | 121 | goto cleanup; |
122 | } | 122 | } |
@@ -138,7 +138,7 @@ cleanup: | |||
138 | fibptr->hw_fib_pa = hw_fib_pa; | 138 | fibptr->hw_fib_pa = hw_fib_pa; |
139 | fibptr->hw_fib = hw_fib; | 139 | fibptr->hw_fib = hw_fib; |
140 | } | 140 | } |
141 | fib_free(fibptr); | 141 | aac_fib_free(fibptr); |
142 | return retval; | 142 | return retval; |
143 | } | 143 | } |
144 | 144 | ||
@@ -464,10 +464,10 @@ static int aac_send_raw_srb(struct aac_dev* dev, void __user * arg) | |||
464 | /* | 464 | /* |
465 | * Allocate and initialize a Fib then setup a BlockWrite command | 465 | * Allocate and initialize a Fib then setup a BlockWrite command |
466 | */ | 466 | */ |
467 | if (!(srbfib = fib_alloc(dev))) { | 467 | if (!(srbfib = aac_fib_alloc(dev))) { |
468 | return -ENOMEM; | 468 | return -ENOMEM; |
469 | } | 469 | } |
470 | fib_init(srbfib); | 470 | aac_fib_init(srbfib); |
471 | 471 | ||
472 | srbcmd = (struct aac_srb*) fib_data(srbfib); | 472 | srbcmd = (struct aac_srb*) fib_data(srbfib); |
473 | 473 | ||
@@ -601,7 +601,7 @@ static int aac_send_raw_srb(struct aac_dev* dev, void __user * arg) | |||
601 | 601 | ||
602 | srbcmd->count = cpu_to_le32(byte_count); | 602 | srbcmd->count = cpu_to_le32(byte_count); |
603 | psg->count = cpu_to_le32(sg_indx+1); | 603 | psg->count = cpu_to_le32(sg_indx+1); |
604 | status = fib_send(ScsiPortCommand64, srbfib, actual_fibsize, FsaNormal, 1, 1,NULL,NULL); | 604 | status = aac_fib_send(ScsiPortCommand64, srbfib, actual_fibsize, FsaNormal, 1, 1,NULL,NULL); |
605 | } else { | 605 | } else { |
606 | struct user_sgmap* upsg = &user_srbcmd->sg; | 606 | struct user_sgmap* upsg = &user_srbcmd->sg; |
607 | struct sgmap* psg = &srbcmd->sg; | 607 | struct sgmap* psg = &srbcmd->sg; |
@@ -649,7 +649,7 @@ static int aac_send_raw_srb(struct aac_dev* dev, void __user * arg) | |||
649 | } | 649 | } |
650 | srbcmd->count = cpu_to_le32(byte_count); | 650 | srbcmd->count = cpu_to_le32(byte_count); |
651 | psg->count = cpu_to_le32(sg_indx+1); | 651 | psg->count = cpu_to_le32(sg_indx+1); |
652 | status = fib_send(ScsiPortCommand, srbfib, actual_fibsize, FsaNormal, 1, 1, NULL, NULL); | 652 | status = aac_fib_send(ScsiPortCommand, srbfib, actual_fibsize, FsaNormal, 1, 1, NULL, NULL); |
653 | } | 653 | } |
654 | 654 | ||
655 | if (status != 0){ | 655 | if (status != 0){ |
@@ -684,8 +684,8 @@ cleanup: | |||
684 | for(i=0; i <= sg_indx; i++){ | 684 | for(i=0; i <= sg_indx; i++){ |
685 | kfree(sg_list[i]); | 685 | kfree(sg_list[i]); |
686 | } | 686 | } |
687 | fib_complete(srbfib); | 687 | aac_fib_complete(srbfib); |
688 | fib_free(srbfib); | 688 | aac_fib_free(srbfib); |
689 | 689 | ||
690 | return rcode; | 690 | return rcode; |
691 | } | 691 | } |
diff --git a/drivers/scsi/aacraid/comminit.c b/drivers/scsi/aacraid/comminit.c index 82821d331c07..1628d094943d 100644 --- a/drivers/scsi/aacraid/comminit.c +++ b/drivers/scsi/aacraid/comminit.c | |||
@@ -185,17 +185,17 @@ int aac_send_shutdown(struct aac_dev * dev) | |||
185 | struct aac_close *cmd; | 185 | struct aac_close *cmd; |
186 | int status; | 186 | int status; |
187 | 187 | ||
188 | fibctx = fib_alloc(dev); | 188 | fibctx = aac_fib_alloc(dev); |
189 | if (!fibctx) | 189 | if (!fibctx) |
190 | return -ENOMEM; | 190 | return -ENOMEM; |
191 | fib_init(fibctx); | 191 | aac_fib_init(fibctx); |
192 | 192 | ||
193 | cmd = (struct aac_close *) fib_data(fibctx); | 193 | cmd = (struct aac_close *) fib_data(fibctx); |
194 | 194 | ||
195 | cmd->command = cpu_to_le32(VM_CloseAll); | 195 | cmd->command = cpu_to_le32(VM_CloseAll); |
196 | cmd->cid = cpu_to_le32(0xffffffff); | 196 | cmd->cid = cpu_to_le32(0xffffffff); |
197 | 197 | ||
198 | status = fib_send(ContainerCommand, | 198 | status = aac_fib_send(ContainerCommand, |
199 | fibctx, | 199 | fibctx, |
200 | sizeof(struct aac_close), | 200 | sizeof(struct aac_close), |
201 | FsaNormal, | 201 | FsaNormal, |
@@ -203,8 +203,8 @@ int aac_send_shutdown(struct aac_dev * dev) | |||
203 | NULL, NULL); | 203 | NULL, NULL); |
204 | 204 | ||
205 | if (status == 0) | 205 | if (status == 0) |
206 | fib_complete(fibctx); | 206 | aac_fib_complete(fibctx); |
207 | fib_free(fibctx); | 207 | aac_fib_free(fibctx); |
208 | return status; | 208 | return status; |
209 | } | 209 | } |
210 | 210 | ||
@@ -427,7 +427,7 @@ struct aac_dev *aac_init_adapter(struct aac_dev *dev) | |||
427 | /* | 427 | /* |
428 | * Initialize the list of fibs | 428 | * Initialize the list of fibs |
429 | */ | 429 | */ |
430 | if(fib_setup(dev)<0){ | 430 | if (aac_fib_setup(dev) < 0) { |
431 | kfree(dev->queues); | 431 | kfree(dev->queues); |
432 | return NULL; | 432 | return NULL; |
433 | } | 433 | } |
diff --git a/drivers/scsi/aacraid/commsup.c b/drivers/scsi/aacraid/commsup.c index 38d6d00fb0fc..609fd19b1844 100644 --- a/drivers/scsi/aacraid/commsup.c +++ b/drivers/scsi/aacraid/commsup.c | |||
@@ -38,10 +38,10 @@ | |||
38 | #include <linux/slab.h> | 38 | #include <linux/slab.h> |
39 | #include <linux/completion.h> | 39 | #include <linux/completion.h> |
40 | #include <linux/blkdev.h> | 40 | #include <linux/blkdev.h> |
41 | #include <linux/delay.h> | ||
41 | #include <scsi/scsi_host.h> | 42 | #include <scsi/scsi_host.h> |
42 | #include <scsi/scsi_device.h> | 43 | #include <scsi/scsi_device.h> |
43 | #include <asm/semaphore.h> | 44 | #include <asm/semaphore.h> |
44 | #include <asm/delay.h> | ||
45 | 45 | ||
46 | #include "aacraid.h" | 46 | #include "aacraid.h" |
47 | 47 | ||
@@ -67,27 +67,27 @@ static int fib_map_alloc(struct aac_dev *dev) | |||
67 | } | 67 | } |
68 | 68 | ||
69 | /** | 69 | /** |
70 | * fib_map_free - free the fib objects | 70 | * aac_fib_map_free - free the fib objects |
71 | * @dev: Adapter to free | 71 | * @dev: Adapter to free |
72 | * | 72 | * |
73 | * Free the PCI mappings and the memory allocated for FIB blocks | 73 | * Free the PCI mappings and the memory allocated for FIB blocks |
74 | * on this adapter. | 74 | * on this adapter. |
75 | */ | 75 | */ |
76 | 76 | ||
77 | void fib_map_free(struct aac_dev *dev) | 77 | void aac_fib_map_free(struct aac_dev *dev) |
78 | { | 78 | { |
79 | pci_free_consistent(dev->pdev, dev->max_fib_size * (dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB), dev->hw_fib_va, dev->hw_fib_pa); | 79 | pci_free_consistent(dev->pdev, dev->max_fib_size * (dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB), dev->hw_fib_va, dev->hw_fib_pa); |
80 | } | 80 | } |
81 | 81 | ||
82 | /** | 82 | /** |
83 | * fib_setup - setup the fibs | 83 | * aac_fib_setup - setup the fibs |
84 | * @dev: Adapter to set up | 84 | * @dev: Adapter to set up |
85 | * | 85 | * |
86 | * Allocate the PCI space for the fibs, map it and then intialise the | 86 | * Allocate the PCI space for the fibs, map it and then intialise the |
87 | * fib area, the unmapped fib data and also the free list | 87 | * fib area, the unmapped fib data and also the free list |
88 | */ | 88 | */ |
89 | 89 | ||
90 | int fib_setup(struct aac_dev * dev) | 90 | int aac_fib_setup(struct aac_dev * dev) |
91 | { | 91 | { |
92 | struct fib *fibptr; | 92 | struct fib *fibptr; |
93 | struct hw_fib *hw_fib_va; | 93 | struct hw_fib *hw_fib_va; |
@@ -134,14 +134,14 @@ int fib_setup(struct aac_dev * dev) | |||
134 | } | 134 | } |
135 | 135 | ||
136 | /** | 136 | /** |
137 | * fib_alloc - allocate a fib | 137 | * aac_fib_alloc - allocate a fib |
138 | * @dev: Adapter to allocate the fib for | 138 | * @dev: Adapter to allocate the fib for |
139 | * | 139 | * |
140 | * Allocate a fib from the adapter fib pool. If the pool is empty we | 140 | * Allocate a fib from the adapter fib pool. If the pool is empty we |
141 | * return NULL. | 141 | * return NULL. |
142 | */ | 142 | */ |
143 | 143 | ||
144 | struct fib * fib_alloc(struct aac_dev *dev) | 144 | struct fib *aac_fib_alloc(struct aac_dev *dev) |
145 | { | 145 | { |
146 | struct fib * fibptr; | 146 | struct fib * fibptr; |
147 | unsigned long flags; | 147 | unsigned long flags; |
@@ -170,14 +170,14 @@ struct fib * fib_alloc(struct aac_dev *dev) | |||
170 | } | 170 | } |
171 | 171 | ||
172 | /** | 172 | /** |
173 | * fib_free - free a fib | 173 | * aac_fib_free - free a fib |
174 | * @fibptr: fib to free up | 174 | * @fibptr: fib to free up |
175 | * | 175 | * |
176 | * Frees up a fib and places it on the appropriate queue | 176 | * Frees up a fib and places it on the appropriate queue |
177 | * (either free or timed out) | 177 | * (either free or timed out) |
178 | */ | 178 | */ |
179 | 179 | ||
180 | void fib_free(struct fib * fibptr) | 180 | void aac_fib_free(struct fib *fibptr) |
181 | { | 181 | { |
182 | unsigned long flags; | 182 | unsigned long flags; |
183 | 183 | ||
@@ -188,7 +188,7 @@ void fib_free(struct fib * fibptr) | |||
188 | fibptr->dev->timeout_fib = fibptr; | 188 | fibptr->dev->timeout_fib = fibptr; |
189 | } else { | 189 | } else { |
190 | if (fibptr->hw_fib->header.XferState != 0) { | 190 | if (fibptr->hw_fib->header.XferState != 0) { |
191 | printk(KERN_WARNING "fib_free, XferState != 0, fibptr = 0x%p, XferState = 0x%x\n", | 191 | printk(KERN_WARNING "aac_fib_free, XferState != 0, fibptr = 0x%p, XferState = 0x%x\n", |
192 | (void*)fibptr, | 192 | (void*)fibptr, |
193 | le32_to_cpu(fibptr->hw_fib->header.XferState)); | 193 | le32_to_cpu(fibptr->hw_fib->header.XferState)); |
194 | } | 194 | } |
@@ -199,13 +199,13 @@ void fib_free(struct fib * fibptr) | |||
199 | } | 199 | } |
200 | 200 | ||
201 | /** | 201 | /** |
202 | * fib_init - initialise a fib | 202 | * aac_fib_init - initialise a fib |
203 | * @fibptr: The fib to initialize | 203 | * @fibptr: The fib to initialize |
204 | * | 204 | * |
205 | * Set up the generic fib fields ready for use | 205 | * Set up the generic fib fields ready for use |
206 | */ | 206 | */ |
207 | 207 | ||
208 | void fib_init(struct fib *fibptr) | 208 | void aac_fib_init(struct fib *fibptr) |
209 | { | 209 | { |
210 | struct hw_fib *hw_fib = fibptr->hw_fib; | 210 | struct hw_fib *hw_fib = fibptr->hw_fib; |
211 | 211 | ||
@@ -362,7 +362,7 @@ static int aac_queue_get(struct aac_dev * dev, u32 * index, u32 qid, struct hw_f | |||
362 | */ | 362 | */ |
363 | 363 | ||
364 | /** | 364 | /** |
365 | * fib_send - send a fib to the adapter | 365 | * aac_fib_send - send a fib to the adapter |
366 | * @command: Command to send | 366 | * @command: Command to send |
367 | * @fibptr: The fib | 367 | * @fibptr: The fib |
368 | * @size: Size of fib data area | 368 | * @size: Size of fib data area |
@@ -378,7 +378,9 @@ static int aac_queue_get(struct aac_dev * dev, u32 * index, u32 qid, struct hw_f | |||
378 | * response FIB is received from the adapter. | 378 | * response FIB is received from the adapter. |
379 | */ | 379 | */ |
380 | 380 | ||
381 | int fib_send(u16 command, struct fib * fibptr, unsigned long size, int priority, int wait, int reply, fib_callback callback, void * callback_data) | 381 | int aac_fib_send(u16 command, struct fib *fibptr, unsigned long size, |
382 | int priority, int wait, int reply, fib_callback callback, | ||
383 | void *callback_data) | ||
382 | { | 384 | { |
383 | struct aac_dev * dev = fibptr->dev; | 385 | struct aac_dev * dev = fibptr->dev; |
384 | struct hw_fib * hw_fib = fibptr->hw_fib; | 386 | struct hw_fib * hw_fib = fibptr->hw_fib; |
@@ -493,7 +495,7 @@ int fib_send(u16 command, struct fib * fibptr, unsigned long size, int priority | |||
493 | q->numpending++; | 495 | q->numpending++; |
494 | *(q->headers.producer) = cpu_to_le32(index + 1); | 496 | *(q->headers.producer) = cpu_to_le32(index + 1); |
495 | spin_unlock_irqrestore(q->lock, qflags); | 497 | spin_unlock_irqrestore(q->lock, qflags); |
496 | dprintk((KERN_DEBUG "fib_send: inserting a queue entry at index %d.\n",index)); | 498 | dprintk((KERN_DEBUG "aac_fib_send: inserting a queue entry at index %d.\n",index)); |
497 | if (!(nointr & aac_config.irq_mod)) | 499 | if (!(nointr & aac_config.irq_mod)) |
498 | aac_adapter_notify(dev, AdapNormCmdQueue); | 500 | aac_adapter_notify(dev, AdapNormCmdQueue); |
499 | } | 501 | } |
@@ -520,7 +522,7 @@ int fib_send(u16 command, struct fib * fibptr, unsigned long size, int priority | |||
520 | list_del(&fibptr->queue); | 522 | list_del(&fibptr->queue); |
521 | spin_unlock_irqrestore(q->lock, qflags); | 523 | spin_unlock_irqrestore(q->lock, qflags); |
522 | if (wait == -1) { | 524 | if (wait == -1) { |
523 | printk(KERN_ERR "aacraid: fib_send: first asynchronous command timed out.\n" | 525 | printk(KERN_ERR "aacraid: aac_fib_send: first asynchronous command timed out.\n" |
524 | "Usually a result of a PCI interrupt routing problem;\n" | 526 | "Usually a result of a PCI interrupt routing problem;\n" |
525 | "update mother board BIOS or consider utilizing one of\n" | 527 | "update mother board BIOS or consider utilizing one of\n" |
526 | "the SAFE mode kernel options (acpi, apic etc)\n"); | 528 | "the SAFE mode kernel options (acpi, apic etc)\n"); |
@@ -624,7 +626,7 @@ void aac_consumer_free(struct aac_dev * dev, struct aac_queue *q, u32 qid) | |||
624 | } | 626 | } |
625 | 627 | ||
626 | /** | 628 | /** |
627 | * fib_adapter_complete - complete adapter issued fib | 629 | * aac_fib_adapter_complete - complete adapter issued fib |
628 | * @fibptr: fib to complete | 630 | * @fibptr: fib to complete |
629 | * @size: size of fib | 631 | * @size: size of fib |
630 | * | 632 | * |
@@ -632,7 +634,7 @@ void aac_consumer_free(struct aac_dev * dev, struct aac_queue *q, u32 qid) | |||
632 | * the adapter. | 634 | * the adapter. |
633 | */ | 635 | */ |
634 | 636 | ||
635 | int fib_adapter_complete(struct fib * fibptr, unsigned short size) | 637 | int aac_fib_adapter_complete(struct fib *fibptr, unsigned short size) |
636 | { | 638 | { |
637 | struct hw_fib * hw_fib = fibptr->hw_fib; | 639 | struct hw_fib * hw_fib = fibptr->hw_fib; |
638 | struct aac_dev * dev = fibptr->dev; | 640 | struct aac_dev * dev = fibptr->dev; |
@@ -683,20 +685,20 @@ int fib_adapter_complete(struct fib * fibptr, unsigned short size) | |||
683 | } | 685 | } |
684 | else | 686 | else |
685 | { | 687 | { |
686 | printk(KERN_WARNING "fib_adapter_complete: Unknown xferstate detected.\n"); | 688 | printk(KERN_WARNING "aac_fib_adapter_complete: Unknown xferstate detected.\n"); |
687 | BUG(); | 689 | BUG(); |
688 | } | 690 | } |
689 | return 0; | 691 | return 0; |
690 | } | 692 | } |
691 | 693 | ||
692 | /** | 694 | /** |
693 | * fib_complete - fib completion handler | 695 | * aac_fib_complete - fib completion handler |
694 | * @fib: FIB to complete | 696 | * @fib: FIB to complete |
695 | * | 697 | * |
696 | * Will do all necessary work to complete a FIB. | 698 | * Will do all necessary work to complete a FIB. |
697 | */ | 699 | */ |
698 | 700 | ||
699 | int fib_complete(struct fib * fibptr) | 701 | int aac_fib_complete(struct fib *fibptr) |
700 | { | 702 | { |
701 | struct hw_fib * hw_fib = fibptr->hw_fib; | 703 | struct hw_fib * hw_fib = fibptr->hw_fib; |
702 | 704 | ||
@@ -995,14 +997,14 @@ static void aac_handle_aif(struct aac_dev * dev, struct fib * fibptr) | |||
995 | if (!dev || !dev->scsi_host_ptr) | 997 | if (!dev || !dev->scsi_host_ptr) |
996 | return; | 998 | return; |
997 | /* | 999 | /* |
998 | * force reload of disk info via probe_container | 1000 | * force reload of disk info via aac_probe_container |
999 | */ | 1001 | */ |
1000 | if ((device_config_needed == CHANGE) | 1002 | if ((device_config_needed == CHANGE) |
1001 | && (dev->fsa_dev[container].valid == 1)) | 1003 | && (dev->fsa_dev[container].valid == 1)) |
1002 | dev->fsa_dev[container].valid = 2; | 1004 | dev->fsa_dev[container].valid = 2; |
1003 | if ((device_config_needed == CHANGE) || | 1005 | if ((device_config_needed == CHANGE) || |
1004 | (device_config_needed == ADD)) | 1006 | (device_config_needed == ADD)) |
1005 | probe_container(dev, container); | 1007 | aac_probe_container(dev, container); |
1006 | device = scsi_device_lookup(dev->scsi_host_ptr, | 1008 | device = scsi_device_lookup(dev->scsi_host_ptr, |
1007 | CONTAINER_TO_CHANNEL(container), | 1009 | CONTAINER_TO_CHANNEL(container), |
1008 | CONTAINER_TO_ID(container), | 1010 | CONTAINER_TO_ID(container), |
@@ -1104,7 +1106,7 @@ int aac_command_thread(struct aac_dev * dev) | |||
1104 | /* Handle Driver Notify Events */ | 1106 | /* Handle Driver Notify Events */ |
1105 | aac_handle_aif(dev, fib); | 1107 | aac_handle_aif(dev, fib); |
1106 | *(__le32 *)hw_fib->data = cpu_to_le32(ST_OK); | 1108 | *(__le32 *)hw_fib->data = cpu_to_le32(ST_OK); |
1107 | fib_adapter_complete(fib, (u16)sizeof(u32)); | 1109 | aac_fib_adapter_complete(fib, (u16)sizeof(u32)); |
1108 | } else { | 1110 | } else { |
1109 | struct list_head *entry; | 1111 | struct list_head *entry; |
1110 | /* The u32 here is important and intended. We are using | 1112 | /* The u32 here is important and intended. We are using |
@@ -1241,7 +1243,7 @@ int aac_command_thread(struct aac_dev * dev) | |||
1241 | * Set the status of this FIB | 1243 | * Set the status of this FIB |
1242 | */ | 1244 | */ |
1243 | *(__le32 *)hw_fib->data = cpu_to_le32(ST_OK); | 1245 | *(__le32 *)hw_fib->data = cpu_to_le32(ST_OK); |
1244 | fib_adapter_complete(fib, sizeof(u32)); | 1246 | aac_fib_adapter_complete(fib, sizeof(u32)); |
1245 | spin_unlock_irqrestore(&dev->fib_lock, flagv); | 1247 | spin_unlock_irqrestore(&dev->fib_lock, flagv); |
1246 | /* Free up the remaining resources */ | 1248 | /* Free up the remaining resources */ |
1247 | hw_fib_p = hw_fib_pool; | 1249 | hw_fib_p = hw_fib_pool; |
diff --git a/drivers/scsi/aacraid/dpcsup.c b/drivers/scsi/aacraid/dpcsup.c index 439948ef8251..f6bcb9486f85 100644 --- a/drivers/scsi/aacraid/dpcsup.c +++ b/drivers/scsi/aacraid/dpcsup.c | |||
@@ -206,7 +206,7 @@ unsigned int aac_command_normal(struct aac_queue *q) | |||
206 | * Set the status of this FIB | 206 | * Set the status of this FIB |
207 | */ | 207 | */ |
208 | *(__le32 *)hw_fib->data = cpu_to_le32(ST_OK); | 208 | *(__le32 *)hw_fib->data = cpu_to_le32(ST_OK); |
209 | fib_adapter_complete(fib, sizeof(u32)); | 209 | aac_fib_adapter_complete(fib, sizeof(u32)); |
210 | spin_lock_irqsave(q->lock, flags); | 210 | spin_lock_irqsave(q->lock, flags); |
211 | } | 211 | } |
212 | } | 212 | } |
diff --git a/drivers/scsi/aacraid/linit.c b/drivers/scsi/aacraid/linit.c index 0bf5f9a943e8..271617890562 100644 --- a/drivers/scsi/aacraid/linit.c +++ b/drivers/scsi/aacraid/linit.c | |||
@@ -385,17 +385,45 @@ static int aac_biosparm(struct scsi_device *sdev, struct block_device *bdev, | |||
385 | 385 | ||
386 | static int aac_slave_configure(struct scsi_device *sdev) | 386 | static int aac_slave_configure(struct scsi_device *sdev) |
387 | { | 387 | { |
388 | struct Scsi_Host *host = sdev->host; | 388 | if (sdev_channel(sdev) == CONTAINER_CHANNEL) { |
389 | sdev->skip_ms_page_8 = 1; | ||
390 | sdev->skip_ms_page_3f = 1; | ||
391 | } | ||
392 | if ((sdev->type == TYPE_DISK) && | ||
393 | (sdev_channel(sdev) != CONTAINER_CHANNEL)) { | ||
394 | struct aac_dev *aac = (struct aac_dev *)sdev->host->hostdata; | ||
395 | if (!aac->raid_scsi_mode || (sdev_channel(sdev) != 2)) | ||
396 | sdev->no_uld_attach = 1; | ||
397 | } | ||
398 | if (sdev->tagged_supported && (sdev->type == TYPE_DISK) && | ||
399 | (sdev_channel(sdev) == CONTAINER_CHANNEL)) { | ||
400 | struct scsi_device * dev; | ||
401 | struct Scsi_Host *host = sdev->host; | ||
402 | unsigned num_lsu = 0; | ||
403 | unsigned num_one = 0; | ||
404 | unsigned depth; | ||
389 | 405 | ||
390 | if (sdev->tagged_supported) | 406 | __shost_for_each_device(dev, host) { |
391 | scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, 128); | 407 | if (dev->tagged_supported && (dev->type == TYPE_DISK) && |
392 | else | 408 | (sdev_channel(dev) == CONTAINER_CHANNEL)) |
409 | ++num_lsu; | ||
410 | else | ||
411 | ++num_one; | ||
412 | } | ||
413 | if (num_lsu == 0) | ||
414 | ++num_lsu; | ||
415 | depth = (host->can_queue - num_one) / num_lsu; | ||
416 | if (depth > 256) | ||
417 | depth = 256; | ||
418 | else if (depth < 2) | ||
419 | depth = 2; | ||
420 | scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, depth); | ||
421 | if (!(((struct aac_dev *)host->hostdata)->adapter_info.options & | ||
422 | AAC_OPT_NEW_COMM)) | ||
423 | blk_queue_max_segment_size(sdev->request_queue, 65536); | ||
424 | } else | ||
393 | scsi_adjust_queue_depth(sdev, 0, 1); | 425 | scsi_adjust_queue_depth(sdev, 0, 1); |
394 | 426 | ||
395 | if (!(((struct aac_dev *)host->hostdata)->adapter_info.options | ||
396 | & AAC_OPT_NEW_COMM)) | ||
397 | blk_queue_max_segment_size(sdev->request_queue, 65536); | ||
398 | |||
399 | return 0; | 427 | return 0; |
400 | } | 428 | } |
401 | 429 | ||
@@ -870,7 +898,7 @@ static int __devinit aac_probe_one(struct pci_dev *pdev, | |||
870 | 898 | ||
871 | /* | 899 | /* |
872 | * max channel will be the physical channels plus 1 virtual channel | 900 | * max channel will be the physical channels plus 1 virtual channel |
873 | * all containers are on the virtual channel 0 | 901 | * all containers are on the virtual channel 0 (CONTAINER_CHANNEL) |
874 | * physical channels are address by their actual physical number+1 | 902 | * physical channels are address by their actual physical number+1 |
875 | */ | 903 | */ |
876 | if (aac->nondasd_support == 1) | 904 | if (aac->nondasd_support == 1) |
@@ -913,7 +941,7 @@ static int __devinit aac_probe_one(struct pci_dev *pdev, | |||
913 | aac_adapter_disable_int(aac); | 941 | aac_adapter_disable_int(aac); |
914 | free_irq(pdev->irq, aac); | 942 | free_irq(pdev->irq, aac); |
915 | out_unmap: | 943 | out_unmap: |
916 | fib_map_free(aac); | 944 | aac_fib_map_free(aac); |
917 | pci_free_consistent(aac->pdev, aac->comm_size, aac->comm_addr, aac->comm_phys); | 945 | pci_free_consistent(aac->pdev, aac->comm_size, aac->comm_addr, aac->comm_phys); |
918 | kfree(aac->queues); | 946 | kfree(aac->queues); |
919 | iounmap(aac->regs.sa); | 947 | iounmap(aac->regs.sa); |
@@ -947,7 +975,7 @@ static void __devexit aac_remove_one(struct pci_dev *pdev) | |||
947 | 975 | ||
948 | aac_send_shutdown(aac); | 976 | aac_send_shutdown(aac); |
949 | aac_adapter_disable_int(aac); | 977 | aac_adapter_disable_int(aac); |
950 | fib_map_free(aac); | 978 | aac_fib_map_free(aac); |
951 | pci_free_consistent(aac->pdev, aac->comm_size, aac->comm_addr, | 979 | pci_free_consistent(aac->pdev, aac->comm_size, aac->comm_addr, |
952 | aac->comm_phys); | 980 | aac->comm_phys); |
953 | kfree(aac->queues); | 981 | kfree(aac->queues); |
diff --git a/drivers/scsi/aha152x.c b/drivers/scsi/aha152x.c index cb2ee25f213f..531a1f9ceb51 100644 --- a/drivers/scsi/aha152x.c +++ b/drivers/scsi/aha152x.c | |||
@@ -1260,16 +1260,15 @@ static void free_hard_reset_SCs(struct Scsi_Host *shpnt, Scsi_Cmnd **SCs) | |||
1260 | * Reset the bus | 1260 | * Reset the bus |
1261 | * | 1261 | * |
1262 | */ | 1262 | */ |
1263 | static int aha152x_bus_reset(Scsi_Cmnd *SCpnt) | 1263 | static int aha152x_bus_reset_host(struct Scsi_Host *shpnt) |
1264 | { | 1264 | { |
1265 | struct Scsi_Host *shpnt = SCpnt->device->host; | ||
1266 | unsigned long flags; | 1265 | unsigned long flags; |
1267 | 1266 | ||
1268 | DO_LOCK(flags); | 1267 | DO_LOCK(flags); |
1269 | 1268 | ||
1270 | #if defined(AHA152X_DEBUG) | 1269 | #if defined(AHA152X_DEBUG) |
1271 | if(HOSTDATA(shpnt)->debug & debug_eh) { | 1270 | if(HOSTDATA(shpnt)->debug & debug_eh) { |
1272 | printk(DEBUG_LEAD "aha152x_bus_reset(%p)", CMDINFO(SCpnt), SCpnt); | 1271 | printk(KERN_DEBUG "scsi%d: bus reset", shpnt->host_no); |
1273 | show_queues(shpnt); | 1272 | show_queues(shpnt); |
1274 | } | 1273 | } |
1275 | #endif | 1274 | #endif |
@@ -1277,14 +1276,14 @@ static int aha152x_bus_reset(Scsi_Cmnd *SCpnt) | |||
1277 | free_hard_reset_SCs(shpnt, &ISSUE_SC); | 1276 | free_hard_reset_SCs(shpnt, &ISSUE_SC); |
1278 | free_hard_reset_SCs(shpnt, &DISCONNECTED_SC); | 1277 | free_hard_reset_SCs(shpnt, &DISCONNECTED_SC); |
1279 | 1278 | ||
1280 | DPRINTK(debug_eh, DEBUG_LEAD "resetting bus\n", CMDINFO(SCpnt)); | 1279 | DPRINTK(debug_eh, KERN_DEBUG "scsi%d: resetting bus\n", shpnt->host_no); |
1281 | 1280 | ||
1282 | SETPORT(SCSISEQ, SCSIRSTO); | 1281 | SETPORT(SCSISEQ, SCSIRSTO); |
1283 | mdelay(256); | 1282 | mdelay(256); |
1284 | SETPORT(SCSISEQ, 0); | 1283 | SETPORT(SCSISEQ, 0); |
1285 | mdelay(DELAY); | 1284 | mdelay(DELAY); |
1286 | 1285 | ||
1287 | DPRINTK(debug_eh, DEBUG_LEAD "bus resetted\n", CMDINFO(SCpnt)); | 1286 | DPRINTK(debug_eh, KERN_DEBUG "scsi%d: bus resetted\n", shpnt->host_no); |
1288 | 1287 | ||
1289 | setup_expected_interrupts(shpnt); | 1288 | setup_expected_interrupts(shpnt); |
1290 | if(HOSTDATA(shpnt)->commands==0) | 1289 | if(HOSTDATA(shpnt)->commands==0) |
@@ -1295,6 +1294,14 @@ static int aha152x_bus_reset(Scsi_Cmnd *SCpnt) | |||
1295 | return SUCCESS; | 1294 | return SUCCESS; |
1296 | } | 1295 | } |
1297 | 1296 | ||
1297 | /* | ||
1298 | * Reset the bus | ||
1299 | * | ||
1300 | */ | ||
1301 | static int aha152x_bus_reset(Scsi_Cmnd *SCpnt) | ||
1302 | { | ||
1303 | return aha152x_bus_reset_host(SCpnt->device->host); | ||
1304 | } | ||
1298 | 1305 | ||
1299 | /* | 1306 | /* |
1300 | * Restore default values to the AIC-6260 registers and reset the fifos | 1307 | * Restore default values to the AIC-6260 registers and reset the fifos |
@@ -1337,23 +1344,28 @@ static void reset_ports(struct Scsi_Host *shpnt) | |||
1337 | * Reset the host (bus and controller) | 1344 | * Reset the host (bus and controller) |
1338 | * | 1345 | * |
1339 | */ | 1346 | */ |
1340 | int aha152x_host_reset(Scsi_Cmnd * SCpnt) | 1347 | int aha152x_host_reset_host(struct Scsi_Host *shpnt) |
1341 | { | 1348 | { |
1342 | #if defined(AHA152X_DEBUG) | 1349 | DPRINTK(debug_eh, KERN_DEBUG "scsi%d: host reset\n", shpnt->host_no); |
1343 | struct Scsi_Host *shpnt = SCpnt->device->host; | ||
1344 | #endif | ||
1345 | |||
1346 | DPRINTK(debug_eh, DEBUG_LEAD "aha152x_host_reset(%p)\n", CMDINFO(SCpnt), SCpnt); | ||
1347 | 1350 | ||
1348 | aha152x_bus_reset(SCpnt); | 1351 | aha152x_bus_reset_host(shpnt); |
1349 | 1352 | ||
1350 | DPRINTK(debug_eh, DEBUG_LEAD "resetting ports\n", CMDINFO(SCpnt)); | 1353 | DPRINTK(debug_eh, KERN_DEBUG "scsi%d: resetting ports\n", shpnt->host_no); |
1351 | reset_ports(SCpnt->device->host); | 1354 | reset_ports(shpnt); |
1352 | 1355 | ||
1353 | return SUCCESS; | 1356 | return SUCCESS; |
1354 | } | 1357 | } |
1355 | 1358 | ||
1356 | /* | 1359 | /* |
1360 | * Reset the host (bus and controller) | ||
1361 | * | ||
1362 | */ | ||
1363 | static int aha152x_host_reset(Scsi_Cmnd *SCpnt) | ||
1364 | { | ||
1365 | return aha152x_host_reset_host(SCpnt->device->host); | ||
1366 | } | ||
1367 | |||
1368 | /* | ||
1357 | * Return the "logical geometry" | 1369 | * Return the "logical geometry" |
1358 | * | 1370 | * |
1359 | */ | 1371 | */ |
@@ -1431,22 +1443,18 @@ static void run(void) | |||
1431 | { | 1443 | { |
1432 | int i; | 1444 | int i; |
1433 | for (i = 0; i<ARRAY_SIZE(aha152x_host); i++) { | 1445 | for (i = 0; i<ARRAY_SIZE(aha152x_host); i++) { |
1434 | struct Scsi_Host *shpnt = aha152x_host[i]; | 1446 | is_complete(aha152x_host[i]); |
1435 | if (shpnt && HOSTDATA(shpnt)->service) { | ||
1436 | HOSTDATA(shpnt)->service=0; | ||
1437 | is_complete(shpnt); | ||
1438 | } | ||
1439 | } | 1447 | } |
1440 | } | 1448 | } |
1441 | 1449 | ||
1442 | /* | 1450 | /* |
1443 | * Interrupts handler | 1451 | * Interrupt handler |
1444 | * | 1452 | * |
1445 | */ | 1453 | */ |
1446 | |||
1447 | static irqreturn_t intr(int irqno, void *dev_id, struct pt_regs *regs) | 1454 | static irqreturn_t intr(int irqno, void *dev_id, struct pt_regs *regs) |
1448 | { | 1455 | { |
1449 | struct Scsi_Host *shpnt = lookup_irq(irqno); | 1456 | struct Scsi_Host *shpnt = lookup_irq(irqno); |
1457 | unsigned long flags; | ||
1450 | unsigned char rev, dmacntrl0; | 1458 | unsigned char rev, dmacntrl0; |
1451 | 1459 | ||
1452 | if (!shpnt) { | 1460 | if (!shpnt) { |
@@ -1472,23 +1480,23 @@ static irqreturn_t intr(int irqno, void *dev_id, struct pt_regs *regs) | |||
1472 | if ((rev == 0xFF) && (dmacntrl0 == 0xFF)) | 1480 | if ((rev == 0xFF) && (dmacntrl0 == 0xFF)) |
1473 | return IRQ_NONE; | 1481 | return IRQ_NONE; |
1474 | 1482 | ||
1483 | if( TESTLO(DMASTAT, INTSTAT) ) | ||
1484 | return IRQ_NONE; | ||
1485 | |||
1475 | /* no more interrupts from the controller, while we're busy. | 1486 | /* no more interrupts from the controller, while we're busy. |
1476 | INTEN is restored by the BH handler */ | 1487 | INTEN is restored by the BH handler */ |
1477 | CLRBITS(DMACNTRL0, INTEN); | 1488 | CLRBITS(DMACNTRL0, INTEN); |
1478 | 1489 | ||
1479 | #if 0 | 1490 | DO_LOCK(flags); |
1480 | /* check if there is already something to be | 1491 | if( HOSTDATA(shpnt)->service==0 ) { |
1481 | serviced; should not happen */ | 1492 | HOSTDATA(shpnt)->service=1; |
1482 | if(HOSTDATA(shpnt)->service) { | 1493 | |
1483 | printk(KERN_ERR "aha152x%d: lost interrupt (%d)\n", HOSTNO, HOSTDATA(shpnt)->service); | 1494 | /* Poke the BH handler */ |
1484 | show_queues(shpnt); | 1495 | INIT_WORK(&aha152x_tq, (void *) run, NULL); |
1496 | schedule_work(&aha152x_tq); | ||
1485 | } | 1497 | } |
1486 | #endif | 1498 | DO_UNLOCK(flags); |
1487 | 1499 | ||
1488 | /* Poke the BH handler */ | ||
1489 | HOSTDATA(shpnt)->service++; | ||
1490 | INIT_WORK(&aha152x_tq, (void *) run, NULL); | ||
1491 | schedule_work(&aha152x_tq); | ||
1492 | return IRQ_HANDLED; | 1500 | return IRQ_HANDLED; |
1493 | } | 1501 | } |
1494 | 1502 | ||
@@ -2527,7 +2535,18 @@ static void is_complete(struct Scsi_Host *shpnt) | |||
2527 | unsigned long flags; | 2535 | unsigned long flags; |
2528 | int pending; | 2536 | int pending; |
2529 | 2537 | ||
2538 | if(!shpnt) | ||
2539 | return; | ||
2540 | |||
2530 | DO_LOCK(flags); | 2541 | DO_LOCK(flags); |
2542 | |||
2543 | if( HOSTDATA(shpnt)->service==0 ) { | ||
2544 | DO_UNLOCK(flags); | ||
2545 | return; | ||
2546 | } | ||
2547 | |||
2548 | HOSTDATA(shpnt)->service = 0; | ||
2549 | |||
2531 | if(HOSTDATA(shpnt)->in_intr) { | 2550 | if(HOSTDATA(shpnt)->in_intr) { |
2532 | DO_UNLOCK(flags); | 2551 | DO_UNLOCK(flags); |
2533 | /* aha152x_error never returns.. */ | 2552 | /* aha152x_error never returns.. */ |
diff --git a/drivers/scsi/aha152x.h b/drivers/scsi/aha152x.h index d277613af29b..d2add24d02a3 100644 --- a/drivers/scsi/aha152x.h +++ b/drivers/scsi/aha152x.h | |||
@@ -332,6 +332,6 @@ struct aha152x_setup { | |||
332 | 332 | ||
333 | struct Scsi_Host *aha152x_probe_one(struct aha152x_setup *); | 333 | struct Scsi_Host *aha152x_probe_one(struct aha152x_setup *); |
334 | void aha152x_release(struct Scsi_Host *); | 334 | void aha152x_release(struct Scsi_Host *); |
335 | int aha152x_host_reset(Scsi_Cmnd *); | 335 | int aha152x_host_reset_host(struct Scsi_Host *); |
336 | 336 | ||
337 | #endif /* _AHA152X_H */ | 337 | #endif /* _AHA152X_H */ |
diff --git a/drivers/scsi/ahci.c b/drivers/scsi/ahci.c index 19bd346951dd..559ff7aae3f1 100644 --- a/drivers/scsi/ahci.c +++ b/drivers/scsi/ahci.c | |||
@@ -286,6 +286,10 @@ static const struct pci_device_id ahci_pci_tbl[] = { | |||
286 | board_ahci }, /* ICH8M */ | 286 | board_ahci }, /* ICH8M */ |
287 | { PCI_VENDOR_ID_INTEL, 0x282a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, | 287 | { PCI_VENDOR_ID_INTEL, 0x282a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, |
288 | board_ahci }, /* ICH8M */ | 288 | board_ahci }, /* ICH8M */ |
289 | { 0x197b, 0x2360, PCI_ANY_ID, PCI_ANY_ID, 0, 0, | ||
290 | board_ahci }, /* JMicron JMB360 */ | ||
291 | { 0x197b, 0x2363, PCI_ANY_ID, PCI_ANY_ID, 0, 0, | ||
292 | board_ahci }, /* JMicron JMB363 */ | ||
289 | { } /* terminate list */ | 293 | { } /* terminate list */ |
290 | }; | 294 | }; |
291 | 295 | ||
@@ -738,23 +742,17 @@ static irqreturn_t ahci_interrupt (int irq, void *dev_instance, struct pt_regs * | |||
738 | struct ata_queued_cmd *qc; | 742 | struct ata_queued_cmd *qc; |
739 | qc = ata_qc_from_tag(ap, ap->active_tag); | 743 | qc = ata_qc_from_tag(ap, ap->active_tag); |
740 | if (!ahci_host_intr(ap, qc)) | 744 | if (!ahci_host_intr(ap, qc)) |
741 | if (ata_ratelimit()) { | 745 | if (ata_ratelimit()) |
742 | struct pci_dev *pdev = | 746 | dev_printk(KERN_WARNING, host_set->dev, |
743 | to_pci_dev(ap->host_set->dev); | ||
744 | dev_printk(KERN_WARNING, &pdev->dev, | ||
745 | "unhandled interrupt on port %u\n", | 747 | "unhandled interrupt on port %u\n", |
746 | i); | 748 | i); |
747 | } | ||
748 | 749 | ||
749 | VPRINTK("port %u\n", i); | 750 | VPRINTK("port %u\n", i); |
750 | } else { | 751 | } else { |
751 | VPRINTK("port %u (no irq)\n", i); | 752 | VPRINTK("port %u (no irq)\n", i); |
752 | if (ata_ratelimit()) { | 753 | if (ata_ratelimit()) |
753 | struct pci_dev *pdev = | 754 | dev_printk(KERN_WARNING, host_set->dev, |
754 | to_pci_dev(ap->host_set->dev); | ||
755 | dev_printk(KERN_WARNING, &pdev->dev, | ||
756 | "interrupt on disabled port %u\n", i); | 755 | "interrupt on disabled port %u\n", i); |
757 | } | ||
758 | } | 756 | } |
759 | 757 | ||
760 | irq_ack |= (1 << i); | 758 | irq_ack |= (1 << i); |
@@ -802,7 +800,6 @@ static int ahci_host_init(struct ata_probe_ent *probe_ent) | |||
802 | struct pci_dev *pdev = to_pci_dev(probe_ent->dev); | 800 | struct pci_dev *pdev = to_pci_dev(probe_ent->dev); |
803 | void __iomem *mmio = probe_ent->mmio_base; | 801 | void __iomem *mmio = probe_ent->mmio_base; |
804 | u32 tmp, cap_save; | 802 | u32 tmp, cap_save; |
805 | u16 tmp16; | ||
806 | unsigned int i, j, using_dac; | 803 | unsigned int i, j, using_dac; |
807 | int rc; | 804 | int rc; |
808 | void __iomem *port_mmio; | 805 | void __iomem *port_mmio; |
@@ -836,9 +833,13 @@ static int ahci_host_init(struct ata_probe_ent *probe_ent) | |||
836 | writel(0xf, mmio + HOST_PORTS_IMPL); | 833 | writel(0xf, mmio + HOST_PORTS_IMPL); |
837 | (void) readl(mmio + HOST_PORTS_IMPL); /* flush */ | 834 | (void) readl(mmio + HOST_PORTS_IMPL); /* flush */ |
838 | 835 | ||
839 | pci_read_config_word(pdev, 0x92, &tmp16); | 836 | if (pdev->vendor == PCI_VENDOR_ID_INTEL) { |
840 | tmp16 |= 0xf; | 837 | u16 tmp16; |
841 | pci_write_config_word(pdev, 0x92, tmp16); | 838 | |
839 | pci_read_config_word(pdev, 0x92, &tmp16); | ||
840 | tmp16 |= 0xf; | ||
841 | pci_write_config_word(pdev, 0x92, tmp16); | ||
842 | } | ||
842 | 843 | ||
843 | hpriv->cap = readl(mmio + HOST_CAP); | 844 | hpriv->cap = readl(mmio + HOST_CAP); |
844 | hpriv->port_map = readl(mmio + HOST_PORTS_IMPL); | 845 | hpriv->port_map = readl(mmio + HOST_PORTS_IMPL); |
@@ -1082,6 +1083,10 @@ static int ahci_init_one (struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1082 | if (have_msi) | 1083 | if (have_msi) |
1083 | hpriv->flags |= AHCI_FLAG_MSI; | 1084 | hpriv->flags |= AHCI_FLAG_MSI; |
1084 | 1085 | ||
1086 | /* JMicron-specific fixup: make sure we're in AHCI mode */ | ||
1087 | if (pdev->vendor == 0x197b) | ||
1088 | pci_write_config_byte(pdev, 0x41, 0xa1); | ||
1089 | |||
1085 | /* initialize adapter */ | 1090 | /* initialize adapter */ |
1086 | rc = ahci_host_init(probe_ent); | 1091 | rc = ahci_host_init(probe_ent); |
1087 | if (rc) | 1092 | if (rc) |
diff --git a/drivers/scsi/aic7xxx/Kconfig.aic79xx b/drivers/scsi/aic7xxx/Kconfig.aic79xx index 69ed77fcb71f..7955ebe8e1e8 100644 --- a/drivers/scsi/aic7xxx/Kconfig.aic79xx +++ b/drivers/scsi/aic7xxx/Kconfig.aic79xx | |||
@@ -37,13 +37,13 @@ config AIC79XX_CMDS_PER_DEVICE | |||
37 | config AIC79XX_RESET_DELAY_MS | 37 | config AIC79XX_RESET_DELAY_MS |
38 | int "Initial bus reset delay in milli-seconds" | 38 | int "Initial bus reset delay in milli-seconds" |
39 | depends on SCSI_AIC79XX | 39 | depends on SCSI_AIC79XX |
40 | default "15000" | 40 | default "5000" |
41 | ---help--- | 41 | ---help--- |
42 | The number of milliseconds to delay after an initial bus reset. | 42 | The number of milliseconds to delay after an initial bus reset. |
43 | The bus settle delay following all error recovery actions is | 43 | The bus settle delay following all error recovery actions is |
44 | dictated by the SCSI layer and is not affected by this value. | 44 | dictated by the SCSI layer and is not affected by this value. |
45 | 45 | ||
46 | Default: 15000 (15 seconds) | 46 | Default: 5000 (5 seconds) |
47 | 47 | ||
48 | config AIC79XX_BUILD_FIRMWARE | 48 | config AIC79XX_BUILD_FIRMWARE |
49 | bool "Build Adapter Firmware with Kernel Build" | 49 | bool "Build Adapter Firmware with Kernel Build" |
diff --git a/drivers/scsi/aic7xxx/aic79xx.h b/drivers/scsi/aic7xxx/aic79xx.h index 2cfdbef447db..1d11f7e77564 100644 --- a/drivers/scsi/aic7xxx/aic79xx.h +++ b/drivers/scsi/aic7xxx/aic79xx.h | |||
@@ -37,7 +37,7 @@ | |||
37 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 37 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
38 | * POSSIBILITY OF SUCH DAMAGES. | 38 | * POSSIBILITY OF SUCH DAMAGES. |
39 | * | 39 | * |
40 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.h#108 $ | 40 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.h#109 $ |
41 | * | 41 | * |
42 | * $FreeBSD$ | 42 | * $FreeBSD$ |
43 | */ | 43 | */ |
@@ -222,6 +222,7 @@ typedef enum { | |||
222 | typedef enum { | 222 | typedef enum { |
223 | AHD_FENONE = 0x00000, | 223 | AHD_FENONE = 0x00000, |
224 | AHD_WIDE = 0x00001,/* Wide Channel */ | 224 | AHD_WIDE = 0x00001,/* Wide Channel */ |
225 | AHD_AIC79XXB_SLOWCRC = 0x00002,/* SLOWCRC bit should be set */ | ||
225 | AHD_MULTI_FUNC = 0x00100,/* Multi-Function/Channel Device */ | 226 | AHD_MULTI_FUNC = 0x00100,/* Multi-Function/Channel Device */ |
226 | AHD_TARGETMODE = 0x01000,/* Has tested target mode support */ | 227 | AHD_TARGETMODE = 0x01000,/* Has tested target mode support */ |
227 | AHD_MULTIROLE = 0x02000,/* Space for two roles at a time */ | 228 | AHD_MULTIROLE = 0x02000,/* Space for two roles at a time */ |
diff --git a/drivers/scsi/aic7xxx/aic79xx.reg b/drivers/scsi/aic7xxx/aic79xx.reg index 3a3204703b15..be14e2ecb8f7 100644 --- a/drivers/scsi/aic7xxx/aic79xx.reg +++ b/drivers/scsi/aic7xxx/aic79xx.reg | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * Aic79xx register and scratch ram definitions. | 2 | * Aic79xx register and scratch ram definitions. |
3 | * | 3 | * |
4 | * Copyright (c) 1994-2001 Justin T. Gibbs. | 4 | * Copyright (c) 1994-2001, 2004 Justin T. Gibbs. |
5 | * Copyright (c) 2000-2002 Adaptec Inc. | 5 | * Copyright (c) 2000-2002 Adaptec Inc. |
6 | * All rights reserved. | 6 | * All rights reserved. |
7 | * | 7 | * |
@@ -39,7 +39,7 @@ | |||
39 | * | 39 | * |
40 | * $FreeBSD$ | 40 | * $FreeBSD$ |
41 | */ | 41 | */ |
42 | VERSION = "$Id: //depot/aic7xxx/aic7xxx/aic79xx.reg#76 $" | 42 | VERSION = "$Id: //depot/aic7xxx/aic7xxx/aic79xx.reg#77 $" |
43 | 43 | ||
44 | /* | 44 | /* |
45 | * This file is processed by the aic7xxx_asm utility for use in assembling | 45 | * This file is processed by the aic7xxx_asm utility for use in assembling |
@@ -3715,8 +3715,9 @@ scratch_ram { | |||
3715 | 3715 | ||
3716 | SEQ_FLAGS2 { | 3716 | SEQ_FLAGS2 { |
3717 | size 1 | 3717 | size 1 |
3718 | field TARGET_MSG_PENDING 0x02 | 3718 | field PENDING_MK_MESSAGE 0x01 |
3719 | field SELECTOUT_QFROZEN 0x04 | 3719 | field TARGET_MSG_PENDING 0x02 |
3720 | field SELECTOUT_QFROZEN 0x04 | ||
3720 | } | 3721 | } |
3721 | 3722 | ||
3722 | ALLOCFIFO_SCBPTR { | 3723 | ALLOCFIFO_SCBPTR { |
@@ -3777,6 +3778,26 @@ scratch_ram { | |||
3777 | CMDSIZE_TABLE { | 3778 | CMDSIZE_TABLE { |
3778 | size 8 | 3779 | size 8 |
3779 | } | 3780 | } |
3781 | /* | ||
3782 | * When an SCB with the MK_MESSAGE flag is | ||
3783 | * queued to the controller, it cannot enter | ||
3784 | * the waiting for selection list until the | ||
3785 | * selections for any previously queued | ||
3786 | * commands to that target complete. During | ||
3787 | * the wait, the MK_MESSAGE SCB is queued | ||
3788 | * here. | ||
3789 | */ | ||
3790 | MK_MESSAGE_SCB { | ||
3791 | size 2 | ||
3792 | } | ||
3793 | /* | ||
3794 | * Saved SCSIID of MK_MESSAGE_SCB to avoid | ||
3795 | * an extra SCBPTR operation when deciding | ||
3796 | * if the MK_MESSAGE_SCB can be run. | ||
3797 | */ | ||
3798 | MK_MESSAGE_SCSIID { | ||
3799 | size 1 | ||
3800 | } | ||
3780 | } | 3801 | } |
3781 | 3802 | ||
3782 | /************************* Hardware SCB Definition ****************************/ | 3803 | /************************* Hardware SCB Definition ****************************/ |
diff --git a/drivers/scsi/aic7xxx/aic79xx.seq b/drivers/scsi/aic7xxx/aic79xx.seq index bef1f9d369b6..58bc17591b54 100644 --- a/drivers/scsi/aic7xxx/aic79xx.seq +++ b/drivers/scsi/aic7xxx/aic79xx.seq | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * Adaptec U320 device driver firmware for Linux and FreeBSD. | 2 | * Adaptec U320 device driver firmware for Linux and FreeBSD. |
3 | * | 3 | * |
4 | * Copyright (c) 1994-2001 Justin T. Gibbs. | 4 | * Copyright (c) 1994-2001, 2004 Justin T. Gibbs. |
5 | * Copyright (c) 2000-2002 Adaptec Inc. | 5 | * Copyright (c) 2000-2002 Adaptec Inc. |
6 | * All rights reserved. | 6 | * All rights reserved. |
7 | * | 7 | * |
@@ -40,7 +40,7 @@ | |||
40 | * $FreeBSD$ | 40 | * $FreeBSD$ |
41 | */ | 41 | */ |
42 | 42 | ||
43 | VERSION = "$Id: //depot/aic7xxx/aic7xxx/aic79xx.seq#119 $" | 43 | VERSION = "$Id: //depot/aic7xxx/aic7xxx/aic79xx.seq#120 $" |
44 | PATCH_ARG_LIST = "struct ahd_softc *ahd" | 44 | PATCH_ARG_LIST = "struct ahd_softc *ahd" |
45 | PREFIX = "ahd_" | 45 | PREFIX = "ahd_" |
46 | 46 | ||
@@ -110,10 +110,8 @@ check_waiting_list: | |||
110 | * one last time. | 110 | * one last time. |
111 | */ | 111 | */ |
112 | test SSTAT0, SELDO jnz select_out; | 112 | test SSTAT0, SELDO jnz select_out; |
113 | END_CRITICAL; | ||
114 | call start_selection; | 113 | call start_selection; |
115 | idle_loop_checkbus: | 114 | idle_loop_checkbus: |
116 | BEGIN_CRITICAL; | ||
117 | test SSTAT0, SELDO jnz select_out; | 115 | test SSTAT0, SELDO jnz select_out; |
118 | END_CRITICAL; | 116 | END_CRITICAL; |
119 | test SSTAT0, SELDI jnz select_in; | 117 | test SSTAT0, SELDI jnz select_in; |
@@ -294,7 +292,6 @@ fetch_new_scb_inprog: | |||
294 | test CCSCBCTL, ARRDONE jz return; | 292 | test CCSCBCTL, ARRDONE jz return; |
295 | fetch_new_scb_done: | 293 | fetch_new_scb_done: |
296 | and CCSCBCTL, ~(CCARREN|CCSCBEN); | 294 | and CCSCBCTL, ~(CCARREN|CCSCBEN); |
297 | bmov REG0, SCBPTR, 2; | ||
298 | clr A; | 295 | clr A; |
299 | add CMDS_PENDING, 1; | 296 | add CMDS_PENDING, 1; |
300 | adc CMDS_PENDING[1], A; | 297 | adc CMDS_PENDING[1], A; |
@@ -316,43 +313,117 @@ fetch_new_scb_done: | |||
316 | clr SCB_FIFO_USE_COUNT; | 313 | clr SCB_FIFO_USE_COUNT; |
317 | /* Update the next SCB address to download. */ | 314 | /* Update the next SCB address to download. */ |
318 | bmov NEXT_QUEUED_SCB_ADDR, SCB_NEXT_SCB_BUSADDR, 4; | 315 | bmov NEXT_QUEUED_SCB_ADDR, SCB_NEXT_SCB_BUSADDR, 4; |
316 | /* | ||
317 | * NULL out the SCB links since these fields | ||
318 | * occupy the same location as SCB_NEXT_SCB_BUSADDR. | ||
319 | */ | ||
319 | mvi SCB_NEXT[1], SCB_LIST_NULL; | 320 | mvi SCB_NEXT[1], SCB_LIST_NULL; |
320 | mvi SCB_NEXT2[1], SCB_LIST_NULL; | 321 | mvi SCB_NEXT2[1], SCB_LIST_NULL; |
321 | /* Increment our position in the QINFIFO. */ | 322 | /* Increment our position in the QINFIFO. */ |
322 | mov NONE, SNSCB_QOFF; | 323 | mov NONE, SNSCB_QOFF; |
324 | |||
323 | /* | 325 | /* |
324 | * SCBs that want to send messages are always | 326 | * Save SCBID of this SCB in REG0 since |
325 | * queued independently. This ensures that they | 327 | * SCBPTR will be clobbered during target |
326 | * are at the head of the SCB list to select out | 328 | * list updates. We also record the SCB's |
327 | * to a target and we will see the MK_MESSAGE flag. | 329 | * flags so that we can refer to them even |
330 | * after SCBPTR has been changed. | ||
331 | */ | ||
332 | bmov REG0, SCBPTR, 2; | ||
333 | mov A, SCB_CONTROL; | ||
334 | |||
335 | /* | ||
336 | * Find the tail SCB of the execution queue | ||
337 | * for this target. | ||
328 | */ | 338 | */ |
329 | test SCB_CONTROL, MK_MESSAGE jnz first_new_target_scb; | ||
330 | shr SINDEX, 3, SCB_SCSIID; | 339 | shr SINDEX, 3, SCB_SCSIID; |
331 | and SINDEX, ~0x1; | 340 | and SINDEX, ~0x1; |
332 | mvi SINDEX[1], (WAITING_SCB_TAILS >> 8); | 341 | mvi SINDEX[1], (WAITING_SCB_TAILS >> 8); |
333 | bmov DINDEX, SINDEX, 2; | 342 | bmov DINDEX, SINDEX, 2; |
334 | bmov SCBPTR, SINDIR, 2; | 343 | bmov SCBPTR, SINDIR, 2; |
344 | |||
345 | /* | ||
346 | * Update the tail to point to the new SCB. | ||
347 | */ | ||
335 | bmov DINDIR, REG0, 2; | 348 | bmov DINDIR, REG0, 2; |
349 | |||
350 | /* | ||
351 | * If the queue was empty, queue this SCB as | ||
352 | * the first for this target. | ||
353 | */ | ||
336 | cmp SCBPTR[1], SCB_LIST_NULL je first_new_target_scb; | 354 | cmp SCBPTR[1], SCB_LIST_NULL je first_new_target_scb; |
355 | |||
356 | /* | ||
357 | * SCBs that want to send messages must always be | ||
358 | * at the head of their per-target queue so that | ||
359 | * ATN can be asserted even if the current | ||
360 | * negotiation agreement is packetized. If the | ||
361 | * target queue is empty, the SCB can be queued | ||
362 | * immediately. If the queue is not empty, we must | ||
363 | * wait for it to empty before entering this SCB | ||
364 | * into the waiting for selection queue. Otherwise | ||
365 | * our batching and round-robin selection scheme | ||
366 | * could allow commands to be queued out of order. | ||
367 | * To simplify the implementation, we stop pulling | ||
368 | * new commands from the host until the MK_MESSAGE | ||
369 | * SCB can be queued to the waiting for selection | ||
370 | * list. | ||
371 | */ | ||
372 | test A, MK_MESSAGE jz batch_scb; | ||
373 | |||
374 | /* | ||
375 | * If the last SCB is also a MK_MESSAGE SCB, then | ||
376 | * order is preserved even if we batch. | ||
377 | */ | ||
378 | test SCB_CONTROL, MK_MESSAGE jz batch_scb; | ||
379 | |||
380 | /* | ||
381 | * Defer this SCB and stop fetching new SCBs until | ||
382 | * it can be queued. Since the SCB_SCSIID of the | ||
383 | * tail SCB must be the same as that of the newly | ||
384 | * queued SCB, there is no need to restore the SCBID | ||
385 | * here. | ||
386 | */ | ||
387 | or SEQ_FLAGS2, PENDING_MK_MESSAGE; | ||
388 | bmov MK_MESSAGE_SCB, REG0, 2; | ||
389 | mov MK_MESSAGE_SCSIID, SCB_SCSIID ret; | ||
390 | |||
391 | batch_scb: | ||
392 | /* | ||
393 | * Otherwise just update the previous tail SCB to | ||
394 | * point to the new tail. | ||
395 | */ | ||
337 | bmov SCB_NEXT, REG0, 2 ret; | 396 | bmov SCB_NEXT, REG0, 2 ret; |
397 | |||
338 | first_new_target_scb: | 398 | first_new_target_scb: |
399 | /* | ||
400 | * Append SCB to the tail of the waiting for | ||
401 | * selection list. | ||
402 | */ | ||
339 | cmp WAITING_TID_HEAD[1], SCB_LIST_NULL je first_new_scb; | 403 | cmp WAITING_TID_HEAD[1], SCB_LIST_NULL je first_new_scb; |
340 | bmov SCBPTR, WAITING_TID_TAIL, 2; | 404 | bmov SCBPTR, WAITING_TID_TAIL, 2; |
341 | bmov SCB_NEXT2, REG0, 2; | 405 | bmov SCB_NEXT2, REG0, 2; |
342 | bmov WAITING_TID_TAIL, REG0, 2 ret; | 406 | bmov WAITING_TID_TAIL, REG0, 2 ret; |
343 | first_new_scb: | 407 | first_new_scb: |
408 | /* | ||
409 | * Whole list is empty, so the head of | ||
410 | * the list must be initialized too. | ||
411 | */ | ||
344 | bmov WAITING_TID_HEAD, REG0, 2; | 412 | bmov WAITING_TID_HEAD, REG0, 2; |
345 | bmov WAITING_TID_TAIL, REG0, 2 ret; | 413 | bmov WAITING_TID_TAIL, REG0, 2 ret; |
346 | END_CRITICAL; | 414 | END_CRITICAL; |
347 | 415 | ||
348 | scbdma_idle: | 416 | scbdma_idle: |
349 | /* | 417 | /* |
350 | * Give precedence to downloading new SCBs to execute | 418 | * Don't bother downloading new SCBs to execute |
351 | * unless select-outs are currently frozen. | 419 | * if select-outs are currently frozen or we have |
420 | * a MK_MESSAGE SCB waiting to enter the queue. | ||
352 | */ | 421 | */ |
353 | test SEQ_FLAGS2, SELECTOUT_QFROZEN jnz . + 2; | 422 | test SEQ_FLAGS2, SELECTOUT_QFROZEN|PENDING_MK_MESSAGE |
423 | jnz scbdma_no_new_scbs; | ||
354 | BEGIN_CRITICAL; | 424 | BEGIN_CRITICAL; |
355 | test QOFF_CTLSTA, NEW_SCB_AVAIL jnz fetch_new_scb; | 425 | test QOFF_CTLSTA, NEW_SCB_AVAIL jnz fetch_new_scb; |
426 | scbdma_no_new_scbs: | ||
356 | cmp COMPLETE_DMA_SCB_HEAD[1], SCB_LIST_NULL jne dma_complete_scb; | 427 | cmp COMPLETE_DMA_SCB_HEAD[1], SCB_LIST_NULL jne dma_complete_scb; |
357 | cmp COMPLETE_SCB_HEAD[1], SCB_LIST_NULL je return; | 428 | cmp COMPLETE_SCB_HEAD[1], SCB_LIST_NULL je return; |
358 | /* FALLTHROUGH */ | 429 | /* FALLTHROUGH */ |
@@ -671,27 +742,41 @@ curscb_ww_done: | |||
671 | } | 742 | } |
672 | 743 | ||
673 | /* | 744 | /* |
674 | * Requeue any SCBs not sent, to the tail of the waiting Q. | 745 | * The whole list made it. Clear our tail pointer to indicate |
746 | * that the per-target selection queue is now empty. | ||
675 | */ | 747 | */ |
676 | cmp SCB_NEXT[1], SCB_LIST_NULL je select_out_list_done; | 748 | cmp SCB_NEXT[1], SCB_LIST_NULL je select_out_clear_tail; |
677 | 749 | ||
678 | /* | 750 | /* |
751 | * Requeue any SCBs not sent, to the tail of the waiting Q. | ||
679 | * We know that neither the per-TID list nor the list of | 752 | * We know that neither the per-TID list nor the list of |
680 | * TIDs is empty. Use this knowledge to our advantage. | 753 | * TIDs is empty. Use this knowledge to our advantage and |
754 | * queue the remainder to the tail of the global execution | ||
755 | * queue. | ||
681 | */ | 756 | */ |
682 | bmov REG0, SCB_NEXT, 2; | 757 | bmov REG0, SCB_NEXT, 2; |
758 | select_out_queue_remainder: | ||
683 | bmov SCBPTR, WAITING_TID_TAIL, 2; | 759 | bmov SCBPTR, WAITING_TID_TAIL, 2; |
684 | bmov SCB_NEXT2, REG0, 2; | 760 | bmov SCB_NEXT2, REG0, 2; |
685 | bmov WAITING_TID_TAIL, REG0, 2; | 761 | bmov WAITING_TID_TAIL, REG0, 2; |
686 | jmp select_out_inc_tid_q; | 762 | jmp select_out_inc_tid_q; |
687 | 763 | ||
688 | select_out_list_done: | 764 | select_out_clear_tail: |
765 | /* | ||
766 | * Queue any pending MK_MESSAGE SCB for this target now | ||
767 | * that the queue is empty. | ||
768 | */ | ||
769 | test SEQ_FLAGS2, PENDING_MK_MESSAGE jz select_out_no_mk_message_scb; | ||
770 | mov A, MK_MESSAGE_SCSIID; | ||
771 | cmp SCB_SCSIID, A jne select_out_no_mk_message_scb; | ||
772 | and SEQ_FLAGS2, ~PENDING_MK_MESSAGE; | ||
773 | bmov REG0, MK_MESSAGE_SCB, 2; | ||
774 | jmp select_out_queue_remainder; | ||
775 | |||
776 | select_out_no_mk_message_scb: | ||
689 | /* | 777 | /* |
690 | * The whole list made it. Just clear our TID's tail pointer | 778 | * Clear this target's execution tail and increment the queue. |
691 | * unless we were queued independently due to our need to | ||
692 | * send a message. | ||
693 | */ | 779 | */ |
694 | test SCB_CONTROL, MK_MESSAGE jnz select_out_inc_tid_q; | ||
695 | shr DINDEX, 3, SCB_SCSIID; | 780 | shr DINDEX, 3, SCB_SCSIID; |
696 | or DINDEX, 1; /* Want only the second byte */ | 781 | or DINDEX, 1; /* Want only the second byte */ |
697 | mvi DINDEX[1], ((WAITING_SCB_TAILS) >> 8); | 782 | mvi DINDEX[1], ((WAITING_SCB_TAILS) >> 8); |
@@ -703,8 +788,8 @@ select_out_inc_tid_q: | |||
703 | mvi WAITING_TID_TAIL[1], SCB_LIST_NULL; | 788 | mvi WAITING_TID_TAIL[1], SCB_LIST_NULL; |
704 | bmov SCBPTR, CURRSCB, 2; | 789 | bmov SCBPTR, CURRSCB, 2; |
705 | mvi CLRSINT0, CLRSELDO; | 790 | mvi CLRSINT0, CLRSELDO; |
706 | test LQOSTAT2, LQOPHACHGOUTPKT jnz unexpected_nonpkt_phase; | 791 | test LQOSTAT2, LQOPHACHGOUTPKT jnz unexpected_nonpkt_mode_cleared; |
707 | test LQOSTAT1, LQOPHACHGINPKT jnz unexpected_nonpkt_phase; | 792 | test LQOSTAT1, LQOPHACHGINPKT jnz unexpected_nonpkt_mode_cleared; |
708 | 793 | ||
709 | /* | 794 | /* |
710 | * If this is a packetized connection, return to our | 795 | * If this is a packetized connection, return to our |
@@ -2127,6 +2212,18 @@ SET_DST_MODE M_DFF0; | |||
2127 | mvi DFFSXFRCTL, CLRCHN; | 2212 | mvi DFFSXFRCTL, CLRCHN; |
2128 | unexpected_nonpkt_mode_cleared: | 2213 | unexpected_nonpkt_mode_cleared: |
2129 | mvi CLRSINT2, CLRNONPACKREQ; | 2214 | mvi CLRSINT2, CLRNONPACKREQ; |
2215 | if ((ahd->bugs & AHD_BUSFREEREV_BUG) != 0) { | ||
2216 | /* | ||
2217 | * Test to ensure that the bus has not | ||
2218 | * already gone free prior to clearing | ||
2219 | * any stale busfree status. This avoids | ||
2220 | * a window whereby a busfree just after | ||
2221 | * a selection could be missed. | ||
2222 | */ | ||
2223 | test SCSISIGI, BSYI jz . + 2; | ||
2224 | mvi CLRSINT1,CLRBUSFREE; | ||
2225 | or SIMODE1, ENBUSFREE; | ||
2226 | } | ||
2130 | test SCSIPHASE, ~(MSG_IN_PHASE|MSG_OUT_PHASE) jnz illegal_phase; | 2227 | test SCSIPHASE, ~(MSG_IN_PHASE|MSG_OUT_PHASE) jnz illegal_phase; |
2131 | SET_SEQINTCODE(ENTERING_NONPACK) | 2228 | SET_SEQINTCODE(ENTERING_NONPACK) |
2132 | jmp ITloop; | 2229 | jmp ITloop; |
diff --git a/drivers/scsi/aic7xxx/aic79xx_core.c b/drivers/scsi/aic7xxx/aic79xx_core.c index db8f5ce99ee3..342f77966a5b 100644 --- a/drivers/scsi/aic7xxx/aic79xx_core.c +++ b/drivers/scsi/aic7xxx/aic79xx_core.c | |||
@@ -37,7 +37,7 @@ | |||
37 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 37 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
38 | * POSSIBILITY OF SUCH DAMAGES. | 38 | * POSSIBILITY OF SUCH DAMAGES. |
39 | * | 39 | * |
40 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.c#247 $ | 40 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.c#250 $ |
41 | */ | 41 | */ |
42 | 42 | ||
43 | #ifdef __linux__ | 43 | #ifdef __linux__ |
@@ -197,7 +197,8 @@ static int ahd_search_scb_list(struct ahd_softc *ahd, int target, | |||
197 | char channel, int lun, u_int tag, | 197 | char channel, int lun, u_int tag, |
198 | role_t role, uint32_t status, | 198 | role_t role, uint32_t status, |
199 | ahd_search_action action, | 199 | ahd_search_action action, |
200 | u_int *list_head, u_int tid); | 200 | u_int *list_head, u_int *list_tail, |
201 | u_int tid); | ||
201 | static void ahd_stitch_tid_list(struct ahd_softc *ahd, | 202 | static void ahd_stitch_tid_list(struct ahd_softc *ahd, |
202 | u_int tid_prev, u_int tid_cur, | 203 | u_int tid_prev, u_int tid_cur, |
203 | u_int tid_next); | 204 | u_int tid_next); |
@@ -1660,7 +1661,8 @@ ahd_handle_scsiint(struct ahd_softc *ahd, u_int intstat) | |||
1660 | * so just clear the error. | 1661 | * so just clear the error. |
1661 | */ | 1662 | */ |
1662 | ahd_outb(ahd, CLRLQIINT1, CLRLQICRCI_NLQ); | 1663 | ahd_outb(ahd, CLRLQIINT1, CLRLQICRCI_NLQ); |
1663 | } else if ((status & BUSFREE) != 0) { | 1664 | } else if ((status & BUSFREE) != 0 |
1665 | || (lqistat1 & LQOBUSFREE) != 0) { | ||
1664 | u_int lqostat1; | 1666 | u_int lqostat1; |
1665 | int restart; | 1667 | int restart; |
1666 | int clear_fifo; | 1668 | int clear_fifo; |
@@ -2025,10 +2027,6 @@ ahd_handle_pkt_busfree(struct ahd_softc *ahd, u_int busfreetime) | |||
2025 | u_int waiting_t; | 2027 | u_int waiting_t; |
2026 | u_int next; | 2028 | u_int next; |
2027 | 2029 | ||
2028 | if ((busfreetime & BUSFREE_LQO) == 0) | ||
2029 | printf("%s: Warning, BUSFREE time is 0x%x. " | ||
2030 | "Expected BUSFREE_LQO.\n", | ||
2031 | ahd_name(ahd), busfreetime); | ||
2032 | /* | 2030 | /* |
2033 | * The LQO manager detected an unexpected busfree | 2031 | * The LQO manager detected an unexpected busfree |
2034 | * either: | 2032 | * either: |
@@ -2251,8 +2249,14 @@ ahd_handle_nonpkt_busfree(struct ahd_softc *ahd) | |||
2251 | struct ahd_tmode_tstate *tstate; | 2249 | struct ahd_tmode_tstate *tstate; |
2252 | 2250 | ||
2253 | /* | 2251 | /* |
2254 | * PPR Rejected. Try non-ppr negotiation | 2252 | * PPR Rejected. |
2255 | * and retry command. | 2253 | * |
2254 | * If the previous negotiation was packetized, | ||
2255 | * this could be because the device has been | ||
2256 | * reset without our knowledge. Force our | ||
2257 | * current negotiation to async and retry the | ||
2258 | * negotiation. Otherwise retry the command | ||
2259 | * with non-ppr negotiation. | ||
2256 | */ | 2260 | */ |
2257 | #ifdef AHD_DEBUG | 2261 | #ifdef AHD_DEBUG |
2258 | if ((ahd_debug & AHD_SHOW_MESSAGES) != 0) | 2262 | if ((ahd_debug & AHD_SHOW_MESSAGES) != 0) |
@@ -2261,11 +2265,34 @@ ahd_handle_nonpkt_busfree(struct ahd_softc *ahd) | |||
2261 | tinfo = ahd_fetch_transinfo(ahd, devinfo.channel, | 2265 | tinfo = ahd_fetch_transinfo(ahd, devinfo.channel, |
2262 | devinfo.our_scsiid, | 2266 | devinfo.our_scsiid, |
2263 | devinfo.target, &tstate); | 2267 | devinfo.target, &tstate); |
2264 | tinfo->curr.transport_version = 2; | 2268 | if ((tinfo->curr.ppr_options & MSG_EXT_PPR_IU_REQ)!=0) { |
2265 | tinfo->goal.transport_version = 2; | 2269 | ahd_set_width(ahd, &devinfo, |
2266 | tinfo->goal.ppr_options = 0; | 2270 | MSG_EXT_WDTR_BUS_8_BIT, |
2267 | ahd_qinfifo_requeue_tail(ahd, scb); | 2271 | AHD_TRANS_CUR, |
2268 | printerror = 0; | 2272 | /*paused*/TRUE); |
2273 | ahd_set_syncrate(ahd, &devinfo, | ||
2274 | /*period*/0, /*offset*/0, | ||
2275 | /*ppr_options*/0, | ||
2276 | AHD_TRANS_CUR, | ||
2277 | /*paused*/TRUE); | ||
2278 | /* | ||
2279 | * The expect PPR busfree handler below | ||
2280 | * will effect the retry and necessary | ||
2281 | * abort. | ||
2282 | */ | ||
2283 | } else { | ||
2284 | tinfo->curr.transport_version = 2; | ||
2285 | tinfo->goal.transport_version = 2; | ||
2286 | tinfo->goal.ppr_options = 0; | ||
2287 | /* | ||
2288 | * Remove any SCBs in the waiting for selection | ||
2289 | * queue that may also be for this target so | ||
2290 | * that command ordering is preserved. | ||
2291 | */ | ||
2292 | ahd_freeze_devq(ahd, scb); | ||
2293 | ahd_qinfifo_requeue_tail(ahd, scb); | ||
2294 | printerror = 0; | ||
2295 | } | ||
2269 | } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_WDTR, FALSE) | 2296 | } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_WDTR, FALSE) |
2270 | && ppr_busfree == 0) { | 2297 | && ppr_busfree == 0) { |
2271 | /* | 2298 | /* |
@@ -2280,6 +2307,12 @@ ahd_handle_nonpkt_busfree(struct ahd_softc *ahd) | |||
2280 | MSG_EXT_WDTR_BUS_8_BIT, | 2307 | MSG_EXT_WDTR_BUS_8_BIT, |
2281 | AHD_TRANS_CUR|AHD_TRANS_GOAL, | 2308 | AHD_TRANS_CUR|AHD_TRANS_GOAL, |
2282 | /*paused*/TRUE); | 2309 | /*paused*/TRUE); |
2310 | /* | ||
2311 | * Remove any SCBs in the waiting for selection | ||
2312 | * queue that may also be for this target so that | ||
2313 | * command ordering is preserved. | ||
2314 | */ | ||
2315 | ahd_freeze_devq(ahd, scb); | ||
2283 | ahd_qinfifo_requeue_tail(ahd, scb); | 2316 | ahd_qinfifo_requeue_tail(ahd, scb); |
2284 | printerror = 0; | 2317 | printerror = 0; |
2285 | } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_SDTR, FALSE) | 2318 | } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_SDTR, FALSE) |
@@ -2297,6 +2330,12 @@ ahd_handle_nonpkt_busfree(struct ahd_softc *ahd) | |||
2297 | /*ppr_options*/0, | 2330 | /*ppr_options*/0, |
2298 | AHD_TRANS_CUR|AHD_TRANS_GOAL, | 2331 | AHD_TRANS_CUR|AHD_TRANS_GOAL, |
2299 | /*paused*/TRUE); | 2332 | /*paused*/TRUE); |
2333 | /* | ||
2334 | * Remove any SCBs in the waiting for selection | ||
2335 | * queue that may also be for this target so that | ||
2336 | * command ordering is preserved. | ||
2337 | */ | ||
2338 | ahd_freeze_devq(ahd, scb); | ||
2300 | ahd_qinfifo_requeue_tail(ahd, scb); | 2339 | ahd_qinfifo_requeue_tail(ahd, scb); |
2301 | printerror = 0; | 2340 | printerror = 0; |
2302 | } else if ((ahd->msg_flags & MSG_FLAG_EXPECT_IDE_BUSFREE) != 0 | 2341 | } else if ((ahd->msg_flags & MSG_FLAG_EXPECT_IDE_BUSFREE) != 0 |
@@ -2369,14 +2408,14 @@ ahd_handle_nonpkt_busfree(struct ahd_softc *ahd) | |||
2369 | */ | 2408 | */ |
2370 | printf("%s: ", ahd_name(ahd)); | 2409 | printf("%s: ", ahd_name(ahd)); |
2371 | } | 2410 | } |
2372 | if (lastphase != P_BUSFREE) | ||
2373 | ahd_force_renegotiation(ahd, &devinfo); | ||
2374 | printf("Unexpected busfree %s, %d SCBs aborted, " | 2411 | printf("Unexpected busfree %s, %d SCBs aborted, " |
2375 | "PRGMCNT == 0x%x\n", | 2412 | "PRGMCNT == 0x%x\n", |
2376 | ahd_lookup_phase_entry(lastphase)->phasemsg, | 2413 | ahd_lookup_phase_entry(lastphase)->phasemsg, |
2377 | aborted, | 2414 | aborted, |
2378 | ahd_inw(ahd, PRGMCNT)); | 2415 | ahd_inw(ahd, PRGMCNT)); |
2379 | ahd_dump_card_state(ahd); | 2416 | ahd_dump_card_state(ahd); |
2417 | if (lastphase != P_BUSFREE) | ||
2418 | ahd_force_renegotiation(ahd, &devinfo); | ||
2380 | } | 2419 | } |
2381 | /* Always restart the sequencer. */ | 2420 | /* Always restart the sequencer. */ |
2382 | return (1); | 2421 | return (1); |
@@ -3293,6 +3332,15 @@ ahd_update_neg_table(struct ahd_softc *ahd, struct ahd_devinfo *devinfo, | |||
3293 | con_opts |= WIDEXFER; | 3332 | con_opts |= WIDEXFER; |
3294 | 3333 | ||
3295 | /* | 3334 | /* |
3335 | * Slow down our CRC interval to be | ||
3336 | * compatible with packetized U320 devices | ||
3337 | * that can't handle a CRC at full speed | ||
3338 | */ | ||
3339 | if (ahd->features & AHD_AIC79XXB_SLOWCRC) { | ||
3340 | con_opts |= ENSLOWCRC; | ||
3341 | } | ||
3342 | |||
3343 | /* | ||
3296 | * During packetized transfers, the target will | 3344 | * During packetized transfers, the target will |
3297 | * give us the oportunity to send command packets | 3345 | * give us the oportunity to send command packets |
3298 | * without us asserting attention. | 3346 | * without us asserting attention. |
@@ -3315,7 +3363,6 @@ ahd_update_pending_scbs(struct ahd_softc *ahd) | |||
3315 | { | 3363 | { |
3316 | struct scb *pending_scb; | 3364 | struct scb *pending_scb; |
3317 | int pending_scb_count; | 3365 | int pending_scb_count; |
3318 | u_int scb_tag; | ||
3319 | int paused; | 3366 | int paused; |
3320 | u_int saved_scbptr; | 3367 | u_int saved_scbptr; |
3321 | ahd_mode_state saved_modes; | 3368 | ahd_mode_state saved_modes; |
@@ -3333,7 +3380,6 @@ ahd_update_pending_scbs(struct ahd_softc *ahd) | |||
3333 | pending_scb_count = 0; | 3380 | pending_scb_count = 0; |
3334 | LIST_FOREACH(pending_scb, &ahd->pending_scbs, pending_links) { | 3381 | LIST_FOREACH(pending_scb, &ahd->pending_scbs, pending_links) { |
3335 | struct ahd_devinfo devinfo; | 3382 | struct ahd_devinfo devinfo; |
3336 | struct hardware_scb *pending_hscb; | ||
3337 | struct ahd_initiator_tinfo *tinfo; | 3383 | struct ahd_initiator_tinfo *tinfo; |
3338 | struct ahd_tmode_tstate *tstate; | 3384 | struct ahd_tmode_tstate *tstate; |
3339 | 3385 | ||
@@ -3341,11 +3387,10 @@ ahd_update_pending_scbs(struct ahd_softc *ahd) | |||
3341 | tinfo = ahd_fetch_transinfo(ahd, devinfo.channel, | 3387 | tinfo = ahd_fetch_transinfo(ahd, devinfo.channel, |
3342 | devinfo.our_scsiid, | 3388 | devinfo.our_scsiid, |
3343 | devinfo.target, &tstate); | 3389 | devinfo.target, &tstate); |
3344 | pending_hscb = pending_scb->hscb; | ||
3345 | if ((tstate->auto_negotiate & devinfo.target_mask) == 0 | 3390 | if ((tstate->auto_negotiate & devinfo.target_mask) == 0 |
3346 | && (pending_scb->flags & SCB_AUTO_NEGOTIATE) != 0) { | 3391 | && (pending_scb->flags & SCB_AUTO_NEGOTIATE) != 0) { |
3347 | pending_scb->flags &= ~SCB_AUTO_NEGOTIATE; | 3392 | pending_scb->flags &= ~SCB_AUTO_NEGOTIATE; |
3348 | pending_hscb->control &= ~MK_MESSAGE; | 3393 | pending_scb->hscb->control &= ~MK_MESSAGE; |
3349 | } | 3394 | } |
3350 | ahd_sync_scb(ahd, pending_scb, | 3395 | ahd_sync_scb(ahd, pending_scb, |
3351 | BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE); | 3396 | BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE); |
@@ -3377,18 +3422,15 @@ ahd_update_pending_scbs(struct ahd_softc *ahd) | |||
3377 | ahd_outb(ahd, SCSISEQ0, ahd_inb(ahd, SCSISEQ0) & ~ENSELO); | 3422 | ahd_outb(ahd, SCSISEQ0, ahd_inb(ahd, SCSISEQ0) & ~ENSELO); |
3378 | saved_scbptr = ahd_get_scbptr(ahd); | 3423 | saved_scbptr = ahd_get_scbptr(ahd); |
3379 | /* Ensure that the hscbs down on the card match the new information */ | 3424 | /* Ensure that the hscbs down on the card match the new information */ |
3380 | for (scb_tag = 0; scb_tag < ahd->scb_data.maxhscbs; scb_tag++) { | 3425 | LIST_FOREACH(pending_scb, &ahd->pending_scbs, pending_links) { |
3381 | struct hardware_scb *pending_hscb; | 3426 | u_int scb_tag; |
3382 | u_int control; | 3427 | u_int control; |
3383 | 3428 | ||
3384 | pending_scb = ahd_lookup_scb(ahd, scb_tag); | 3429 | scb_tag = SCB_GET_TAG(pending_scb); |
3385 | if (pending_scb == NULL) | ||
3386 | continue; | ||
3387 | ahd_set_scbptr(ahd, scb_tag); | 3430 | ahd_set_scbptr(ahd, scb_tag); |
3388 | pending_hscb = pending_scb->hscb; | ||
3389 | control = ahd_inb_scbram(ahd, SCB_CONTROL); | 3431 | control = ahd_inb_scbram(ahd, SCB_CONTROL); |
3390 | control &= ~MK_MESSAGE; | 3432 | control &= ~MK_MESSAGE; |
3391 | control |= pending_hscb->control & MK_MESSAGE; | 3433 | control |= pending_scb->hscb->control & MK_MESSAGE; |
3392 | ahd_outb(ahd, SCB_CONTROL, control); | 3434 | ahd_outb(ahd, SCB_CONTROL, control); |
3393 | } | 3435 | } |
3394 | ahd_set_scbptr(ahd, saved_scbptr); | 3436 | ahd_set_scbptr(ahd, saved_scbptr); |
@@ -6500,13 +6542,14 @@ ahd_chip_init(struct ahd_softc *ahd) | |||
6500 | | ENLQIOVERI_LQ|ENLQIOVERI_NLQ); | 6542 | | ENLQIOVERI_LQ|ENLQIOVERI_NLQ); |
6501 | ahd_outb(ahd, LQOMODE0, ENLQOATNLQ|ENLQOATNPKT|ENLQOTCRC); | 6543 | ahd_outb(ahd, LQOMODE0, ENLQOATNLQ|ENLQOATNPKT|ENLQOTCRC); |
6502 | /* | 6544 | /* |
6503 | * An interrupt from LQOBUSFREE is made redundant by the | 6545 | * We choose to have the sequencer catch LQOPHCHGINPKT errors |
6504 | * BUSFREE interrupt. We choose to have the sequencer catch | 6546 | * manually for the command phase at the start of a packetized |
6505 | * LQOPHCHGINPKT errors manually for the command phase at the | 6547 | * selection case. ENLQOBUSFREE should be made redundant by |
6506 | * start of a packetized selection case. | 6548 | * the BUSFREE interrupt, but it seems that some LQOBUSFREE |
6507 | ahd_outb(ahd, LQOMODE1, ENLQOBUSFREE|ENLQOPHACHGINPKT); | 6549 | * events fail to assert the BUSFREE interrupt so we must |
6550 | * also enable LQOBUSFREE interrupts. | ||
6508 | */ | 6551 | */ |
6509 | ahd_outb(ahd, LQOMODE1, 0); | 6552 | ahd_outb(ahd, LQOMODE1, ENLQOBUSFREE); |
6510 | 6553 | ||
6511 | /* | 6554 | /* |
6512 | * Setup sequencer interrupt handlers. | 6555 | * Setup sequencer interrupt handlers. |
@@ -6617,6 +6660,8 @@ ahd_chip_init(struct ahd_softc *ahd) | |||
6617 | /* We don't have any waiting selections */ | 6660 | /* We don't have any waiting selections */ |
6618 | ahd_outw(ahd, WAITING_TID_HEAD, SCB_LIST_NULL); | 6661 | ahd_outw(ahd, WAITING_TID_HEAD, SCB_LIST_NULL); |
6619 | ahd_outw(ahd, WAITING_TID_TAIL, SCB_LIST_NULL); | 6662 | ahd_outw(ahd, WAITING_TID_TAIL, SCB_LIST_NULL); |
6663 | ahd_outw(ahd, MK_MESSAGE_SCB, SCB_LIST_NULL); | ||
6664 | ahd_outw(ahd, MK_MESSAGE_SCSIID, 0xFF); | ||
6620 | for (i = 0; i < AHD_NUM_TARGETS; i++) | 6665 | for (i = 0; i < AHD_NUM_TARGETS; i++) |
6621 | ahd_outw(ahd, WAITING_SCB_TAILS + (2 * i), SCB_LIST_NULL); | 6666 | ahd_outw(ahd, WAITING_SCB_TAILS + (2 * i), SCB_LIST_NULL); |
6622 | 6667 | ||
@@ -6704,6 +6749,18 @@ ahd_chip_init(struct ahd_softc *ahd) | |||
6704 | 6749 | ||
6705 | ahd_loadseq(ahd); | 6750 | ahd_loadseq(ahd); |
6706 | ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI); | 6751 | ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI); |
6752 | |||
6753 | if (ahd->features & AHD_AIC79XXB_SLOWCRC) { | ||
6754 | u_int negodat3 = ahd_inb(ahd, NEGCONOPTS); | ||
6755 | |||
6756 | negodat3 |= ENSLOWCRC; | ||
6757 | ahd_outb(ahd, NEGCONOPTS, negodat3); | ||
6758 | negodat3 = ahd_inb(ahd, NEGCONOPTS); | ||
6759 | if (!(negodat3 & ENSLOWCRC)) | ||
6760 | printf("aic79xx: failed to set the SLOWCRC bit\n"); | ||
6761 | else | ||
6762 | printf("aic79xx: SLOWCRC bit set\n"); | ||
6763 | } | ||
6707 | } | 6764 | } |
6708 | 6765 | ||
6709 | /* | 6766 | /* |
@@ -7260,12 +7317,28 @@ ahd_reset_cmds_pending(struct ahd_softc *ahd) | |||
7260 | ahd->flags &= ~AHD_UPDATE_PEND_CMDS; | 7317 | ahd->flags &= ~AHD_UPDATE_PEND_CMDS; |
7261 | } | 7318 | } |
7262 | 7319 | ||
7320 | void | ||
7321 | ahd_done_with_status(struct ahd_softc *ahd, struct scb *scb, uint32_t status) | ||
7322 | { | ||
7323 | cam_status ostat; | ||
7324 | cam_status cstat; | ||
7325 | |||
7326 | ostat = ahd_get_transaction_status(scb); | ||
7327 | if (ostat == CAM_REQ_INPROG) | ||
7328 | ahd_set_transaction_status(scb, status); | ||
7329 | cstat = ahd_get_transaction_status(scb); | ||
7330 | if (cstat != CAM_REQ_CMP) | ||
7331 | ahd_freeze_scb(scb); | ||
7332 | ahd_done(ahd, scb); | ||
7333 | } | ||
7334 | |||
7263 | int | 7335 | int |
7264 | ahd_search_qinfifo(struct ahd_softc *ahd, int target, char channel, | 7336 | ahd_search_qinfifo(struct ahd_softc *ahd, int target, char channel, |
7265 | int lun, u_int tag, role_t role, uint32_t status, | 7337 | int lun, u_int tag, role_t role, uint32_t status, |
7266 | ahd_search_action action) | 7338 | ahd_search_action action) |
7267 | { | 7339 | { |
7268 | struct scb *scb; | 7340 | struct scb *scb; |
7341 | struct scb *mk_msg_scb; | ||
7269 | struct scb *prev_scb; | 7342 | struct scb *prev_scb; |
7270 | ahd_mode_state saved_modes; | 7343 | ahd_mode_state saved_modes; |
7271 | u_int qinstart; | 7344 | u_int qinstart; |
@@ -7274,6 +7347,7 @@ ahd_search_qinfifo(struct ahd_softc *ahd, int target, char channel, | |||
7274 | u_int tid_next; | 7347 | u_int tid_next; |
7275 | u_int tid_prev; | 7348 | u_int tid_prev; |
7276 | u_int scbid; | 7349 | u_int scbid; |
7350 | u_int seq_flags2; | ||
7277 | u_int savedscbptr; | 7351 | u_int savedscbptr; |
7278 | uint32_t busaddr; | 7352 | uint32_t busaddr; |
7279 | int found; | 7353 | int found; |
@@ -7329,23 +7403,10 @@ ahd_search_qinfifo(struct ahd_softc *ahd, int target, char channel, | |||
7329 | found++; | 7403 | found++; |
7330 | switch (action) { | 7404 | switch (action) { |
7331 | case SEARCH_COMPLETE: | 7405 | case SEARCH_COMPLETE: |
7332 | { | ||
7333 | cam_status ostat; | ||
7334 | cam_status cstat; | ||
7335 | |||
7336 | ostat = ahd_get_transaction_status(scb); | ||
7337 | if (ostat == CAM_REQ_INPROG) | ||
7338 | ahd_set_transaction_status(scb, | ||
7339 | status); | ||
7340 | cstat = ahd_get_transaction_status(scb); | ||
7341 | if (cstat != CAM_REQ_CMP) | ||
7342 | ahd_freeze_scb(scb); | ||
7343 | if ((scb->flags & SCB_ACTIVE) == 0) | 7406 | if ((scb->flags & SCB_ACTIVE) == 0) |
7344 | printf("Inactive SCB in qinfifo\n"); | 7407 | printf("Inactive SCB in qinfifo\n"); |
7345 | ahd_done(ahd, scb); | 7408 | ahd_done_with_status(ahd, scb, status); |
7346 | |||
7347 | /* FALLTHROUGH */ | 7409 | /* FALLTHROUGH */ |
7348 | } | ||
7349 | case SEARCH_REMOVE: | 7410 | case SEARCH_REMOVE: |
7350 | break; | 7411 | break; |
7351 | case SEARCH_PRINT: | 7412 | case SEARCH_PRINT: |
@@ -7375,21 +7436,24 @@ ahd_search_qinfifo(struct ahd_softc *ahd, int target, char channel, | |||
7375 | * looking for matches. | 7436 | * looking for matches. |
7376 | */ | 7437 | */ |
7377 | ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI); | 7438 | ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI); |
7439 | seq_flags2 = ahd_inb(ahd, SEQ_FLAGS2); | ||
7440 | if ((seq_flags2 & PENDING_MK_MESSAGE) != 0) { | ||
7441 | scbid = ahd_inw(ahd, MK_MESSAGE_SCB); | ||
7442 | mk_msg_scb = ahd_lookup_scb(ahd, scbid); | ||
7443 | } else | ||
7444 | mk_msg_scb = NULL; | ||
7378 | savedscbptr = ahd_get_scbptr(ahd); | 7445 | savedscbptr = ahd_get_scbptr(ahd); |
7379 | tid_next = ahd_inw(ahd, WAITING_TID_HEAD); | 7446 | tid_next = ahd_inw(ahd, WAITING_TID_HEAD); |
7380 | tid_prev = SCB_LIST_NULL; | 7447 | tid_prev = SCB_LIST_NULL; |
7381 | targets = 0; | 7448 | targets = 0; |
7382 | for (scbid = tid_next; !SCBID_IS_NULL(scbid); scbid = tid_next) { | 7449 | for (scbid = tid_next; !SCBID_IS_NULL(scbid); scbid = tid_next) { |
7383 | u_int tid_head; | 7450 | u_int tid_head; |
7451 | u_int tid_tail; | ||
7384 | 7452 | ||
7385 | /* | ||
7386 | * We limit based on the number of SCBs since | ||
7387 | * MK_MESSAGE SCBs are not in the per-tid lists. | ||
7388 | */ | ||
7389 | targets++; | 7453 | targets++; |
7390 | if (targets > AHD_SCB_MAX) { | 7454 | if (targets > AHD_NUM_TARGETS) |
7391 | panic("TID LIST LOOP"); | 7455 | panic("TID LIST LOOP"); |
7392 | } | 7456 | |
7393 | if (scbid >= ahd->scb_data.numscbs) { | 7457 | if (scbid >= ahd->scb_data.numscbs) { |
7394 | printf("%s: Waiting TID List inconsistency. " | 7458 | printf("%s: Waiting TID List inconsistency. " |
7395 | "SCB index == 0x%x, yet numscbs == 0x%x.", | 7459 | "SCB index == 0x%x, yet numscbs == 0x%x.", |
@@ -7419,8 +7483,71 @@ ahd_search_qinfifo(struct ahd_softc *ahd, int target, char channel, | |||
7419 | tid_head = scbid; | 7483 | tid_head = scbid; |
7420 | found += ahd_search_scb_list(ahd, target, channel, | 7484 | found += ahd_search_scb_list(ahd, target, channel, |
7421 | lun, tag, role, status, | 7485 | lun, tag, role, status, |
7422 | action, &tid_head, | 7486 | action, &tid_head, &tid_tail, |
7423 | SCB_GET_TARGET(ahd, scb)); | 7487 | SCB_GET_TARGET(ahd, scb)); |
7488 | /* | ||
7489 | * Check any MK_MESSAGE SCB that is still waiting to | ||
7490 | * enter this target's waiting for selection queue. | ||
7491 | */ | ||
7492 | if (mk_msg_scb != NULL | ||
7493 | && ahd_match_scb(ahd, mk_msg_scb, target, channel, | ||
7494 | lun, tag, role)) { | ||
7495 | |||
7496 | /* | ||
7497 | * We found an scb that needs to be acted on. | ||
7498 | */ | ||
7499 | found++; | ||
7500 | switch (action) { | ||
7501 | case SEARCH_COMPLETE: | ||
7502 | if ((mk_msg_scb->flags & SCB_ACTIVE) == 0) | ||
7503 | printf("Inactive SCB pending MK_MSG\n"); | ||
7504 | ahd_done_with_status(ahd, mk_msg_scb, status); | ||
7505 | /* FALLTHROUGH */ | ||
7506 | case SEARCH_REMOVE: | ||
7507 | { | ||
7508 | u_int tail_offset; | ||
7509 | |||
7510 | printf("Removing MK_MSG scb\n"); | ||
7511 | |||
7512 | /* | ||
7513 | * Reset our tail to the tail of the | ||
7514 | * main per-target list. | ||
7515 | */ | ||
7516 | tail_offset = WAITING_SCB_TAILS | ||
7517 | + (2 * SCB_GET_TARGET(ahd, mk_msg_scb)); | ||
7518 | ahd_outw(ahd, tail_offset, tid_tail); | ||
7519 | |||
7520 | seq_flags2 &= ~PENDING_MK_MESSAGE; | ||
7521 | ahd_outb(ahd, SEQ_FLAGS2, seq_flags2); | ||
7522 | ahd_outw(ahd, CMDS_PENDING, | ||
7523 | ahd_inw(ahd, CMDS_PENDING)-1); | ||
7524 | mk_msg_scb = NULL; | ||
7525 | break; | ||
7526 | } | ||
7527 | case SEARCH_PRINT: | ||
7528 | printf(" 0x%x", SCB_GET_TAG(scb)); | ||
7529 | /* FALLTHROUGH */ | ||
7530 | case SEARCH_COUNT: | ||
7531 | break; | ||
7532 | } | ||
7533 | } | ||
7534 | |||
7535 | if (mk_msg_scb != NULL | ||
7536 | && SCBID_IS_NULL(tid_head) | ||
7537 | && ahd_match_scb(ahd, scb, target, channel, CAM_LUN_WILDCARD, | ||
7538 | SCB_LIST_NULL, ROLE_UNKNOWN)) { | ||
7539 | |||
7540 | /* | ||
7541 | * When removing the last SCB for a target | ||
7542 | * queue with a pending MK_MESSAGE scb, we | ||
7543 | * must queue the MK_MESSAGE scb. | ||
7544 | */ | ||
7545 | printf("Queueing mk_msg_scb\n"); | ||
7546 | tid_head = ahd_inw(ahd, MK_MESSAGE_SCB); | ||
7547 | seq_flags2 &= ~PENDING_MK_MESSAGE; | ||
7548 | ahd_outb(ahd, SEQ_FLAGS2, seq_flags2); | ||
7549 | mk_msg_scb = NULL; | ||
7550 | } | ||
7424 | if (tid_head != scbid) | 7551 | if (tid_head != scbid) |
7425 | ahd_stitch_tid_list(ahd, tid_prev, tid_head, tid_next); | 7552 | ahd_stitch_tid_list(ahd, tid_prev, tid_head, tid_next); |
7426 | if (!SCBID_IS_NULL(tid_head)) | 7553 | if (!SCBID_IS_NULL(tid_head)) |
@@ -7428,6 +7555,8 @@ ahd_search_qinfifo(struct ahd_softc *ahd, int target, char channel, | |||
7428 | if (action == SEARCH_PRINT) | 7555 | if (action == SEARCH_PRINT) |
7429 | printf(")\n"); | 7556 | printf(")\n"); |
7430 | } | 7557 | } |
7558 | |||
7559 | /* Restore saved state. */ | ||
7431 | ahd_set_scbptr(ahd, savedscbptr); | 7560 | ahd_set_scbptr(ahd, savedscbptr); |
7432 | ahd_restore_modes(ahd, saved_modes); | 7561 | ahd_restore_modes(ahd, saved_modes); |
7433 | return (found); | 7562 | return (found); |
@@ -7436,7 +7565,8 @@ ahd_search_qinfifo(struct ahd_softc *ahd, int target, char channel, | |||
7436 | static int | 7565 | static int |
7437 | ahd_search_scb_list(struct ahd_softc *ahd, int target, char channel, | 7566 | ahd_search_scb_list(struct ahd_softc *ahd, int target, char channel, |
7438 | int lun, u_int tag, role_t role, uint32_t status, | 7567 | int lun, u_int tag, role_t role, uint32_t status, |
7439 | ahd_search_action action, u_int *list_head, u_int tid) | 7568 | ahd_search_action action, u_int *list_head, |
7569 | u_int *list_tail, u_int tid) | ||
7440 | { | 7570 | { |
7441 | struct scb *scb; | 7571 | struct scb *scb; |
7442 | u_int scbid; | 7572 | u_int scbid; |
@@ -7448,6 +7578,7 @@ ahd_search_scb_list(struct ahd_softc *ahd, int target, char channel, | |||
7448 | found = 0; | 7578 | found = 0; |
7449 | prev = SCB_LIST_NULL; | 7579 | prev = SCB_LIST_NULL; |
7450 | next = *list_head; | 7580 | next = *list_head; |
7581 | *list_tail = SCB_LIST_NULL; | ||
7451 | for (scbid = next; !SCBID_IS_NULL(scbid); scbid = next) { | 7582 | for (scbid = next; !SCBID_IS_NULL(scbid); scbid = next) { |
7452 | if (scbid >= ahd->scb_data.numscbs) { | 7583 | if (scbid >= ahd->scb_data.numscbs) { |
7453 | printf("%s:SCB List inconsistency. " | 7584 | printf("%s:SCB List inconsistency. " |
@@ -7463,6 +7594,7 @@ ahd_search_scb_list(struct ahd_softc *ahd, int target, char channel, | |||
7463 | panic("Waiting List traversal\n"); | 7594 | panic("Waiting List traversal\n"); |
7464 | } | 7595 | } |
7465 | ahd_set_scbptr(ahd, scbid); | 7596 | ahd_set_scbptr(ahd, scbid); |
7597 | *list_tail = scbid; | ||
7466 | next = ahd_inw_scbram(ahd, SCB_NEXT); | 7598 | next = ahd_inw_scbram(ahd, SCB_NEXT); |
7467 | if (ahd_match_scb(ahd, scb, target, channel, | 7599 | if (ahd_match_scb(ahd, scb, target, channel, |
7468 | lun, SCB_LIST_NULL, role) == 0) { | 7600 | lun, SCB_LIST_NULL, role) == 0) { |
@@ -7472,24 +7604,14 @@ ahd_search_scb_list(struct ahd_softc *ahd, int target, char channel, | |||
7472 | found++; | 7604 | found++; |
7473 | switch (action) { | 7605 | switch (action) { |
7474 | case SEARCH_COMPLETE: | 7606 | case SEARCH_COMPLETE: |
7475 | { | ||
7476 | cam_status ostat; | ||
7477 | cam_status cstat; | ||
7478 | |||
7479 | ostat = ahd_get_transaction_status(scb); | ||
7480 | if (ostat == CAM_REQ_INPROG) | ||
7481 | ahd_set_transaction_status(scb, status); | ||
7482 | cstat = ahd_get_transaction_status(scb); | ||
7483 | if (cstat != CAM_REQ_CMP) | ||
7484 | ahd_freeze_scb(scb); | ||
7485 | if ((scb->flags & SCB_ACTIVE) == 0) | 7607 | if ((scb->flags & SCB_ACTIVE) == 0) |
7486 | printf("Inactive SCB in Waiting List\n"); | 7608 | printf("Inactive SCB in Waiting List\n"); |
7487 | ahd_done(ahd, scb); | 7609 | ahd_done_with_status(ahd, scb, status); |
7488 | /* FALLTHROUGH */ | 7610 | /* FALLTHROUGH */ |
7489 | } | ||
7490 | case SEARCH_REMOVE: | 7611 | case SEARCH_REMOVE: |
7491 | ahd_rem_wscb(ahd, scbid, prev, next, tid); | 7612 | ahd_rem_wscb(ahd, scbid, prev, next, tid); |
7492 | if (prev == SCB_LIST_NULL) | 7613 | *list_tail = prev; |
7614 | if (SCBID_IS_NULL(prev)) | ||
7493 | *list_head = next; | 7615 | *list_head = next; |
7494 | break; | 7616 | break; |
7495 | case SEARCH_PRINT: | 7617 | case SEARCH_PRINT: |
@@ -7558,14 +7680,17 @@ ahd_rem_wscb(struct ahd_softc *ahd, u_int scbid, | |||
7558 | } | 7680 | } |
7559 | 7681 | ||
7560 | /* | 7682 | /* |
7561 | * SCBs that had MK_MESSAGE set in them will not | 7683 | * SCBs that have MK_MESSAGE set in them may |
7562 | * be queued to the per-target lists, so don't | 7684 | * cause the tail pointer to be updated without |
7563 | * blindly clear the tail pointer. | 7685 | * setting the next pointer of the previous tail. |
7686 | * Only clear the tail if the removed SCB was | ||
7687 | * the tail. | ||
7564 | */ | 7688 | */ |
7565 | tail_offset = WAITING_SCB_TAILS + (2 * tid); | 7689 | tail_offset = WAITING_SCB_TAILS + (2 * tid); |
7566 | if (SCBID_IS_NULL(next) | 7690 | if (SCBID_IS_NULL(next) |
7567 | && ahd_inw(ahd, tail_offset) == scbid) | 7691 | && ahd_inw(ahd, tail_offset) == scbid) |
7568 | ahd_outw(ahd, tail_offset, prev); | 7692 | ahd_outw(ahd, tail_offset, prev); |
7693 | |||
7569 | ahd_add_scb_to_free_list(ahd, scbid); | 7694 | ahd_add_scb_to_free_list(ahd, scbid); |
7570 | return (next); | 7695 | return (next); |
7571 | } | 7696 | } |
@@ -8148,11 +8273,6 @@ ahd_handle_scsi_status(struct ahd_softc *ahd, struct scb *scb) | |||
8148 | ahd_setup_data_scb(ahd, scb); | 8273 | ahd_setup_data_scb(ahd, scb); |
8149 | scb->flags |= SCB_SENSE; | 8274 | scb->flags |= SCB_SENSE; |
8150 | ahd_queue_scb(ahd, scb); | 8275 | ahd_queue_scb(ahd, scb); |
8151 | /* | ||
8152 | * Ensure we have enough time to actually | ||
8153 | * retrieve the sense. | ||
8154 | */ | ||
8155 | ahd_scb_timer_reset(scb, 5 * 1000000); | ||
8156 | break; | 8276 | break; |
8157 | } | 8277 | } |
8158 | case SCSI_STATUS_OK: | 8278 | case SCSI_STATUS_OK: |
@@ -8793,6 +8913,9 @@ ahd_dump_card_state(struct ahd_softc *ahd) | |||
8793 | * Mode independent registers. | 8913 | * Mode independent registers. |
8794 | */ | 8914 | */ |
8795 | cur_col = 0; | 8915 | cur_col = 0; |
8916 | ahd_intstat_print(ahd_inb(ahd, INTSTAT), &cur_col, 50); | ||
8917 | ahd_seloid_print(ahd_inb(ahd, SELOID), &cur_col, 50); | ||
8918 | ahd_selid_print(ahd_inb(ahd, SELID), &cur_col, 50); | ||
8796 | ahd_hs_mailbox_print(ahd_inb(ahd, LOCAL_HS_MAILBOX), &cur_col, 50); | 8919 | ahd_hs_mailbox_print(ahd_inb(ahd, LOCAL_HS_MAILBOX), &cur_col, 50); |
8797 | ahd_intctl_print(ahd_inb(ahd, INTCTL), &cur_col, 50); | 8920 | ahd_intctl_print(ahd_inb(ahd, INTCTL), &cur_col, 50); |
8798 | ahd_seqintstat_print(ahd_inb(ahd, SEQINTSTAT), &cur_col, 50); | 8921 | ahd_seqintstat_print(ahd_inb(ahd, SEQINTSTAT), &cur_col, 50); |
@@ -8808,6 +8931,12 @@ ahd_dump_card_state(struct ahd_softc *ahd) | |||
8808 | ahd_seqintctl_print(ahd_inb(ahd, SEQINTCTL), &cur_col, 50); | 8931 | ahd_seqintctl_print(ahd_inb(ahd, SEQINTCTL), &cur_col, 50); |
8809 | ahd_seq_flags_print(ahd_inb(ahd, SEQ_FLAGS), &cur_col, 50); | 8932 | ahd_seq_flags_print(ahd_inb(ahd, SEQ_FLAGS), &cur_col, 50); |
8810 | ahd_seq_flags2_print(ahd_inb(ahd, SEQ_FLAGS2), &cur_col, 50); | 8933 | ahd_seq_flags2_print(ahd_inb(ahd, SEQ_FLAGS2), &cur_col, 50); |
8934 | ahd_qfreeze_count_print(ahd_inw(ahd, QFREEZE_COUNT), &cur_col, 50); | ||
8935 | ahd_kernel_qfreeze_count_print(ahd_inw(ahd, KERNEL_QFREEZE_COUNT), | ||
8936 | &cur_col, 50); | ||
8937 | ahd_mk_message_scb_print(ahd_inw(ahd, MK_MESSAGE_SCB), &cur_col, 50); | ||
8938 | ahd_mk_message_scsiid_print(ahd_inb(ahd, MK_MESSAGE_SCSIID), | ||
8939 | &cur_col, 50); | ||
8811 | ahd_sstat0_print(ahd_inb(ahd, SSTAT0), &cur_col, 50); | 8940 | ahd_sstat0_print(ahd_inb(ahd, SSTAT0), &cur_col, 50); |
8812 | ahd_sstat1_print(ahd_inb(ahd, SSTAT1), &cur_col, 50); | 8941 | ahd_sstat1_print(ahd_inb(ahd, SSTAT1), &cur_col, 50); |
8813 | ahd_sstat2_print(ahd_inb(ahd, SSTAT2), &cur_col, 50); | 8942 | ahd_sstat2_print(ahd_inb(ahd, SSTAT2), &cur_col, 50); |
@@ -8915,7 +9044,7 @@ ahd_dump_card_state(struct ahd_softc *ahd) | |||
8915 | 9044 | ||
8916 | ahd_set_modes(ahd, AHD_MODE_DFF0 + i, AHD_MODE_DFF0 + i); | 9045 | ahd_set_modes(ahd, AHD_MODE_DFF0 + i, AHD_MODE_DFF0 + i); |
8917 | fifo_scbptr = ahd_get_scbptr(ahd); | 9046 | fifo_scbptr = ahd_get_scbptr(ahd); |
8918 | printf("\n%s: FIFO%d %s, LONGJMP == 0x%x, SCB 0x%x\n", | 9047 | printf("\n\n%s: FIFO%d %s, LONGJMP == 0x%x, SCB 0x%x\n", |
8919 | ahd_name(ahd), i, | 9048 | ahd_name(ahd), i, |
8920 | (dffstat & (FIFO0FREE << i)) ? "Free" : "Active", | 9049 | (dffstat & (FIFO0FREE << i)) ? "Free" : "Active", |
8921 | ahd_inw(ahd, LONGJMP_ADDR), fifo_scbptr); | 9050 | ahd_inw(ahd, LONGJMP_ADDR), fifo_scbptr); |
@@ -8970,6 +9099,9 @@ ahd_dump_card_state(struct ahd_softc *ahd) | |||
8970 | printf("%s: OS_SPACE_CNT = 0x%x MAXCMDCNT = 0x%x\n", | 9099 | printf("%s: OS_SPACE_CNT = 0x%x MAXCMDCNT = 0x%x\n", |
8971 | ahd_name(ahd), ahd_inb(ahd, OS_SPACE_CNT), | 9100 | ahd_name(ahd), ahd_inb(ahd, OS_SPACE_CNT), |
8972 | ahd_inb(ahd, MAXCMDCNT)); | 9101 | ahd_inb(ahd, MAXCMDCNT)); |
9102 | printf("%s: SAVED_SCSIID = 0x%x SAVED_LUN = 0x%x\n", | ||
9103 | ahd_name(ahd), ahd_inb(ahd, SAVED_SCSIID), | ||
9104 | ahd_inb(ahd, SAVED_LUN)); | ||
8973 | ahd_simode0_print(ahd_inb(ahd, SIMODE0), &cur_col, 50); | 9105 | ahd_simode0_print(ahd_inb(ahd, SIMODE0), &cur_col, 50); |
8974 | printf("\n"); | 9106 | printf("\n"); |
8975 | ahd_set_modes(ahd, AHD_MODE_CCHAN, AHD_MODE_CCHAN); | 9107 | ahd_set_modes(ahd, AHD_MODE_CCHAN, AHD_MODE_CCHAN); |
diff --git a/drivers/scsi/aic7xxx/aic79xx_inline.h b/drivers/scsi/aic7xxx/aic79xx_inline.h index 91c4f7f484b1..8ad3ce945b9e 100644 --- a/drivers/scsi/aic7xxx/aic79xx_inline.h +++ b/drivers/scsi/aic7xxx/aic79xx_inline.h | |||
@@ -37,7 +37,7 @@ | |||
37 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 37 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
38 | * POSSIBILITY OF SUCH DAMAGES. | 38 | * POSSIBILITY OF SUCH DAMAGES. |
39 | * | 39 | * |
40 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx_inline.h#58 $ | 40 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx_inline.h#59 $ |
41 | * | 41 | * |
42 | * $FreeBSD$ | 42 | * $FreeBSD$ |
43 | */ | 43 | */ |
@@ -804,9 +804,10 @@ ahd_queue_scb(struct ahd_softc *ahd, struct scb *scb) | |||
804 | uint64_t host_dataptr; | 804 | uint64_t host_dataptr; |
805 | 805 | ||
806 | host_dataptr = ahd_le64toh(scb->hscb->dataptr); | 806 | host_dataptr = ahd_le64toh(scb->hscb->dataptr); |
807 | printf("%s: Queueing SCB 0x%x bus addr 0x%x - 0x%x%x/0x%x\n", | 807 | printf("%s: Queueing SCB %d:0x%x bus addr 0x%x - 0x%x%x/0x%x\n", |
808 | ahd_name(ahd), | 808 | ahd_name(ahd), |
809 | SCB_GET_TAG(scb), ahd_le32toh(scb->hscb->hscb_busaddr), | 809 | SCB_GET_TAG(scb), scb->hscb->scsiid, |
810 | ahd_le32toh(scb->hscb->hscb_busaddr), | ||
810 | (u_int)((host_dataptr >> 32) & 0xFFFFFFFF), | 811 | (u_int)((host_dataptr >> 32) & 0xFFFFFFFF), |
811 | (u_int)(host_dataptr & 0xFFFFFFFF), | 812 | (u_int)(host_dataptr & 0xFFFFFFFF), |
812 | ahd_le32toh(scb->hscb->datacnt)); | 813 | ahd_le32toh(scb->hscb->datacnt)); |
diff --git a/drivers/scsi/aic7xxx/aic79xx_osm.c b/drivers/scsi/aic7xxx/aic79xx_osm.c index 2567e29960bd..7254ea535a16 100644 --- a/drivers/scsi/aic7xxx/aic79xx_osm.c +++ b/drivers/scsi/aic7xxx/aic79xx_osm.c | |||
@@ -314,6 +314,21 @@ static uint32_t aic79xx_seltime; | |||
314 | */ | 314 | */ |
315 | uint32_t aic79xx_periodic_otag; | 315 | uint32_t aic79xx_periodic_otag; |
316 | 316 | ||
317 | /* Some storage boxes are using an LSI chip which has a bug making it | ||
318 | * impossible to use aic79xx Rev B chip in 320 speeds. The following | ||
319 | * storage boxes have been reported to be buggy: | ||
320 | * EonStor 3U 16-Bay: U16U-G3A3 | ||
321 | * EonStor 2U 12-Bay: U12U-G3A3 | ||
322 | * SentinelRAID: 2500F R5 / R6 | ||
323 | * SentinelRAID: 2500F R1 | ||
324 | * SentinelRAID: 2500F/1500F | ||
325 | * SentinelRAID: 150F | ||
326 | * | ||
327 | * To get around this LSI bug, you can set your board to 160 mode | ||
328 | * or you can enable the SLOWCRC bit. | ||
329 | */ | ||
330 | uint32_t aic79xx_slowcrc; | ||
331 | |||
317 | /* | 332 | /* |
318 | * Module information and settable options. | 333 | * Module information and settable options. |
319 | */ | 334 | */ |
@@ -343,6 +358,7 @@ MODULE_PARM_DESC(aic79xx, | |||
343 | " amplitude:<int> Set the signal amplitude (0-7).\n" | 358 | " amplitude:<int> Set the signal amplitude (0-7).\n" |
344 | " seltime:<int> Selection Timeout:\n" | 359 | " seltime:<int> Selection Timeout:\n" |
345 | " (0/256ms,1/128ms,2/64ms,3/32ms)\n" | 360 | " (0/256ms,1/128ms,2/64ms,3/32ms)\n" |
361 | " slowcrc Turn on the SLOWCRC bit (Rev B only)\n" | ||
346 | "\n" | 362 | "\n" |
347 | " Sample /etc/modprobe.conf line:\n" | 363 | " Sample /etc/modprobe.conf line:\n" |
348 | " Enable verbose logging\n" | 364 | " Enable verbose logging\n" |
@@ -1003,6 +1019,7 @@ aic79xx_setup(char *s) | |||
1003 | { "slewrate", NULL }, | 1019 | { "slewrate", NULL }, |
1004 | { "precomp", NULL }, | 1020 | { "precomp", NULL }, |
1005 | { "amplitude", NULL }, | 1021 | { "amplitude", NULL }, |
1022 | { "slowcrc", &aic79xx_slowcrc }, | ||
1006 | }; | 1023 | }; |
1007 | 1024 | ||
1008 | end = strchr(s, '\0'); | 1025 | end = strchr(s, '\0'); |
@@ -1072,7 +1089,6 @@ ahd_linux_register_host(struct ahd_softc *ahd, struct scsi_host_template *templa | |||
1072 | return (ENOMEM); | 1089 | return (ENOMEM); |
1073 | 1090 | ||
1074 | *((struct ahd_softc **)host->hostdata) = ahd; | 1091 | *((struct ahd_softc **)host->hostdata) = ahd; |
1075 | ahd_lock(ahd, &s); | ||
1076 | ahd->platform_data->host = host; | 1092 | ahd->platform_data->host = host; |
1077 | host->can_queue = AHD_MAX_QUEUE; | 1093 | host->can_queue = AHD_MAX_QUEUE; |
1078 | host->cmd_per_lun = 2; | 1094 | host->cmd_per_lun = 2; |
@@ -1083,7 +1099,9 @@ ahd_linux_register_host(struct ahd_softc *ahd, struct scsi_host_template *templa | |||
1083 | host->max_lun = AHD_NUM_LUNS; | 1099 | host->max_lun = AHD_NUM_LUNS; |
1084 | host->max_channel = 0; | 1100 | host->max_channel = 0; |
1085 | host->sg_tablesize = AHD_NSEG; | 1101 | host->sg_tablesize = AHD_NSEG; |
1102 | ahd_lock(ahd, &s); | ||
1086 | ahd_set_unit(ahd, ahd_linux_unit++); | 1103 | ahd_set_unit(ahd, ahd_linux_unit++); |
1104 | ahd_unlock(ahd, &s); | ||
1087 | sprintf(buf, "scsi%d", host->host_no); | 1105 | sprintf(buf, "scsi%d", host->host_no); |
1088 | new_name = malloc(strlen(buf) + 1, M_DEVBUF, M_NOWAIT); | 1106 | new_name = malloc(strlen(buf) + 1, M_DEVBUF, M_NOWAIT); |
1089 | if (new_name != NULL) { | 1107 | if (new_name != NULL) { |
@@ -1093,7 +1111,6 @@ ahd_linux_register_host(struct ahd_softc *ahd, struct scsi_host_template *templa | |||
1093 | host->unique_id = ahd->unit; | 1111 | host->unique_id = ahd->unit; |
1094 | ahd_linux_initialize_scsi_bus(ahd); | 1112 | ahd_linux_initialize_scsi_bus(ahd); |
1095 | ahd_intr_enable(ahd, TRUE); | 1113 | ahd_intr_enable(ahd, TRUE); |
1096 | ahd_unlock(ahd, &s); | ||
1097 | 1114 | ||
1098 | host->transportt = ahd_linux_transport_template; | 1115 | host->transportt = ahd_linux_transport_template; |
1099 | 1116 | ||
@@ -1127,6 +1144,7 @@ ahd_linux_initialize_scsi_bus(struct ahd_softc *ahd) | |||
1127 | { | 1144 | { |
1128 | u_int target_id; | 1145 | u_int target_id; |
1129 | u_int numtarg; | 1146 | u_int numtarg; |
1147 | unsigned long s; | ||
1130 | 1148 | ||
1131 | target_id = 0; | 1149 | target_id = 0; |
1132 | numtarg = 0; | 1150 | numtarg = 0; |
@@ -1139,6 +1157,8 @@ ahd_linux_initialize_scsi_bus(struct ahd_softc *ahd) | |||
1139 | else | 1157 | else |
1140 | numtarg = (ahd->features & AHD_WIDE) ? 16 : 8; | 1158 | numtarg = (ahd->features & AHD_WIDE) ? 16 : 8; |
1141 | 1159 | ||
1160 | ahd_lock(ahd, &s); | ||
1161 | |||
1142 | /* | 1162 | /* |
1143 | * Force negotiation to async for all targets that | 1163 | * Force negotiation to async for all targets that |
1144 | * will not see an initial bus reset. | 1164 | * will not see an initial bus reset. |
@@ -1155,16 +1175,12 @@ ahd_linux_initialize_scsi_bus(struct ahd_softc *ahd) | |||
1155 | ahd_update_neg_request(ahd, &devinfo, tstate, | 1175 | ahd_update_neg_request(ahd, &devinfo, tstate, |
1156 | tinfo, AHD_NEG_ALWAYS); | 1176 | tinfo, AHD_NEG_ALWAYS); |
1157 | } | 1177 | } |
1178 | ahd_unlock(ahd, &s); | ||
1158 | /* Give the bus some time to recover */ | 1179 | /* Give the bus some time to recover */ |
1159 | if ((ahd->flags & AHD_RESET_BUS_A) != 0) { | 1180 | if ((ahd->flags & AHD_RESET_BUS_A) != 0) { |
1160 | ahd_freeze_simq(ahd); | 1181 | ahd_freeze_simq(ahd); |
1161 | init_timer(&ahd->platform_data->reset_timer); | 1182 | msleep(AIC79XX_RESET_DELAY); |
1162 | ahd->platform_data->reset_timer.data = (u_long)ahd; | 1183 | ahd_release_simq(ahd); |
1163 | ahd->platform_data->reset_timer.expires = | ||
1164 | jiffies + (AIC79XX_RESET_DELAY * HZ)/1000; | ||
1165 | ahd->platform_data->reset_timer.function = | ||
1166 | (ahd_linux_callback_t *)ahd_release_simq; | ||
1167 | add_timer(&ahd->platform_data->reset_timer); | ||
1168 | } | 1184 | } |
1169 | } | 1185 | } |
1170 | 1186 | ||
@@ -2033,6 +2049,9 @@ ahd_linux_sem_timeout(u_long arg) | |||
2033 | void | 2049 | void |
2034 | ahd_freeze_simq(struct ahd_softc *ahd) | 2050 | ahd_freeze_simq(struct ahd_softc *ahd) |
2035 | { | 2051 | { |
2052 | unsigned long s; | ||
2053 | |||
2054 | ahd_lock(ahd, &s); | ||
2036 | ahd->platform_data->qfrozen++; | 2055 | ahd->platform_data->qfrozen++; |
2037 | if (ahd->platform_data->qfrozen == 1) { | 2056 | if (ahd->platform_data->qfrozen == 1) { |
2038 | scsi_block_requests(ahd->platform_data->host); | 2057 | scsi_block_requests(ahd->platform_data->host); |
@@ -2040,6 +2059,7 @@ ahd_freeze_simq(struct ahd_softc *ahd) | |||
2040 | CAM_LUN_WILDCARD, SCB_LIST_NULL, | 2059 | CAM_LUN_WILDCARD, SCB_LIST_NULL, |
2041 | ROLE_INITIATOR, CAM_REQUEUE_REQ); | 2060 | ROLE_INITIATOR, CAM_REQUEUE_REQ); |
2042 | } | 2061 | } |
2062 | ahd_unlock(ahd, &s); | ||
2043 | } | 2063 | } |
2044 | 2064 | ||
2045 | void | 2065 | void |
@@ -2344,8 +2364,9 @@ done: | |||
2344 | ahd_name(ahd), dev->active); | 2364 | ahd_name(ahd), dev->active); |
2345 | retval = FAILED; | 2365 | retval = FAILED; |
2346 | } | 2366 | } |
2347 | } | 2367 | } else |
2348 | ahd_unlock(ahd, &flags); | 2368 | ahd_unlock(ahd, &flags); |
2369 | |||
2349 | return (retval); | 2370 | return (retval); |
2350 | } | 2371 | } |
2351 | 2372 | ||
diff --git a/drivers/scsi/aic7xxx/aic79xx_osm.h b/drivers/scsi/aic7xxx/aic79xx_osm.h index cb74fccc8100..9cb101345107 100644 --- a/drivers/scsi/aic7xxx/aic79xx_osm.h +++ b/drivers/scsi/aic7xxx/aic79xx_osm.h | |||
@@ -36,7 +36,7 @@ | |||
36 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 36 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
37 | * POSSIBILITY OF SUCH DAMAGES. | 37 | * POSSIBILITY OF SUCH DAMAGES. |
38 | * | 38 | * |
39 | * $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic79xx_osm.h#137 $ | 39 | * $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic79xx_osm.h#166 $ |
40 | * | 40 | * |
41 | */ | 41 | */ |
42 | #ifndef _AIC79XX_LINUX_H_ | 42 | #ifndef _AIC79XX_LINUX_H_ |
@@ -228,7 +228,6 @@ typedef struct timer_list ahd_timer_t; | |||
228 | typedef void ahd_linux_callback_t (u_long); | 228 | typedef void ahd_linux_callback_t (u_long); |
229 | static __inline void ahd_timer_reset(ahd_timer_t *timer, int usec, | 229 | static __inline void ahd_timer_reset(ahd_timer_t *timer, int usec, |
230 | ahd_callback_t *func, void *arg); | 230 | ahd_callback_t *func, void *arg); |
231 | static __inline void ahd_scb_timer_reset(struct scb *scb, u_int usec); | ||
232 | 231 | ||
233 | static __inline void | 232 | static __inline void |
234 | ahd_timer_reset(ahd_timer_t *timer, int usec, ahd_callback_t *func, void *arg) | 233 | ahd_timer_reset(ahd_timer_t *timer, int usec, ahd_callback_t *func, void *arg) |
@@ -243,12 +242,6 @@ ahd_timer_reset(ahd_timer_t *timer, int usec, ahd_callback_t *func, void *arg) | |||
243 | add_timer(timer); | 242 | add_timer(timer); |
244 | } | 243 | } |
245 | 244 | ||
246 | static __inline void | ||
247 | ahd_scb_timer_reset(struct scb *scb, u_int usec) | ||
248 | { | ||
249 | mod_timer(&scb->io_ctx->eh_timeout, jiffies + (usec * HZ)/1000000); | ||
250 | } | ||
251 | |||
252 | /***************************** SMP support ************************************/ | 245 | /***************************** SMP support ************************************/ |
253 | #include <linux/spinlock.h> | 246 | #include <linux/spinlock.h> |
254 | 247 | ||
@@ -389,7 +382,6 @@ struct ahd_platform_data { | |||
389 | 382 | ||
390 | spinlock_t spin_lock; | 383 | spinlock_t spin_lock; |
391 | u_int qfrozen; | 384 | u_int qfrozen; |
392 | struct timer_list reset_timer; | ||
393 | struct semaphore eh_sem; | 385 | struct semaphore eh_sem; |
394 | struct Scsi_Host *host; /* pointer to scsi host */ | 386 | struct Scsi_Host *host; /* pointer to scsi host */ |
395 | #define AHD_LINUX_NOIRQ ((uint32_t)~0) | 387 | #define AHD_LINUX_NOIRQ ((uint32_t)~0) |
diff --git a/drivers/scsi/aic7xxx/aic79xx_osm_pci.c b/drivers/scsi/aic7xxx/aic79xx_osm_pci.c index bf360ae021ab..ebbf7e4ff4cc 100644 --- a/drivers/scsi/aic7xxx/aic79xx_osm_pci.c +++ b/drivers/scsi/aic7xxx/aic79xx_osm_pci.c | |||
@@ -220,10 +220,10 @@ ahd_linux_pci_reserve_io_regions(struct ahd_softc *ahd, u_long *base, | |||
220 | *base2 = pci_resource_start(ahd->dev_softc, 3); | 220 | *base2 = pci_resource_start(ahd->dev_softc, 3); |
221 | if (*base == 0 || *base2 == 0) | 221 | if (*base == 0 || *base2 == 0) |
222 | return (ENOMEM); | 222 | return (ENOMEM); |
223 | if (request_region(*base, 256, "aic79xx") == 0) | 223 | if (!request_region(*base, 256, "aic79xx")) |
224 | return (ENOMEM); | 224 | return (ENOMEM); |
225 | if (request_region(*base2, 256, "aic79xx") == 0) { | 225 | if (!request_region(*base2, 256, "aic79xx")) { |
226 | release_region(*base2, 256); | 226 | release_region(*base, 256); |
227 | return (ENOMEM); | 227 | return (ENOMEM); |
228 | } | 228 | } |
229 | return (0); | 229 | return (0); |
@@ -237,7 +237,7 @@ ahd_linux_pci_reserve_mem_region(struct ahd_softc *ahd, | |||
237 | u_long start; | 237 | u_long start; |
238 | u_long base_page; | 238 | u_long base_page; |
239 | u_long base_offset; | 239 | u_long base_offset; |
240 | int error; | 240 | int error = 0; |
241 | 241 | ||
242 | if (aic79xx_allow_memio == 0) | 242 | if (aic79xx_allow_memio == 0) |
243 | return (ENOMEM); | 243 | return (ENOMEM); |
@@ -245,16 +245,15 @@ ahd_linux_pci_reserve_mem_region(struct ahd_softc *ahd, | |||
245 | if ((ahd->bugs & AHD_PCIX_MMAPIO_BUG) != 0) | 245 | if ((ahd->bugs & AHD_PCIX_MMAPIO_BUG) != 0) |
246 | return (ENOMEM); | 246 | return (ENOMEM); |
247 | 247 | ||
248 | error = 0; | ||
249 | start = pci_resource_start(ahd->dev_softc, 1); | 248 | start = pci_resource_start(ahd->dev_softc, 1); |
250 | base_page = start & PAGE_MASK; | 249 | base_page = start & PAGE_MASK; |
251 | base_offset = start - base_page; | 250 | base_offset = start - base_page; |
252 | if (start != 0) { | 251 | if (start != 0) { |
253 | *bus_addr = start; | 252 | *bus_addr = start; |
254 | if (request_mem_region(start, 0x1000, "aic79xx") == 0) | 253 | if (!request_mem_region(start, 0x1000, "aic79xx")) |
255 | error = ENOMEM; | 254 | error = ENOMEM; |
256 | if (error == 0) { | 255 | if (!error) { |
257 | *maddr = ioremap_nocache(base_page, base_offset + 256); | 256 | *maddr = ioremap_nocache(base_page, base_offset + 512); |
258 | if (*maddr == NULL) { | 257 | if (*maddr == NULL) { |
259 | error = ENOMEM; | 258 | error = ENOMEM; |
260 | release_mem_region(start, 0x1000); | 259 | release_mem_region(start, 0x1000); |
@@ -344,7 +343,7 @@ ahd_pci_map_int(struct ahd_softc *ahd) | |||
344 | 343 | ||
345 | error = request_irq(ahd->dev_softc->irq, ahd_linux_isr, | 344 | error = request_irq(ahd->dev_softc->irq, ahd_linux_isr, |
346 | SA_SHIRQ, "aic79xx", ahd); | 345 | SA_SHIRQ, "aic79xx", ahd); |
347 | if (error == 0) | 346 | if (!error) |
348 | ahd->platform_data->irq = ahd->dev_softc->irq; | 347 | ahd->platform_data->irq = ahd->dev_softc->irq; |
349 | 348 | ||
350 | return (-error); | 349 | return (-error); |
diff --git a/drivers/scsi/aic7xxx/aic79xx_pci.c b/drivers/scsi/aic7xxx/aic79xx_pci.c index 196a6344b037..757242e522c2 100644 --- a/drivers/scsi/aic7xxx/aic79xx_pci.c +++ b/drivers/scsi/aic7xxx/aic79xx_pci.c | |||
@@ -38,7 +38,7 @@ | |||
38 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 38 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
39 | * POSSIBILITY OF SUCH DAMAGES. | 39 | * POSSIBILITY OF SUCH DAMAGES. |
40 | * | 40 | * |
41 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx_pci.c#89 $ | 41 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx_pci.c#92 $ |
42 | */ | 42 | */ |
43 | 43 | ||
44 | #ifdef __linux__ | 44 | #ifdef __linux__ |
@@ -950,12 +950,19 @@ ahd_aic790X_setup(struct ahd_softc *ahd) | |||
950 | if ((ahd->flags & AHD_HP_BOARD) == 0) | 950 | if ((ahd->flags & AHD_HP_BOARD) == 0) |
951 | AHD_SET_SLEWRATE(ahd, AHD_SLEWRATE_DEF_REVA); | 951 | AHD_SET_SLEWRATE(ahd, AHD_SLEWRATE_DEF_REVA); |
952 | } else { | 952 | } else { |
953 | /* This is revision B and newer. */ | ||
954 | extern uint32_t aic79xx_slowcrc; | ||
953 | u_int devconfig1; | 955 | u_int devconfig1; |
954 | 956 | ||
955 | ahd->features |= AHD_RTI|AHD_NEW_IOCELL_OPTS | 957 | ahd->features |= AHD_RTI|AHD_NEW_IOCELL_OPTS |
956 | | AHD_NEW_DFCNTRL_OPTS|AHD_FAST_CDB_DELIVERY; | 958 | | AHD_NEW_DFCNTRL_OPTS|AHD_FAST_CDB_DELIVERY |
959 | | AHD_BUSFREEREV_BUG; | ||
957 | ahd->bugs |= AHD_LQOOVERRUN_BUG|AHD_EARLY_REQ_BUG; | 960 | ahd->bugs |= AHD_LQOOVERRUN_BUG|AHD_EARLY_REQ_BUG; |
958 | 961 | ||
962 | /* If the user requested the the SLOWCRC bit to be set. */ | ||
963 | if (aic79xx_slowcrc) | ||
964 | ahd->features |= AHD_AIC79XXB_SLOWCRC; | ||
965 | |||
959 | /* | 966 | /* |
960 | * Some issues have been resolved in the 7901B. | 967 | * Some issues have been resolved in the 7901B. |
961 | */ | 968 | */ |
diff --git a/drivers/scsi/aic7xxx/aic79xx_reg.h_shipped b/drivers/scsi/aic7xxx/aic79xx_reg.h_shipped index 8763b158856b..2068e00d2c75 100644 --- a/drivers/scsi/aic7xxx/aic79xx_reg.h_shipped +++ b/drivers/scsi/aic7xxx/aic79xx_reg.h_shipped | |||
@@ -2,8 +2,8 @@ | |||
2 | * DO NOT EDIT - This file is automatically generated | 2 | * DO NOT EDIT - This file is automatically generated |
3 | * from the following source files: | 3 | * from the following source files: |
4 | * | 4 | * |
5 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.seq#119 $ | 5 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.seq#120 $ |
6 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.reg#76 $ | 6 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.reg#77 $ |
7 | */ | 7 | */ |
8 | typedef int (ahd_reg_print_t)(u_int, u_int *, u_int); | 8 | typedef int (ahd_reg_print_t)(u_int, u_int *, u_int); |
9 | typedef struct ahd_reg_parse_entry { | 9 | typedef struct ahd_reg_parse_entry { |
@@ -2204,6 +2204,20 @@ ahd_reg_print_t ahd_cmdsize_table_print; | |||
2204 | #endif | 2204 | #endif |
2205 | 2205 | ||
2206 | #if AIC_DEBUG_REGISTERS | 2206 | #if AIC_DEBUG_REGISTERS |
2207 | ahd_reg_print_t ahd_mk_message_scb_print; | ||
2208 | #else | ||
2209 | #define ahd_mk_message_scb_print(regvalue, cur_col, wrap) \ | ||
2210 | ahd_print_register(NULL, 0, "MK_MESSAGE_SCB", 0x160, regvalue, cur_col, wrap) | ||
2211 | #endif | ||
2212 | |||
2213 | #if AIC_DEBUG_REGISTERS | ||
2214 | ahd_reg_print_t ahd_mk_message_scsiid_print; | ||
2215 | #else | ||
2216 | #define ahd_mk_message_scsiid_print(regvalue, cur_col, wrap) \ | ||
2217 | ahd_print_register(NULL, 0, "MK_MESSAGE_SCSIID", 0x162, regvalue, cur_col, wrap) | ||
2218 | #endif | ||
2219 | |||
2220 | #if AIC_DEBUG_REGISTERS | ||
2207 | ahd_reg_print_t ahd_scb_base_print; | 2221 | ahd_reg_print_t ahd_scb_base_print; |
2208 | #else | 2222 | #else |
2209 | #define ahd_scb_base_print(regvalue, cur_col, wrap) \ | 2223 | #define ahd_scb_base_print(regvalue, cur_col, wrap) \ |
@@ -3638,6 +3652,7 @@ ahd_reg_print_t ahd_scb_disconnected_lists_print; | |||
3638 | #define SEQ_FLAGS2 0x14d | 3652 | #define SEQ_FLAGS2 0x14d |
3639 | #define SELECTOUT_QFROZEN 0x04 | 3653 | #define SELECTOUT_QFROZEN 0x04 |
3640 | #define TARGET_MSG_PENDING 0x02 | 3654 | #define TARGET_MSG_PENDING 0x02 |
3655 | #define PENDING_MK_MESSAGE 0x01 | ||
3641 | 3656 | ||
3642 | #define ALLOCFIFO_SCBPTR 0x14e | 3657 | #define ALLOCFIFO_SCBPTR 0x14e |
3643 | 3658 | ||
@@ -3655,6 +3670,10 @@ ahd_reg_print_t ahd_scb_disconnected_lists_print; | |||
3655 | 3670 | ||
3656 | #define CMDSIZE_TABLE 0x158 | 3671 | #define CMDSIZE_TABLE 0x158 |
3657 | 3672 | ||
3673 | #define MK_MESSAGE_SCB 0x160 | ||
3674 | |||
3675 | #define MK_MESSAGE_SCSIID 0x162 | ||
3676 | |||
3658 | #define SCB_BASE 0x180 | 3677 | #define SCB_BASE 0x180 |
3659 | 3678 | ||
3660 | #define SCB_RESIDUAL_DATACNT 0x180 | 3679 | #define SCB_RESIDUAL_DATACNT 0x180 |
@@ -3800,5 +3819,5 @@ ahd_reg_print_t ahd_scb_disconnected_lists_print; | |||
3800 | 3819 | ||
3801 | 3820 | ||
3802 | /* Exported Labels */ | 3821 | /* Exported Labels */ |
3803 | #define LABEL_seq_isr 0x285 | 3822 | #define LABEL_seq_isr 0x28f |
3804 | #define LABEL_timer_isr 0x281 | 3823 | #define LABEL_timer_isr 0x28b |
diff --git a/drivers/scsi/aic7xxx/aic79xx_reg_print.c_shipped b/drivers/scsi/aic7xxx/aic79xx_reg_print.c_shipped index a4137c985376..db38a61a8cb4 100644 --- a/drivers/scsi/aic7xxx/aic79xx_reg_print.c_shipped +++ b/drivers/scsi/aic7xxx/aic79xx_reg_print.c_shipped | |||
@@ -2,8 +2,8 @@ | |||
2 | * DO NOT EDIT - This file is automatically generated | 2 | * DO NOT EDIT - This file is automatically generated |
3 | * from the following source files: | 3 | * from the following source files: |
4 | * | 4 | * |
5 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.seq#118 $ | 5 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.seq#120 $ |
6 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.reg#75 $ | 6 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.reg#77 $ |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "aic79xx_osm.h" | 9 | #include "aic79xx_osm.h" |
@@ -3382,6 +3382,7 @@ ahd_initiator_tag_print(u_int regvalue, u_int *cur_col, u_int wrap) | |||
3382 | } | 3382 | } |
3383 | 3383 | ||
3384 | static ahd_reg_parse_entry_t SEQ_FLAGS2_parse_table[] = { | 3384 | static ahd_reg_parse_entry_t SEQ_FLAGS2_parse_table[] = { |
3385 | { "PENDING_MK_MESSAGE", 0x01, 0x01 }, | ||
3385 | { "TARGET_MSG_PENDING", 0x02, 0x02 }, | 3386 | { "TARGET_MSG_PENDING", 0x02, 0x02 }, |
3386 | { "SELECTOUT_QFROZEN", 0x04, 0x04 } | 3387 | { "SELECTOUT_QFROZEN", 0x04, 0x04 } |
3387 | }; | 3388 | }; |
@@ -3389,7 +3390,7 @@ static ahd_reg_parse_entry_t SEQ_FLAGS2_parse_table[] = { | |||
3389 | int | 3390 | int |
3390 | ahd_seq_flags2_print(u_int regvalue, u_int *cur_col, u_int wrap) | 3391 | ahd_seq_flags2_print(u_int regvalue, u_int *cur_col, u_int wrap) |
3391 | { | 3392 | { |
3392 | return (ahd_print_register(SEQ_FLAGS2_parse_table, 2, "SEQ_FLAGS2", | 3393 | return (ahd_print_register(SEQ_FLAGS2_parse_table, 3, "SEQ_FLAGS2", |
3393 | 0x14d, regvalue, cur_col, wrap)); | 3394 | 0x14d, regvalue, cur_col, wrap)); |
3394 | } | 3395 | } |
3395 | 3396 | ||
@@ -3450,6 +3451,20 @@ ahd_cmdsize_table_print(u_int regvalue, u_int *cur_col, u_int wrap) | |||
3450 | } | 3451 | } |
3451 | 3452 | ||
3452 | int | 3453 | int |
3454 | ahd_mk_message_scb_print(u_int regvalue, u_int *cur_col, u_int wrap) | ||
3455 | { | ||
3456 | return (ahd_print_register(NULL, 0, "MK_MESSAGE_SCB", | ||
3457 | 0x160, regvalue, cur_col, wrap)); | ||
3458 | } | ||
3459 | |||
3460 | int | ||
3461 | ahd_mk_message_scsiid_print(u_int regvalue, u_int *cur_col, u_int wrap) | ||
3462 | { | ||
3463 | return (ahd_print_register(NULL, 0, "MK_MESSAGE_SCSIID", | ||
3464 | 0x162, regvalue, cur_col, wrap)); | ||
3465 | } | ||
3466 | |||
3467 | int | ||
3453 | ahd_scb_base_print(u_int regvalue, u_int *cur_col, u_int wrap) | 3468 | ahd_scb_base_print(u_int regvalue, u_int *cur_col, u_int wrap) |
3454 | { | 3469 | { |
3455 | return (ahd_print_register(NULL, 0, "SCB_BASE", | 3470 | return (ahd_print_register(NULL, 0, "SCB_BASE", |
diff --git a/drivers/scsi/aic7xxx/aic79xx_seq.h_shipped b/drivers/scsi/aic7xxx/aic79xx_seq.h_shipped index b1e5365be230..11bed07e90b7 100644 --- a/drivers/scsi/aic7xxx/aic79xx_seq.h_shipped +++ b/drivers/scsi/aic7xxx/aic79xx_seq.h_shipped | |||
@@ -2,17 +2,17 @@ | |||
2 | * DO NOT EDIT - This file is automatically generated | 2 | * DO NOT EDIT - This file is automatically generated |
3 | * from the following source files: | 3 | * from the following source files: |
4 | * | 4 | * |
5 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.seq#119 $ | 5 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.seq#120 $ |
6 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.reg#76 $ | 6 | * $Id: //depot/aic7xxx/aic7xxx/aic79xx.reg#77 $ |
7 | */ | 7 | */ |
8 | static uint8_t seqprog[] = { | 8 | static uint8_t seqprog[] = { |
9 | 0xff, 0x02, 0x06, 0x78, | 9 | 0xff, 0x02, 0x06, 0x78, |
10 | 0x00, 0xea, 0x64, 0x59, | 10 | 0x00, 0xea, 0x6e, 0x59, |
11 | 0x01, 0xea, 0x04, 0x30, | 11 | 0x01, 0xea, 0x04, 0x30, |
12 | 0xff, 0x04, 0x0c, 0x78, | 12 | 0xff, 0x04, 0x0c, 0x78, |
13 | 0x19, 0xea, 0x64, 0x59, | 13 | 0x19, 0xea, 0x6e, 0x59, |
14 | 0x19, 0xea, 0x04, 0x00, | 14 | 0x19, 0xea, 0x04, 0x00, |
15 | 0x33, 0xea, 0x5e, 0x59, | 15 | 0x33, 0xea, 0x68, 0x59, |
16 | 0x33, 0xea, 0x00, 0x00, | 16 | 0x33, 0xea, 0x00, 0x00, |
17 | 0x60, 0x3a, 0x3a, 0x68, | 17 | 0x60, 0x3a, 0x3a, 0x68, |
18 | 0x04, 0x4d, 0x35, 0x78, | 18 | 0x04, 0x4d, 0x35, 0x78, |
@@ -33,15 +33,15 @@ static uint8_t seqprog[] = { | |||
33 | 0xff, 0xea, 0x62, 0x02, | 33 | 0xff, 0xea, 0x62, 0x02, |
34 | 0x00, 0xe2, 0x3a, 0x40, | 34 | 0x00, 0xe2, 0x3a, 0x40, |
35 | 0xff, 0x21, 0x3b, 0x70, | 35 | 0xff, 0x21, 0x3b, 0x70, |
36 | 0x40, 0x4b, 0xaa, 0x69, | 36 | 0x40, 0x4b, 0xb4, 0x69, |
37 | 0x00, 0xe2, 0x68, 0x59, | 37 | 0x00, 0xe2, 0x72, 0x59, |
38 | 0x40, 0x4b, 0xaa, 0x69, | 38 | 0x40, 0x4b, 0xb4, 0x69, |
39 | 0x20, 0x4b, 0x96, 0x69, | 39 | 0x20, 0x4b, 0xa0, 0x69, |
40 | 0xfc, 0x42, 0x44, 0x78, | 40 | 0xfc, 0x42, 0x44, 0x78, |
41 | 0x10, 0x40, 0x44, 0x78, | 41 | 0x10, 0x40, 0x44, 0x78, |
42 | 0x00, 0xe2, 0xfc, 0x5d, | 42 | 0x00, 0xe2, 0x10, 0x5e, |
43 | 0x20, 0x4d, 0x48, 0x78, | 43 | 0x20, 0x4d, 0x48, 0x78, |
44 | 0x00, 0xe2, 0xfc, 0x5d, | 44 | 0x00, 0xe2, 0x10, 0x5e, |
45 | 0x30, 0x3f, 0xc0, 0x09, | 45 | 0x30, 0x3f, 0xc0, 0x09, |
46 | 0x30, 0xe0, 0x50, 0x60, | 46 | 0x30, 0xe0, 0x50, 0x60, |
47 | 0x7f, 0x4a, 0x94, 0x08, | 47 | 0x7f, 0x4a, 0x94, 0x08, |
@@ -51,7 +51,7 @@ static uint8_t seqprog[] = { | |||
51 | 0x00, 0xe2, 0x76, 0x58, | 51 | 0x00, 0xe2, 0x76, 0x58, |
52 | 0x00, 0xe2, 0x86, 0x58, | 52 | 0x00, 0xe2, 0x86, 0x58, |
53 | 0x00, 0xe2, 0x06, 0x40, | 53 | 0x00, 0xe2, 0x06, 0x40, |
54 | 0x33, 0xea, 0x5e, 0x59, | 54 | 0x33, 0xea, 0x68, 0x59, |
55 | 0x33, 0xea, 0x00, 0x00, | 55 | 0x33, 0xea, 0x00, 0x00, |
56 | 0x01, 0x52, 0x84, 0x78, | 56 | 0x01, 0x52, 0x84, 0x78, |
57 | 0x02, 0x58, 0x50, 0x31, | 57 | 0x02, 0x58, 0x50, 0x31, |
@@ -59,26 +59,26 @@ static uint8_t seqprog[] = { | |||
59 | 0xff, 0x97, 0x6f, 0x78, | 59 | 0xff, 0x97, 0x6f, 0x78, |
60 | 0x50, 0x4b, 0x6a, 0x68, | 60 | 0x50, 0x4b, 0x6a, 0x68, |
61 | 0xbf, 0x3a, 0x74, 0x08, | 61 | 0xbf, 0x3a, 0x74, 0x08, |
62 | 0x14, 0xea, 0x64, 0x59, | 62 | 0x14, 0xea, 0x6e, 0x59, |
63 | 0x14, 0xea, 0x04, 0x00, | 63 | 0x14, 0xea, 0x04, 0x00, |
64 | 0x08, 0x92, 0x25, 0x03, | 64 | 0x08, 0x92, 0x25, 0x03, |
65 | 0xff, 0x90, 0x5f, 0x68, | 65 | 0xff, 0x90, 0x5f, 0x68, |
66 | 0x00, 0xe2, 0x76, 0x5b, | 66 | 0x00, 0xe2, 0x8a, 0x5b, |
67 | 0x00, 0xe2, 0x5e, 0x40, | 67 | 0x00, 0xe2, 0x5e, 0x40, |
68 | 0x00, 0xea, 0x5e, 0x59, | 68 | 0x00, 0xea, 0x68, 0x59, |
69 | 0x01, 0xea, 0x00, 0x30, | 69 | 0x01, 0xea, 0x00, 0x30, |
70 | 0x80, 0xf9, 0x7e, 0x68, | 70 | 0x80, 0xf9, 0x7e, 0x68, |
71 | 0x00, 0xe2, 0x5c, 0x59, | 71 | 0x00, 0xe2, 0x66, 0x59, |
72 | 0x11, 0xea, 0x5e, 0x59, | 72 | 0x11, 0xea, 0x68, 0x59, |
73 | 0x11, 0xea, 0x00, 0x00, | 73 | 0x11, 0xea, 0x00, 0x00, |
74 | 0x80, 0xf9, 0x5c, 0x79, | 74 | 0x80, 0xf9, 0x66, 0x79, |
75 | 0xff, 0xea, 0xd4, 0x0d, | 75 | 0xff, 0xea, 0xd4, 0x0d, |
76 | 0x22, 0xea, 0x5e, 0x59, | 76 | 0x22, 0xea, 0x68, 0x59, |
77 | 0x22, 0xea, 0x00, 0x00, | 77 | 0x22, 0xea, 0x00, 0x00, |
78 | 0x10, 0x16, 0x90, 0x78, | 78 | 0x10, 0x16, 0x90, 0x78, |
79 | 0x10, 0x16, 0x2c, 0x00, | 79 | 0x10, 0x16, 0x2c, 0x00, |
80 | 0x01, 0x0b, 0xae, 0x32, | 80 | 0x01, 0x0b, 0xae, 0x32, |
81 | 0x18, 0xad, 0x12, 0x79, | 81 | 0x18, 0xad, 0x1c, 0x79, |
82 | 0x04, 0xad, 0xdc, 0x68, | 82 | 0x04, 0xad, 0xdc, 0x68, |
83 | 0x80, 0xad, 0x84, 0x78, | 83 | 0x80, 0xad, 0x84, 0x78, |
84 | 0x10, 0xad, 0xaa, 0x78, | 84 | 0x10, 0xad, 0xaa, 0x78, |
@@ -118,7 +118,6 @@ static uint8_t seqprog[] = { | |||
118 | 0x80, 0x18, 0x30, 0x04, | 118 | 0x80, 0x18, 0x30, 0x04, |
119 | 0x40, 0xad, 0x84, 0x78, | 119 | 0x40, 0xad, 0x84, 0x78, |
120 | 0xe7, 0xad, 0x5a, 0x09, | 120 | 0xe7, 0xad, 0x5a, 0x09, |
121 | 0x02, 0xa8, 0x40, 0x31, | ||
122 | 0xff, 0xea, 0xc0, 0x09, | 121 | 0xff, 0xea, 0xc0, 0x09, |
123 | 0x01, 0x54, 0xa9, 0x1a, | 122 | 0x01, 0x54, 0xa9, 0x1a, |
124 | 0x00, 0x55, 0xab, 0x22, | 123 | 0x00, 0x55, 0xab, 0x22, |
@@ -128,24 +127,30 @@ static uint8_t seqprog[] = { | |||
128 | 0xff, 0xea, 0x5a, 0x03, | 127 | 0xff, 0xea, 0x5a, 0x03, |
129 | 0xff, 0xea, 0x5e, 0x03, | 128 | 0xff, 0xea, 0x5e, 0x03, |
130 | 0x01, 0x10, 0xd4, 0x31, | 129 | 0x01, 0x10, 0xd4, 0x31, |
131 | 0x10, 0x92, 0x07, 0x69, | 130 | 0x02, 0xa8, 0x40, 0x31, |
131 | 0x01, 0x92, 0xc1, 0x31, | ||
132 | 0x3d, 0x93, 0xc5, 0x29, | 132 | 0x3d, 0x93, 0xc5, 0x29, |
133 | 0xfe, 0xe2, 0xc4, 0x09, | 133 | 0xfe, 0xe2, 0xc4, 0x09, |
134 | 0x01, 0xea, 0xc6, 0x01, | 134 | 0x01, 0xea, 0xc6, 0x01, |
135 | 0x02, 0xe2, 0xc8, 0x31, | 135 | 0x02, 0xe2, 0xc8, 0x31, |
136 | 0x02, 0xec, 0x50, 0x31, | 136 | 0x02, 0xec, 0x50, 0x31, |
137 | 0x02, 0xa0, 0xda, 0x31, | 137 | 0x02, 0xa0, 0xda, 0x31, |
138 | 0xff, 0xa9, 0x06, 0x71, | 138 | 0xff, 0xa9, 0x10, 0x71, |
139 | 0x10, 0xe0, 0x0e, 0x79, | ||
140 | 0x10, 0x92, 0x0f, 0x79, | ||
141 | 0x01, 0x4d, 0x9b, 0x02, | ||
142 | 0x02, 0xa0, 0xc0, 0x32, | ||
143 | 0x01, 0x93, 0xc5, 0x36, | ||
139 | 0x02, 0xa0, 0x58, 0x37, | 144 | 0x02, 0xa0, 0x58, 0x37, |
140 | 0xff, 0x21, 0x0f, 0x71, | 145 | 0xff, 0x21, 0x19, 0x71, |
141 | 0x02, 0x22, 0x51, 0x31, | 146 | 0x02, 0x22, 0x51, 0x31, |
142 | 0x02, 0xa0, 0x5c, 0x33, | 147 | 0x02, 0xa0, 0x5c, 0x33, |
143 | 0x02, 0xa0, 0x44, 0x36, | 148 | 0x02, 0xa0, 0x44, 0x36, |
144 | 0x02, 0xa0, 0x40, 0x32, | 149 | 0x02, 0xa0, 0x40, 0x32, |
145 | 0x02, 0xa0, 0x44, 0x36, | 150 | 0x02, 0xa0, 0x44, 0x36, |
146 | 0x04, 0x4d, 0x17, 0x69, | 151 | 0x05, 0x4d, 0x21, 0x69, |
147 | 0x40, 0x16, 0x48, 0x69, | 152 | 0x40, 0x16, 0x52, 0x69, |
148 | 0xff, 0x2d, 0x4d, 0x61, | 153 | 0xff, 0x2d, 0x57, 0x61, |
149 | 0xff, 0x29, 0x85, 0x70, | 154 | 0xff, 0x29, 0x85, 0x70, |
150 | 0x02, 0x28, 0x55, 0x32, | 155 | 0x02, 0x28, 0x55, 0x32, |
151 | 0x01, 0xea, 0x5a, 0x01, | 156 | 0x01, 0xea, 0x5a, 0x01, |
@@ -159,22 +164,22 @@ static uint8_t seqprog[] = { | |||
159 | 0x01, 0x56, 0xad, 0x1a, | 164 | 0x01, 0x56, 0xad, 0x1a, |
160 | 0xff, 0x54, 0xa9, 0x1a, | 165 | 0xff, 0x54, 0xa9, 0x1a, |
161 | 0xff, 0x55, 0xab, 0x22, | 166 | 0xff, 0x55, 0xab, 0x22, |
162 | 0xff, 0x8d, 0x41, 0x71, | 167 | 0xff, 0x8d, 0x4b, 0x71, |
163 | 0x80, 0xac, 0x40, 0x71, | 168 | 0x80, 0xac, 0x4a, 0x71, |
164 | 0x20, 0x16, 0x40, 0x69, | 169 | 0x20, 0x16, 0x4a, 0x69, |
165 | 0x00, 0xac, 0xc4, 0x19, | 170 | 0x00, 0xac, 0xc4, 0x19, |
166 | 0x07, 0xe2, 0x40, 0xf9, | 171 | 0x07, 0xe2, 0x4a, 0xf9, |
167 | 0x02, 0x8c, 0x51, 0x31, | 172 | 0x02, 0x8c, 0x51, 0x31, |
168 | 0x00, 0xe2, 0x24, 0x41, | 173 | 0x00, 0xe2, 0x2e, 0x41, |
169 | 0x01, 0xac, 0x08, 0x31, | 174 | 0x01, 0xac, 0x08, 0x31, |
170 | 0x09, 0xea, 0x5a, 0x01, | 175 | 0x09, 0xea, 0x5a, 0x01, |
171 | 0x02, 0x8c, 0x51, 0x32, | 176 | 0x02, 0x8c, 0x51, 0x32, |
172 | 0xff, 0xea, 0x1a, 0x07, | 177 | 0xff, 0xea, 0x1a, 0x07, |
173 | 0x04, 0x24, 0xf9, 0x30, | 178 | 0x04, 0x24, 0xf9, 0x30, |
174 | 0x1d, 0xea, 0x52, 0x41, | 179 | 0x1d, 0xea, 0x5c, 0x41, |
175 | 0x02, 0x2c, 0x51, 0x31, | 180 | 0x02, 0x2c, 0x51, 0x31, |
176 | 0x04, 0xa8, 0xf9, 0x30, | 181 | 0x04, 0xa8, 0xf9, 0x30, |
177 | 0x19, 0xea, 0x52, 0x41, | 182 | 0x19, 0xea, 0x5c, 0x41, |
178 | 0x06, 0xea, 0x08, 0x81, | 183 | 0x06, 0xea, 0x08, 0x81, |
179 | 0x01, 0xe2, 0x5a, 0x35, | 184 | 0x01, 0xe2, 0x5a, 0x35, |
180 | 0x02, 0xf2, 0xf0, 0x31, | 185 | 0x02, 0xf2, 0xf0, 0x31, |
@@ -190,27 +195,27 @@ static uint8_t seqprog[] = { | |||
190 | 0x02, 0x20, 0xb9, 0x30, | 195 | 0x02, 0x20, 0xb9, 0x30, |
191 | 0x02, 0x20, 0x51, 0x31, | 196 | 0x02, 0x20, 0x51, 0x31, |
192 | 0x4c, 0x93, 0xd7, 0x28, | 197 | 0x4c, 0x93, 0xd7, 0x28, |
193 | 0x10, 0x92, 0x77, 0x79, | 198 | 0x10, 0x92, 0x81, 0x79, |
194 | 0x01, 0x6b, 0xc0, 0x30, | 199 | 0x01, 0x6b, 0xc0, 0x30, |
195 | 0x02, 0x64, 0xc8, 0x00, | 200 | 0x02, 0x64, 0xc8, 0x00, |
196 | 0x40, 0x3a, 0x74, 0x04, | 201 | 0x40, 0x3a, 0x74, 0x04, |
197 | 0x00, 0xe2, 0x76, 0x58, | 202 | 0x00, 0xe2, 0x76, 0x58, |
198 | 0x33, 0xea, 0x5e, 0x59, | 203 | 0x33, 0xea, 0x68, 0x59, |
199 | 0x33, 0xea, 0x00, 0x00, | 204 | 0x33, 0xea, 0x00, 0x00, |
200 | 0x30, 0x3f, 0xc0, 0x09, | 205 | 0x30, 0x3f, 0xc0, 0x09, |
201 | 0x30, 0xe0, 0x78, 0x61, | 206 | 0x30, 0xe0, 0x82, 0x61, |
202 | 0x20, 0x3f, 0x8e, 0x69, | 207 | 0x20, 0x3f, 0x98, 0x69, |
203 | 0x10, 0x3f, 0x78, 0x79, | 208 | 0x10, 0x3f, 0x82, 0x79, |
204 | 0x02, 0xea, 0x7e, 0x00, | 209 | 0x02, 0xea, 0x7e, 0x00, |
205 | 0x00, 0xea, 0x5e, 0x59, | 210 | 0x00, 0xea, 0x68, 0x59, |
206 | 0x01, 0xea, 0x00, 0x30, | 211 | 0x01, 0xea, 0x00, 0x30, |
207 | 0x02, 0x4e, 0x51, 0x35, | 212 | 0x02, 0x4e, 0x51, 0x35, |
208 | 0x01, 0xea, 0x7e, 0x00, | 213 | 0x01, 0xea, 0x7e, 0x00, |
209 | 0x11, 0xea, 0x5e, 0x59, | 214 | 0x11, 0xea, 0x68, 0x59, |
210 | 0x11, 0xea, 0x00, 0x00, | 215 | 0x11, 0xea, 0x00, 0x00, |
211 | 0x02, 0x4e, 0x51, 0x35, | 216 | 0x02, 0x4e, 0x51, 0x35, |
212 | 0xc0, 0x4a, 0x94, 0x00, | 217 | 0xc0, 0x4a, 0x94, 0x00, |
213 | 0x04, 0x41, 0x9c, 0x79, | 218 | 0x04, 0x41, 0xa6, 0x79, |
214 | 0x08, 0xea, 0x98, 0x00, | 219 | 0x08, 0xea, 0x98, 0x00, |
215 | 0x08, 0x57, 0xae, 0x00, | 220 | 0x08, 0x57, 0xae, 0x00, |
216 | 0x08, 0x3c, 0x78, 0x00, | 221 | 0x08, 0x3c, 0x78, 0x00, |
@@ -218,12 +223,12 @@ static uint8_t seqprog[] = { | |||
218 | 0x0f, 0x67, 0xc0, 0x09, | 223 | 0x0f, 0x67, 0xc0, 0x09, |
219 | 0x00, 0x3a, 0x75, 0x02, | 224 | 0x00, 0x3a, 0x75, 0x02, |
220 | 0x20, 0xea, 0x96, 0x00, | 225 | 0x20, 0xea, 0x96, 0x00, |
221 | 0x00, 0xe2, 0x14, 0x42, | 226 | 0x00, 0xe2, 0x28, 0x42, |
222 | 0xc0, 0x4a, 0x94, 0x00, | 227 | 0xc0, 0x4a, 0x94, 0x00, |
223 | 0x40, 0x3a, 0xc8, 0x69, | 228 | 0x40, 0x3a, 0xd2, 0x69, |
224 | 0x02, 0x55, 0x06, 0x68, | 229 | 0x02, 0x55, 0x06, 0x68, |
225 | 0x02, 0x56, 0xc8, 0x69, | 230 | 0x02, 0x56, 0xd2, 0x69, |
226 | 0xff, 0x5b, 0xc8, 0x61, | 231 | 0xff, 0x5b, 0xd2, 0x61, |
227 | 0x02, 0x20, 0x51, 0x31, | 232 | 0x02, 0x20, 0x51, 0x31, |
228 | 0x80, 0xea, 0xb2, 0x01, | 233 | 0x80, 0xea, 0xb2, 0x01, |
229 | 0x44, 0xea, 0x00, 0x00, | 234 | 0x44, 0xea, 0x00, 0x00, |
@@ -231,40 +236,45 @@ static uint8_t seqprog[] = { | |||
231 | 0x33, 0xea, 0x00, 0x00, | 236 | 0x33, 0xea, 0x00, 0x00, |
232 | 0xff, 0xea, 0xb2, 0x09, | 237 | 0xff, 0xea, 0xb2, 0x09, |
233 | 0xff, 0xe0, 0xc0, 0x19, | 238 | 0xff, 0xe0, 0xc0, 0x19, |
234 | 0xff, 0xe0, 0xca, 0x79, | 239 | 0xff, 0xe0, 0xd4, 0x79, |
235 | 0x02, 0xac, 0x51, 0x31, | 240 | 0x02, 0xac, 0x51, 0x31, |
236 | 0x00, 0xe2, 0xc0, 0x41, | 241 | 0x00, 0xe2, 0xca, 0x41, |
237 | 0x02, 0x5e, 0x50, 0x31, | 242 | 0x02, 0x5e, 0x50, 0x31, |
238 | 0x02, 0xa8, 0xb8, 0x30, | 243 | 0x02, 0xa8, 0xb8, 0x30, |
239 | 0x02, 0x5c, 0x50, 0x31, | 244 | 0x02, 0x5c, 0x50, 0x31, |
240 | 0xff, 0xad, 0xdb, 0x71, | 245 | 0xff, 0xad, 0xe5, 0x71, |
241 | 0x02, 0xac, 0x41, 0x31, | 246 | 0x02, 0xac, 0x41, 0x31, |
242 | 0x02, 0x22, 0x51, 0x31, | 247 | 0x02, 0x22, 0x51, 0x31, |
243 | 0x02, 0xa0, 0x5c, 0x33, | 248 | 0x02, 0xa0, 0x5c, 0x33, |
244 | 0x02, 0xa0, 0x44, 0x32, | 249 | 0x02, 0xa0, 0x44, 0x32, |
245 | 0x00, 0xe2, 0xe4, 0x41, | 250 | 0x00, 0xe2, 0xf8, 0x41, |
246 | 0x10, 0x92, 0xe5, 0x69, | 251 | 0x01, 0x4d, 0xf1, 0x79, |
252 | 0x01, 0x62, 0xc1, 0x31, | ||
253 | 0x00, 0x93, 0xf1, 0x61, | ||
254 | 0xfe, 0x4d, 0x9b, 0x0a, | ||
255 | 0x02, 0x60, 0x41, 0x31, | ||
256 | 0x00, 0xe2, 0xdc, 0x41, | ||
247 | 0x3d, 0x93, 0xc9, 0x29, | 257 | 0x3d, 0x93, 0xc9, 0x29, |
248 | 0x01, 0xe4, 0xc8, 0x01, | 258 | 0x01, 0xe4, 0xc8, 0x01, |
249 | 0x01, 0xea, 0xca, 0x01, | 259 | 0x01, 0xea, 0xca, 0x01, |
250 | 0xff, 0xea, 0xda, 0x01, | 260 | 0xff, 0xea, 0xda, 0x01, |
251 | 0x02, 0x20, 0x51, 0x31, | 261 | 0x02, 0x20, 0x51, 0x31, |
252 | 0x02, 0xae, 0x41, 0x32, | 262 | 0x02, 0xae, 0x41, 0x32, |
253 | 0xff, 0x21, 0xed, 0x61, | 263 | 0xff, 0x21, 0x01, 0x62, |
254 | 0xff, 0xea, 0x46, 0x02, | 264 | 0xff, 0xea, 0x46, 0x02, |
255 | 0x02, 0x5c, 0x50, 0x31, | 265 | 0x02, 0x5c, 0x50, 0x31, |
256 | 0x40, 0xea, 0x96, 0x00, | 266 | 0x40, 0xea, 0x96, 0x00, |
257 | 0x02, 0x56, 0x04, 0x6e, | 267 | 0x02, 0x56, 0x20, 0x6e, |
258 | 0x01, 0x55, 0x04, 0x6e, | 268 | 0x01, 0x55, 0x20, 0x6e, |
259 | 0x10, 0x92, 0xf9, 0x79, | 269 | 0x10, 0x92, 0x0d, 0x7a, |
260 | 0x10, 0x40, 0x02, 0x6a, | 270 | 0x10, 0x40, 0x16, 0x6a, |
261 | 0x01, 0x56, 0x02, 0x7a, | 271 | 0x01, 0x56, 0x16, 0x7a, |
262 | 0xff, 0x97, 0x07, 0x78, | 272 | 0xff, 0x97, 0x07, 0x78, |
263 | 0x13, 0xea, 0x64, 0x59, | 273 | 0x13, 0xea, 0x6e, 0x59, |
264 | 0x13, 0xea, 0x04, 0x00, | 274 | 0x13, 0xea, 0x04, 0x00, |
265 | 0x00, 0xe2, 0x06, 0x40, | 275 | 0x00, 0xe2, 0x06, 0x40, |
266 | 0xbf, 0x3a, 0x74, 0x08, | 276 | 0xbf, 0x3a, 0x74, 0x08, |
267 | 0x04, 0x41, 0x08, 0x7a, | 277 | 0x04, 0x41, 0x1c, 0x7a, |
268 | 0x08, 0xea, 0x98, 0x00, | 278 | 0x08, 0xea, 0x98, 0x00, |
269 | 0x08, 0x57, 0xae, 0x00, | 279 | 0x08, 0x57, 0xae, 0x00, |
270 | 0x01, 0x93, 0x75, 0x32, | 280 | 0x01, 0x93, 0x75, 0x32, |
@@ -272,108 +282,108 @@ static uint8_t seqprog[] = { | |||
272 | 0x40, 0xea, 0x72, 0x02, | 282 | 0x40, 0xea, 0x72, 0x02, |
273 | 0x08, 0x3c, 0x78, 0x00, | 283 | 0x08, 0x3c, 0x78, 0x00, |
274 | 0x80, 0xea, 0x6e, 0x02, | 284 | 0x80, 0xea, 0x6e, 0x02, |
275 | 0x00, 0xe2, 0xe2, 0x5b, | 285 | 0x00, 0xe2, 0xf6, 0x5b, |
276 | 0x01, 0x3c, 0xc1, 0x31, | 286 | 0x01, 0x3c, 0xc1, 0x31, |
277 | 0x9f, 0xe0, 0x84, 0x7c, | 287 | 0x9f, 0xe0, 0x98, 0x7c, |
278 | 0x80, 0xe0, 0x28, 0x72, | 288 | 0x80, 0xe0, 0x3c, 0x72, |
279 | 0xa0, 0xe0, 0x64, 0x72, | 289 | 0xa0, 0xe0, 0x78, 0x72, |
280 | 0xc0, 0xe0, 0x5a, 0x72, | 290 | 0xc0, 0xe0, 0x6e, 0x72, |
281 | 0xe0, 0xe0, 0x94, 0x72, | 291 | 0xe0, 0xe0, 0xa8, 0x72, |
282 | 0x01, 0xea, 0x64, 0x59, | 292 | 0x01, 0xea, 0x6e, 0x59, |
283 | 0x01, 0xea, 0x04, 0x00, | 293 | 0x01, 0xea, 0x04, 0x00, |
284 | 0x00, 0xe2, 0x14, 0x42, | 294 | 0x00, 0xe2, 0x28, 0x42, |
285 | 0x80, 0x39, 0x2f, 0x7a, | 295 | 0x80, 0x39, 0x43, 0x7a, |
286 | 0x03, 0xea, 0x64, 0x59, | 296 | 0x03, 0xea, 0x6e, 0x59, |
287 | 0x03, 0xea, 0x04, 0x00, | 297 | 0x03, 0xea, 0x04, 0x00, |
288 | 0xee, 0x00, 0x36, 0x6a, | 298 | 0xee, 0x00, 0x4a, 0x6a, |
289 | 0x05, 0xea, 0xb4, 0x00, | 299 | 0x05, 0xea, 0xb4, 0x00, |
290 | 0x33, 0xea, 0x5e, 0x59, | 300 | 0x33, 0xea, 0x68, 0x59, |
291 | 0x33, 0xea, 0x00, 0x00, | 301 | 0x33, 0xea, 0x00, 0x00, |
292 | 0x02, 0xa8, 0x9c, 0x32, | 302 | 0x02, 0xa8, 0x9c, 0x32, |
293 | 0x00, 0xe2, 0x7e, 0x59, | 303 | 0x00, 0xe2, 0x88, 0x59, |
294 | 0xef, 0x96, 0xd5, 0x19, | 304 | 0xef, 0x96, 0xd5, 0x19, |
295 | 0x00, 0xe2, 0x46, 0x52, | 305 | 0x00, 0xe2, 0x5a, 0x52, |
296 | 0x09, 0x80, 0xe1, 0x30, | 306 | 0x09, 0x80, 0xe1, 0x30, |
297 | 0x02, 0xea, 0x36, 0x00, | 307 | 0x02, 0xea, 0x36, 0x00, |
298 | 0xa8, 0xea, 0x32, 0x00, | 308 | 0xa8, 0xea, 0x32, 0x00, |
299 | 0x00, 0xe2, 0x4c, 0x42, | 309 | 0x00, 0xe2, 0x60, 0x42, |
300 | 0x01, 0x96, 0xd1, 0x30, | 310 | 0x01, 0x96, 0xd1, 0x30, |
301 | 0x10, 0x80, 0x89, 0x31, | 311 | 0x10, 0x80, 0x89, 0x31, |
302 | 0x20, 0xea, 0x32, 0x00, | 312 | 0x20, 0xea, 0x32, 0x00, |
303 | 0xbf, 0x39, 0x73, 0x0a, | 313 | 0xbf, 0x39, 0x73, 0x0a, |
304 | 0x10, 0x4c, 0x56, 0x6a, | 314 | 0x10, 0x4c, 0x6a, 0x6a, |
305 | 0x20, 0x19, 0x4e, 0x6a, | 315 | 0x20, 0x19, 0x62, 0x6a, |
306 | 0x20, 0x19, 0x52, 0x6a, | 316 | 0x20, 0x19, 0x66, 0x6a, |
307 | 0x02, 0x4d, 0x14, 0x6a, | 317 | 0x02, 0x4d, 0x28, 0x6a, |
308 | 0x40, 0x39, 0x73, 0x02, | 318 | 0x40, 0x39, 0x73, 0x02, |
309 | 0x00, 0xe2, 0x14, 0x42, | 319 | 0x00, 0xe2, 0x28, 0x42, |
310 | 0x80, 0x39, 0xd5, 0x6a, | 320 | 0x80, 0x39, 0xe9, 0x6a, |
311 | 0x01, 0x44, 0x10, 0x33, | 321 | 0x01, 0x44, 0x10, 0x33, |
312 | 0x08, 0x92, 0x25, 0x03, | 322 | 0x08, 0x92, 0x25, 0x03, |
313 | 0x00, 0xe2, 0x14, 0x42, | 323 | 0x00, 0xe2, 0x28, 0x42, |
314 | 0x10, 0xea, 0x80, 0x00, | 324 | 0x10, 0xea, 0x80, 0x00, |
315 | 0x01, 0x37, 0xc5, 0x31, | 325 | 0x01, 0x37, 0xc5, 0x31, |
316 | 0x80, 0xe2, 0x80, 0x62, | 326 | 0x80, 0xe2, 0x94, 0x62, |
317 | 0x10, 0x92, 0xa5, 0x6a, | 327 | 0x10, 0x92, 0xb9, 0x6a, |
318 | 0xc0, 0x94, 0xc5, 0x01, | 328 | 0xc0, 0x94, 0xc5, 0x01, |
319 | 0x40, 0x92, 0x71, 0x6a, | 329 | 0x40, 0x92, 0x85, 0x6a, |
320 | 0xbf, 0xe2, 0xc4, 0x09, | 330 | 0xbf, 0xe2, 0xc4, 0x09, |
321 | 0x20, 0x92, 0x85, 0x7a, | 331 | 0x20, 0x92, 0x99, 0x7a, |
322 | 0x01, 0xe2, 0x88, 0x30, | 332 | 0x01, 0xe2, 0x88, 0x30, |
323 | 0x00, 0xe2, 0xe2, 0x5b, | 333 | 0x00, 0xe2, 0xf6, 0x5b, |
324 | 0xa0, 0x3c, 0x8d, 0x62, | 334 | 0xa0, 0x3c, 0xa1, 0x62, |
325 | 0x23, 0x92, 0x89, 0x08, | 335 | 0x23, 0x92, 0x89, 0x08, |
326 | 0x00, 0xe2, 0xe2, 0x5b, | 336 | 0x00, 0xe2, 0xf6, 0x5b, |
327 | 0xa0, 0x3c, 0x8d, 0x62, | 337 | 0xa0, 0x3c, 0xa1, 0x62, |
328 | 0x00, 0xa8, 0x84, 0x42, | 338 | 0x00, 0xa8, 0x98, 0x42, |
329 | 0xff, 0xe2, 0x84, 0x62, | 339 | 0xff, 0xe2, 0x98, 0x62, |
330 | 0x00, 0xe2, 0xa4, 0x42, | 340 | 0x00, 0xe2, 0xb8, 0x42, |
331 | 0x40, 0xea, 0x98, 0x00, | 341 | 0x40, 0xea, 0x98, 0x00, |
332 | 0x01, 0xe2, 0x88, 0x30, | 342 | 0x01, 0xe2, 0x88, 0x30, |
333 | 0x00, 0xe2, 0xe2, 0x5b, | 343 | 0x00, 0xe2, 0xf6, 0x5b, |
334 | 0xa0, 0x3c, 0x63, 0x72, | 344 | 0xa0, 0x3c, 0x77, 0x72, |
335 | 0x40, 0xea, 0x98, 0x00, | 345 | 0x40, 0xea, 0x98, 0x00, |
336 | 0x01, 0x37, 0x95, 0x32, | 346 | 0x01, 0x37, 0x95, 0x32, |
337 | 0x08, 0xea, 0x6e, 0x02, | 347 | 0x08, 0xea, 0x6e, 0x02, |
338 | 0x00, 0xe2, 0x14, 0x42, | 348 | 0x00, 0xe2, 0x28, 0x42, |
339 | 0xe0, 0xea, 0xfe, 0x5b, | 349 | 0xe0, 0xea, 0x12, 0x5c, |
340 | 0x80, 0xe0, 0xe0, 0x6a, | 350 | 0x80, 0xe0, 0xf4, 0x6a, |
341 | 0x04, 0xe0, 0x92, 0x73, | 351 | 0x04, 0xe0, 0xa6, 0x73, |
342 | 0x02, 0xe0, 0xc4, 0x73, | 352 | 0x02, 0xe0, 0xd8, 0x73, |
343 | 0x00, 0xea, 0x3e, 0x73, | 353 | 0x00, 0xea, 0x52, 0x73, |
344 | 0x03, 0xe0, 0xd4, 0x73, | 354 | 0x03, 0xe0, 0xe8, 0x73, |
345 | 0x23, 0xe0, 0xb6, 0x72, | 355 | 0x23, 0xe0, 0xca, 0x72, |
346 | 0x08, 0xe0, 0xdc, 0x72, | 356 | 0x08, 0xe0, 0xf0, 0x72, |
347 | 0x00, 0xe2, 0xe2, 0x5b, | 357 | 0x00, 0xe2, 0xf6, 0x5b, |
348 | 0x07, 0xea, 0x64, 0x59, | 358 | 0x07, 0xea, 0x6e, 0x59, |
349 | 0x07, 0xea, 0x04, 0x00, | 359 | 0x07, 0xea, 0x04, 0x00, |
350 | 0x08, 0x48, 0x15, 0x72, | 360 | 0x08, 0x48, 0x29, 0x72, |
351 | 0x04, 0x48, 0xb3, 0x62, | 361 | 0x04, 0x48, 0xc7, 0x62, |
352 | 0x01, 0x49, 0x89, 0x30, | 362 | 0x01, 0x49, 0x89, 0x30, |
353 | 0x00, 0xe2, 0xa4, 0x42, | 363 | 0x00, 0xe2, 0xb8, 0x42, |
354 | 0x01, 0x44, 0xd4, 0x31, | 364 | 0x01, 0x44, 0xd4, 0x31, |
355 | 0x00, 0xe2, 0xa4, 0x42, | 365 | 0x00, 0xe2, 0xb8, 0x42, |
356 | 0x01, 0x00, 0x6c, 0x32, | 366 | 0x01, 0x00, 0x6c, 0x32, |
357 | 0x33, 0xea, 0x5e, 0x59, | 367 | 0x33, 0xea, 0x68, 0x59, |
358 | 0x33, 0xea, 0x00, 0x00, | 368 | 0x33, 0xea, 0x00, 0x00, |
359 | 0x4c, 0x3a, 0xc1, 0x28, | 369 | 0x4c, 0x3a, 0xc1, 0x28, |
360 | 0x01, 0x64, 0xc0, 0x31, | 370 | 0x01, 0x64, 0xc0, 0x31, |
361 | 0x00, 0x36, 0x5f, 0x59, | 371 | 0x00, 0x36, 0x69, 0x59, |
362 | 0x01, 0x36, 0x01, 0x30, | 372 | 0x01, 0x36, 0x01, 0x30, |
363 | 0x01, 0xe0, 0xda, 0x7a, | 373 | 0x01, 0xe0, 0xee, 0x7a, |
364 | 0xa0, 0xea, 0xf4, 0x5b, | 374 | 0xa0, 0xea, 0x08, 0x5c, |
365 | 0x01, 0xa0, 0xda, 0x62, | 375 | 0x01, 0xa0, 0xee, 0x62, |
366 | 0x01, 0x84, 0xcf, 0x7a, | 376 | 0x01, 0x84, 0xe3, 0x7a, |
367 | 0x01, 0x95, 0xdd, 0x6a, | 377 | 0x01, 0x95, 0xf1, 0x6a, |
368 | 0x05, 0xea, 0x64, 0x59, | 378 | 0x05, 0xea, 0x6e, 0x59, |
369 | 0x05, 0xea, 0x04, 0x00, | 379 | 0x05, 0xea, 0x04, 0x00, |
370 | 0x00, 0xe2, 0xdc, 0x42, | 380 | 0x00, 0xe2, 0xf0, 0x42, |
371 | 0x03, 0xea, 0x64, 0x59, | 381 | 0x03, 0xea, 0x6e, 0x59, |
372 | 0x03, 0xea, 0x04, 0x00, | 382 | 0x03, 0xea, 0x04, 0x00, |
373 | 0x00, 0xe2, 0xdc, 0x42, | 383 | 0x00, 0xe2, 0xf0, 0x42, |
374 | 0x07, 0xea, 0x06, 0x5c, | 384 | 0x07, 0xea, 0x1a, 0x5c, |
375 | 0x01, 0x44, 0xd4, 0x31, | 385 | 0x01, 0x44, 0xd4, 0x31, |
376 | 0x00, 0xe2, 0x14, 0x42, | 386 | 0x00, 0xe2, 0x28, 0x42, |
377 | 0x3f, 0xe0, 0x76, 0x0a, | 387 | 0x3f, 0xe0, 0x76, 0x0a, |
378 | 0xc0, 0x3a, 0xc1, 0x09, | 388 | 0xc0, 0x3a, 0xc1, 0x09, |
379 | 0x00, 0x3b, 0x51, 0x01, | 389 | 0x00, 0x3b, 0x51, 0x01, |
@@ -384,54 +394,54 @@ static uint8_t seqprog[] = { | |||
384 | 0x01, 0xea, 0xc6, 0x01, | 394 | 0x01, 0xea, 0xc6, 0x01, |
385 | 0x02, 0xe2, 0xc8, 0x31, | 395 | 0x02, 0xe2, 0xc8, 0x31, |
386 | 0x02, 0xec, 0x40, 0x31, | 396 | 0x02, 0xec, 0x40, 0x31, |
387 | 0xff, 0xa1, 0xfc, 0x72, | 397 | 0xff, 0xa1, 0x10, 0x73, |
388 | 0x02, 0xe8, 0xda, 0x31, | 398 | 0x02, 0xe8, 0xda, 0x31, |
389 | 0x02, 0xa0, 0x50, 0x31, | 399 | 0x02, 0xa0, 0x50, 0x31, |
390 | 0x00, 0xe2, 0x1e, 0x43, | 400 | 0x00, 0xe2, 0x32, 0x43, |
391 | 0x80, 0x39, 0x73, 0x02, | 401 | 0x80, 0x39, 0x73, 0x02, |
392 | 0x01, 0x44, 0xd4, 0x31, | 402 | 0x01, 0x44, 0xd4, 0x31, |
393 | 0x00, 0xe2, 0xe2, 0x5b, | 403 | 0x00, 0xe2, 0xf6, 0x5b, |
394 | 0x01, 0x39, 0x73, 0x02, | 404 | 0x01, 0x39, 0x73, 0x02, |
395 | 0xe0, 0x3c, 0x39, 0x63, | 405 | 0xe0, 0x3c, 0x4d, 0x63, |
396 | 0x02, 0x39, 0x73, 0x02, | 406 | 0x02, 0x39, 0x73, 0x02, |
397 | 0x20, 0x46, 0x32, 0x63, | 407 | 0x20, 0x46, 0x46, 0x63, |
398 | 0xff, 0xea, 0x52, 0x09, | 408 | 0xff, 0xea, 0x52, 0x09, |
399 | 0xa8, 0xea, 0xf4, 0x5b, | 409 | 0xa8, 0xea, 0x08, 0x5c, |
400 | 0x04, 0x92, 0x19, 0x7b, | 410 | 0x04, 0x92, 0x2d, 0x7b, |
401 | 0x01, 0x3a, 0xc1, 0x31, | 411 | 0x01, 0x3a, 0xc1, 0x31, |
402 | 0x00, 0x93, 0x19, 0x63, | 412 | 0x00, 0x93, 0x2d, 0x63, |
403 | 0x01, 0x3b, 0xc1, 0x31, | 413 | 0x01, 0x3b, 0xc1, 0x31, |
404 | 0x00, 0x94, 0x23, 0x73, | 414 | 0x00, 0x94, 0x37, 0x73, |
405 | 0x01, 0xa9, 0x52, 0x11, | 415 | 0x01, 0xa9, 0x52, 0x11, |
406 | 0xff, 0xa9, 0x0e, 0x6b, | 416 | 0xff, 0xa9, 0x22, 0x6b, |
407 | 0x00, 0xe2, 0x32, 0x43, | 417 | 0x00, 0xe2, 0x46, 0x43, |
408 | 0x10, 0x39, 0x73, 0x02, | 418 | 0x10, 0x39, 0x73, 0x02, |
409 | 0x04, 0x92, 0x33, 0x7b, | 419 | 0x04, 0x92, 0x47, 0x7b, |
410 | 0xfb, 0x92, 0x25, 0x0b, | 420 | 0xfb, 0x92, 0x25, 0x0b, |
411 | 0xff, 0xea, 0x72, 0x0a, | 421 | 0xff, 0xea, 0x72, 0x0a, |
412 | 0x01, 0xa4, 0x2d, 0x6b, | 422 | 0x01, 0xa4, 0x41, 0x6b, |
413 | 0x02, 0xa8, 0x9c, 0x32, | 423 | 0x02, 0xa8, 0x9c, 0x32, |
414 | 0x00, 0xe2, 0x7e, 0x59, | 424 | 0x00, 0xe2, 0x88, 0x59, |
415 | 0x10, 0x92, 0xdd, 0x7a, | 425 | 0x10, 0x92, 0xf1, 0x7a, |
416 | 0xff, 0xea, 0x06, 0x5c, | 426 | 0xff, 0xea, 0x1a, 0x5c, |
417 | 0x00, 0xe2, 0xdc, 0x42, | 427 | 0x00, 0xe2, 0xf0, 0x42, |
418 | 0x04, 0xea, 0x64, 0x59, | 428 | 0x04, 0xea, 0x6e, 0x59, |
419 | 0x04, 0xea, 0x04, 0x00, | 429 | 0x04, 0xea, 0x04, 0x00, |
420 | 0x00, 0xe2, 0xdc, 0x42, | 430 | 0x00, 0xe2, 0xf0, 0x42, |
421 | 0x04, 0xea, 0x64, 0x59, | 431 | 0x04, 0xea, 0x6e, 0x59, |
422 | 0x04, 0xea, 0x04, 0x00, | 432 | 0x04, 0xea, 0x04, 0x00, |
423 | 0x00, 0xe2, 0x14, 0x42, | 433 | 0x00, 0xe2, 0x28, 0x42, |
424 | 0x08, 0x92, 0xd5, 0x7a, | 434 | 0x08, 0x92, 0xe9, 0x7a, |
425 | 0xc0, 0x39, 0x49, 0x7b, | 435 | 0xc0, 0x39, 0x5d, 0x7b, |
426 | 0x80, 0x39, 0xd5, 0x6a, | 436 | 0x80, 0x39, 0xe9, 0x6a, |
427 | 0xff, 0x88, 0x49, 0x6b, | 437 | 0xff, 0x88, 0x5d, 0x6b, |
428 | 0x40, 0x39, 0xd5, 0x6a, | 438 | 0x40, 0x39, 0xe9, 0x6a, |
429 | 0x10, 0x92, 0x4f, 0x7b, | 439 | 0x10, 0x92, 0x63, 0x7b, |
430 | 0x0a, 0xea, 0x64, 0x59, | 440 | 0x0a, 0xea, 0x6e, 0x59, |
431 | 0x0a, 0xea, 0x04, 0x00, | 441 | 0x0a, 0xea, 0x04, 0x00, |
432 | 0x00, 0xe2, 0x6e, 0x5b, | 442 | 0x00, 0xe2, 0x82, 0x5b, |
433 | 0x00, 0xe2, 0xae, 0x43, | 443 | 0x00, 0xe2, 0xc2, 0x43, |
434 | 0x50, 0x4b, 0x56, 0x6b, | 444 | 0x50, 0x4b, 0x6a, 0x6b, |
435 | 0xbf, 0x3a, 0x74, 0x08, | 445 | 0xbf, 0x3a, 0x74, 0x08, |
436 | 0x01, 0xe0, 0xf4, 0x31, | 446 | 0x01, 0xe0, 0xf4, 0x31, |
437 | 0xff, 0xea, 0xc0, 0x09, | 447 | 0xff, 0xea, 0xc0, 0x09, |
@@ -441,31 +451,31 @@ static uint8_t seqprog[] = { | |||
441 | 0x01, 0xfa, 0xc0, 0x35, | 451 | 0x01, 0xfa, 0xc0, 0x35, |
442 | 0x02, 0xa8, 0x90, 0x32, | 452 | 0x02, 0xa8, 0x90, 0x32, |
443 | 0x02, 0xea, 0xb4, 0x00, | 453 | 0x02, 0xea, 0xb4, 0x00, |
444 | 0x33, 0xea, 0x5e, 0x59, | 454 | 0x33, 0xea, 0x68, 0x59, |
445 | 0x33, 0xea, 0x00, 0x00, | 455 | 0x33, 0xea, 0x00, 0x00, |
446 | 0x02, 0x48, 0x51, 0x31, | 456 | 0x02, 0x48, 0x51, 0x31, |
447 | 0xff, 0x90, 0x85, 0x68, | 457 | 0xff, 0x90, 0x85, 0x68, |
448 | 0xff, 0x88, 0x7b, 0x6b, | 458 | 0xff, 0x88, 0x8f, 0x6b, |
449 | 0x01, 0xa4, 0x77, 0x6b, | 459 | 0x01, 0xa4, 0x8b, 0x6b, |
450 | 0x02, 0xa4, 0x7f, 0x6b, | 460 | 0x02, 0xa4, 0x93, 0x6b, |
451 | 0x01, 0x84, 0x7f, 0x7b, | 461 | 0x01, 0x84, 0x93, 0x7b, |
452 | 0x02, 0x28, 0x19, 0x33, | 462 | 0x02, 0x28, 0x19, 0x33, |
453 | 0x02, 0xa8, 0x50, 0x36, | 463 | 0x02, 0xa8, 0x50, 0x36, |
454 | 0xff, 0x88, 0x7f, 0x73, | 464 | 0xff, 0x88, 0x93, 0x73, |
455 | 0x00, 0xe2, 0x52, 0x5b, | 465 | 0x00, 0xe2, 0x66, 0x5b, |
456 | 0x02, 0xa8, 0x20, 0x33, | 466 | 0x02, 0xa8, 0x20, 0x33, |
457 | 0x04, 0xa4, 0x49, 0x03, | 467 | 0x04, 0xa4, 0x49, 0x03, |
458 | 0xff, 0xea, 0x1a, 0x03, | 468 | 0xff, 0xea, 0x1a, 0x03, |
459 | 0xff, 0x2d, 0x8b, 0x63, | 469 | 0xff, 0x2d, 0x9f, 0x63, |
460 | 0x02, 0xa8, 0x58, 0x32, | 470 | 0x02, 0xa8, 0x58, 0x32, |
461 | 0x02, 0xa8, 0x5c, 0x36, | 471 | 0x02, 0xa8, 0x5c, 0x36, |
462 | 0x02, 0xa8, 0x40, 0x31, | 472 | 0x02, 0xa8, 0x40, 0x31, |
463 | 0x02, 0x2e, 0x51, 0x31, | 473 | 0x02, 0x2e, 0x51, 0x31, |
464 | 0x02, 0xa0, 0x18, 0x33, | 474 | 0x02, 0xa0, 0x18, 0x33, |
465 | 0x02, 0xa0, 0x5c, 0x36, | 475 | 0x02, 0xa0, 0x5c, 0x36, |
466 | 0xc0, 0x39, 0xd5, 0x6a, | 476 | 0xc0, 0x39, 0xe9, 0x6a, |
467 | 0x04, 0x92, 0x25, 0x03, | 477 | 0x04, 0x92, 0x25, 0x03, |
468 | 0x20, 0x92, 0xaf, 0x6b, | 478 | 0x20, 0x92, 0xc3, 0x6b, |
469 | 0x02, 0xa8, 0x40, 0x31, | 479 | 0x02, 0xa8, 0x40, 0x31, |
470 | 0xc0, 0x3a, 0xc1, 0x09, | 480 | 0xc0, 0x3a, 0xc1, 0x09, |
471 | 0x00, 0x3b, 0x51, 0x01, | 481 | 0x00, 0x3b, 0x51, 0x01, |
@@ -480,60 +490,60 @@ static uint8_t seqprog[] = { | |||
480 | 0xf7, 0x57, 0xae, 0x08, | 490 | 0xf7, 0x57, 0xae, 0x08, |
481 | 0x08, 0xea, 0x98, 0x00, | 491 | 0x08, 0xea, 0x98, 0x00, |
482 | 0x01, 0x44, 0xd4, 0x31, | 492 | 0x01, 0x44, 0xd4, 0x31, |
483 | 0xee, 0x00, 0xb8, 0x6b, | 493 | 0xee, 0x00, 0xcc, 0x6b, |
484 | 0x02, 0xea, 0xb4, 0x00, | 494 | 0x02, 0xea, 0xb4, 0x00, |
485 | 0xc0, 0xea, 0x72, 0x02, | 495 | 0xc0, 0xea, 0x72, 0x02, |
486 | 0x09, 0x4c, 0xba, 0x7b, | 496 | 0x09, 0x4c, 0xce, 0x7b, |
487 | 0x01, 0xea, 0x78, 0x02, | 497 | 0x01, 0xea, 0x78, 0x02, |
488 | 0x08, 0x4c, 0x06, 0x68, | 498 | 0x08, 0x4c, 0x06, 0x68, |
489 | 0x0b, 0xea, 0x64, 0x59, | 499 | 0x0b, 0xea, 0x6e, 0x59, |
490 | 0x0b, 0xea, 0x04, 0x00, | 500 | 0x0b, 0xea, 0x04, 0x00, |
491 | 0x01, 0x44, 0xd4, 0x31, | 501 | 0x01, 0x44, 0xd4, 0x31, |
492 | 0x20, 0x39, 0x15, 0x7a, | 502 | 0x20, 0x39, 0x29, 0x7a, |
493 | 0x00, 0xe2, 0xcc, 0x5b, | 503 | 0x00, 0xe2, 0xe0, 0x5b, |
494 | 0x00, 0xe2, 0x14, 0x42, | 504 | 0x00, 0xe2, 0x28, 0x42, |
495 | 0x01, 0x84, 0xd1, 0x7b, | 505 | 0x01, 0x84, 0xe5, 0x7b, |
496 | 0x01, 0xa4, 0x49, 0x07, | 506 | 0x01, 0xa4, 0x49, 0x07, |
497 | 0x08, 0x60, 0x30, 0x33, | 507 | 0x08, 0x60, 0x30, 0x33, |
498 | 0x08, 0x80, 0x41, 0x37, | 508 | 0x08, 0x80, 0x41, 0x37, |
499 | 0xdf, 0x39, 0x73, 0x0a, | 509 | 0xdf, 0x39, 0x73, 0x0a, |
500 | 0xee, 0x00, 0xde, 0x6b, | 510 | 0xee, 0x00, 0xf2, 0x6b, |
501 | 0x05, 0xea, 0xb4, 0x00, | 511 | 0x05, 0xea, 0xb4, 0x00, |
502 | 0x33, 0xea, 0x5e, 0x59, | 512 | 0x33, 0xea, 0x68, 0x59, |
503 | 0x33, 0xea, 0x00, 0x00, | 513 | 0x33, 0xea, 0x00, 0x00, |
504 | 0x00, 0xe2, 0x7e, 0x59, | 514 | 0x00, 0xe2, 0x88, 0x59, |
505 | 0x00, 0xe2, 0xdc, 0x42, | 515 | 0x00, 0xe2, 0xf0, 0x42, |
506 | 0xff, 0x42, 0xee, 0x6b, | 516 | 0xff, 0x42, 0x02, 0x6c, |
507 | 0x01, 0x41, 0xe2, 0x6b, | 517 | 0x01, 0x41, 0xf6, 0x6b, |
508 | 0x02, 0x41, 0xe2, 0x7b, | 518 | 0x02, 0x41, 0xf6, 0x7b, |
509 | 0xff, 0x42, 0xee, 0x6b, | 519 | 0xff, 0x42, 0x02, 0x6c, |
510 | 0x01, 0x41, 0xe2, 0x6b, | 520 | 0x01, 0x41, 0xf6, 0x6b, |
511 | 0x02, 0x41, 0xe2, 0x7b, | 521 | 0x02, 0x41, 0xf6, 0x7b, |
512 | 0xff, 0x42, 0xee, 0x7b, | 522 | 0xff, 0x42, 0x02, 0x7c, |
513 | 0x04, 0x4c, 0xe2, 0x6b, | 523 | 0x04, 0x4c, 0xf6, 0x6b, |
514 | 0xe0, 0x41, 0x78, 0x0e, | 524 | 0xe0, 0x41, 0x78, 0x0e, |
515 | 0x01, 0x44, 0xd4, 0x31, | 525 | 0x01, 0x44, 0xd4, 0x31, |
516 | 0xff, 0x42, 0xf6, 0x7b, | 526 | 0xff, 0x42, 0x0a, 0x7c, |
517 | 0x04, 0x4c, 0xf6, 0x6b, | 527 | 0x04, 0x4c, 0x0a, 0x6c, |
518 | 0xe0, 0x41, 0x78, 0x0a, | 528 | 0xe0, 0x41, 0x78, 0x0a, |
519 | 0xe0, 0x3c, 0x15, 0x62, | 529 | 0xe0, 0x3c, 0x29, 0x62, |
520 | 0xff, 0xea, 0xca, 0x09, | 530 | 0xff, 0xea, 0xca, 0x09, |
521 | 0x01, 0xe2, 0xc8, 0x31, | 531 | 0x01, 0xe2, 0xc8, 0x31, |
522 | 0x01, 0x46, 0xda, 0x35, | 532 | 0x01, 0x46, 0xda, 0x35, |
523 | 0x01, 0x44, 0xd4, 0x35, | 533 | 0x01, 0x44, 0xd4, 0x35, |
524 | 0x10, 0xea, 0x80, 0x00, | 534 | 0x10, 0xea, 0x80, 0x00, |
525 | 0x01, 0xe2, 0x6e, 0x36, | 535 | 0x01, 0xe2, 0x6e, 0x36, |
526 | 0x04, 0xa6, 0x0e, 0x7c, | 536 | 0x04, 0xa6, 0x22, 0x7c, |
527 | 0xff, 0xea, 0x5a, 0x09, | 537 | 0xff, 0xea, 0x5a, 0x09, |
528 | 0xff, 0xea, 0x4c, 0x0d, | 538 | 0xff, 0xea, 0x4c, 0x0d, |
529 | 0x01, 0xa6, 0x3a, 0x6c, | 539 | 0x01, 0xa6, 0x4e, 0x6c, |
530 | 0x10, 0xad, 0x84, 0x78, | 540 | 0x10, 0xad, 0x84, 0x78, |
531 | 0x80, 0xad, 0x32, 0x6c, | 541 | 0x80, 0xad, 0x46, 0x6c, |
532 | 0x08, 0xad, 0x84, 0x68, | 542 | 0x08, 0xad, 0x84, 0x68, |
533 | 0x20, 0x19, 0x26, 0x7c, | 543 | 0x20, 0x19, 0x3a, 0x7c, |
534 | 0x80, 0xea, 0xb2, 0x01, | 544 | 0x80, 0xea, 0xb2, 0x01, |
535 | 0x11, 0x00, 0x00, 0x10, | 545 | 0x11, 0x00, 0x00, 0x10, |
536 | 0x02, 0xa6, 0x22, 0x7c, | 546 | 0x02, 0xa6, 0x36, 0x7c, |
537 | 0xff, 0xea, 0xb2, 0x0d, | 547 | 0xff, 0xea, 0xb2, 0x0d, |
538 | 0x11, 0x00, 0x00, 0x10, | 548 | 0x11, 0x00, 0x00, 0x10, |
539 | 0xff, 0xea, 0xb2, 0x09, | 549 | 0xff, 0xea, 0xb2, 0x09, |
@@ -561,7 +571,7 @@ static uint8_t seqprog[] = { | |||
561 | 0x00, 0x86, 0x0d, 0x23, | 571 | 0x00, 0x86, 0x0d, 0x23, |
562 | 0x00, 0x87, 0x0f, 0x23, | 572 | 0x00, 0x87, 0x0f, 0x23, |
563 | 0x01, 0x84, 0xc5, 0x31, | 573 | 0x01, 0x84, 0xc5, 0x31, |
564 | 0x80, 0x83, 0x5d, 0x7c, | 574 | 0x80, 0x83, 0x71, 0x7c, |
565 | 0x02, 0xe2, 0xc4, 0x01, | 575 | 0x02, 0xe2, 0xc4, 0x01, |
566 | 0xff, 0xea, 0x4c, 0x09, | 576 | 0xff, 0xea, 0x4c, 0x09, |
567 | 0x01, 0xe2, 0x36, 0x30, | 577 | 0x01, 0xe2, 0x36, 0x30, |
@@ -572,75 +582,75 @@ static uint8_t seqprog[] = { | |||
572 | 0xfe, 0xa6, 0x4c, 0x0d, | 582 | 0xfe, 0xa6, 0x4c, 0x0d, |
573 | 0x0b, 0x98, 0xe1, 0x30, | 583 | 0x0b, 0x98, 0xe1, 0x30, |
574 | 0xfd, 0xa4, 0x49, 0x09, | 584 | 0xfd, 0xa4, 0x49, 0x09, |
575 | 0x80, 0xa3, 0x71, 0x7c, | 585 | 0x80, 0xa3, 0x85, 0x7c, |
576 | 0x02, 0xa4, 0x48, 0x01, | 586 | 0x02, 0xa4, 0x48, 0x01, |
577 | 0x01, 0xa4, 0x36, 0x30, | 587 | 0x01, 0xa4, 0x36, 0x30, |
578 | 0xa8, 0xea, 0x32, 0x00, | 588 | 0xa8, 0xea, 0x32, 0x00, |
579 | 0xfd, 0xa4, 0x49, 0x0b, | 589 | 0xfd, 0xa4, 0x49, 0x0b, |
580 | 0x05, 0xa3, 0x07, 0x33, | 590 | 0x05, 0xa3, 0x07, 0x33, |
581 | 0x80, 0x83, 0x7d, 0x6c, | 591 | 0x80, 0x83, 0x91, 0x6c, |
582 | 0x02, 0xea, 0x4c, 0x05, | 592 | 0x02, 0xea, 0x4c, 0x05, |
583 | 0xff, 0xea, 0x4c, 0x0d, | 593 | 0xff, 0xea, 0x4c, 0x0d, |
584 | 0x00, 0xe2, 0x56, 0x59, | 594 | 0x00, 0xe2, 0x60, 0x59, |
585 | 0x02, 0xa6, 0x10, 0x6c, | 595 | 0x02, 0xa6, 0x24, 0x6c, |
586 | 0x80, 0xf9, 0xf2, 0x05, | 596 | 0x80, 0xf9, 0xf2, 0x05, |
587 | 0xc0, 0x39, 0x8b, 0x7c, | 597 | 0xc0, 0x39, 0x9f, 0x7c, |
588 | 0x03, 0xea, 0x64, 0x59, | 598 | 0x03, 0xea, 0x6e, 0x59, |
589 | 0x03, 0xea, 0x04, 0x00, | 599 | 0x03, 0xea, 0x04, 0x00, |
590 | 0x20, 0x39, 0xaf, 0x7c, | 600 | 0x20, 0x39, 0xc3, 0x7c, |
591 | 0x01, 0x84, 0x95, 0x6c, | 601 | 0x01, 0x84, 0xa9, 0x6c, |
592 | 0x06, 0xea, 0x64, 0x59, | 602 | 0x06, 0xea, 0x6e, 0x59, |
593 | 0x06, 0xea, 0x04, 0x00, | 603 | 0x06, 0xea, 0x04, 0x00, |
594 | 0x00, 0xe2, 0xb2, 0x44, | 604 | 0x00, 0xe2, 0xc6, 0x44, |
595 | 0x01, 0x00, 0x6c, 0x32, | 605 | 0x01, 0x00, 0x6c, 0x32, |
596 | 0xee, 0x00, 0x9e, 0x6c, | 606 | 0xee, 0x00, 0xb2, 0x6c, |
597 | 0x05, 0xea, 0xb4, 0x00, | 607 | 0x05, 0xea, 0xb4, 0x00, |
598 | 0x33, 0xea, 0x5e, 0x59, | 608 | 0x33, 0xea, 0x68, 0x59, |
599 | 0x33, 0xea, 0x00, 0x00, | 609 | 0x33, 0xea, 0x00, 0x00, |
600 | 0x80, 0x3d, 0x7a, 0x00, | 610 | 0x80, 0x3d, 0x7a, 0x00, |
601 | 0xfc, 0x42, 0xa0, 0x7c, | 611 | 0xfc, 0x42, 0xb4, 0x7c, |
602 | 0x7f, 0x3d, 0x7a, 0x08, | 612 | 0x7f, 0x3d, 0x7a, 0x08, |
603 | 0x00, 0x36, 0x5f, 0x59, | 613 | 0x00, 0x36, 0x69, 0x59, |
604 | 0x01, 0x36, 0x01, 0x30, | 614 | 0x01, 0x36, 0x01, 0x30, |
605 | 0x09, 0xea, 0x64, 0x59, | 615 | 0x09, 0xea, 0x6e, 0x59, |
606 | 0x09, 0xea, 0x04, 0x00, | 616 | 0x09, 0xea, 0x04, 0x00, |
607 | 0x00, 0xe2, 0x14, 0x42, | 617 | 0x00, 0xe2, 0x28, 0x42, |
608 | 0x01, 0xa4, 0x95, 0x6c, | 618 | 0x01, 0xa4, 0xa9, 0x6c, |
609 | 0x00, 0xe2, 0x68, 0x5c, | 619 | 0x00, 0xe2, 0x7c, 0x5c, |
610 | 0x20, 0x39, 0x73, 0x02, | 620 | 0x20, 0x39, 0x73, 0x02, |
611 | 0x01, 0x00, 0x6c, 0x32, | 621 | 0x01, 0x00, 0x6c, 0x32, |
612 | 0x02, 0xa6, 0xba, 0x7c, | 622 | 0x02, 0xa6, 0xce, 0x7c, |
613 | 0x00, 0xe2, 0x7e, 0x5c, | 623 | 0x00, 0xe2, 0x92, 0x5c, |
614 | 0x00, 0xe2, 0x76, 0x58, | 624 | 0x00, 0xe2, 0x76, 0x58, |
615 | 0x00, 0xe2, 0x86, 0x58, | 625 | 0x00, 0xe2, 0x86, 0x58, |
616 | 0x00, 0xe2, 0x5a, 0x58, | 626 | 0x00, 0xe2, 0x5a, 0x58, |
617 | 0x00, 0x36, 0x5f, 0x59, | 627 | 0x00, 0x36, 0x69, 0x59, |
618 | 0x01, 0x36, 0x01, 0x30, | 628 | 0x01, 0x36, 0x01, 0x30, |
619 | 0x20, 0x19, 0xba, 0x6c, | 629 | 0x20, 0x19, 0xce, 0x6c, |
620 | 0x00, 0xe2, 0xea, 0x5c, | 630 | 0x00, 0xe2, 0xfe, 0x5c, |
621 | 0x04, 0x19, 0xd4, 0x6c, | 631 | 0x04, 0x19, 0xe8, 0x6c, |
622 | 0x02, 0x19, 0x32, 0x00, | 632 | 0x02, 0x19, 0x32, 0x00, |
623 | 0x01, 0x84, 0xd5, 0x7c, | 633 | 0x01, 0x84, 0xe9, 0x7c, |
624 | 0x01, 0x1b, 0xce, 0x7c, | 634 | 0x01, 0x1b, 0xe2, 0x7c, |
625 | 0x01, 0x1a, 0xd4, 0x6c, | 635 | 0x01, 0x1a, 0xe8, 0x6c, |
626 | 0x00, 0xe2, 0x84, 0x44, | 636 | 0x00, 0xe2, 0x98, 0x44, |
627 | 0x80, 0x4b, 0xda, 0x6c, | 637 | 0x80, 0x4b, 0xee, 0x6c, |
628 | 0x01, 0x4c, 0xd6, 0x7c, | 638 | 0x01, 0x4c, 0xea, 0x7c, |
629 | 0x03, 0x42, 0x84, 0x6c, | 639 | 0x03, 0x42, 0x98, 0x6c, |
630 | 0x00, 0xe2, 0x0a, 0x5c, | 640 | 0x00, 0xe2, 0x1e, 0x5c, |
631 | 0x80, 0xf9, 0xf2, 0x01, | 641 | 0x80, 0xf9, 0xf2, 0x01, |
632 | 0x04, 0x39, 0x15, 0x7a, | 642 | 0x04, 0x39, 0x29, 0x7a, |
633 | 0x00, 0xe2, 0x14, 0x42, | 643 | 0x00, 0xe2, 0x28, 0x42, |
634 | 0x08, 0x5d, 0xf2, 0x6c, | 644 | 0x08, 0x5d, 0x06, 0x6d, |
635 | 0x00, 0xe2, 0x76, 0x58, | 645 | 0x00, 0xe2, 0x76, 0x58, |
636 | 0x00, 0x36, 0x5f, 0x59, | 646 | 0x00, 0x36, 0x69, 0x59, |
637 | 0x01, 0x36, 0x01, 0x30, | 647 | 0x01, 0x36, 0x01, 0x30, |
638 | 0x02, 0x1b, 0xe2, 0x7c, | 648 | 0x02, 0x1b, 0xf6, 0x7c, |
639 | 0x08, 0x5d, 0xf0, 0x7c, | 649 | 0x08, 0x5d, 0x04, 0x7d, |
640 | 0x03, 0x68, 0x00, 0x37, | 650 | 0x03, 0x68, 0x00, 0x37, |
641 | 0x01, 0x84, 0x09, 0x07, | 651 | 0x01, 0x84, 0x09, 0x07, |
642 | 0x80, 0x1b, 0xfc, 0x7c, | 652 | 0x80, 0x1b, 0x10, 0x7d, |
643 | 0x80, 0x84, 0xfd, 0x6c, | 653 | 0x80, 0x84, 0x11, 0x6d, |
644 | 0xff, 0x85, 0x0b, 0x1b, | 654 | 0xff, 0x85, 0x0b, 0x1b, |
645 | 0xff, 0x86, 0x0d, 0x23, | 655 | 0xff, 0x86, 0x0d, 0x23, |
646 | 0xff, 0x87, 0x0f, 0x23, | 656 | 0xff, 0x87, 0x0f, 0x23, |
@@ -652,161 +662,164 @@ static uint8_t seqprog[] = { | |||
652 | 0xf9, 0xd9, 0xb2, 0x0d, | 662 | 0xf9, 0xd9, 0xb2, 0x0d, |
653 | 0x01, 0xd9, 0xb2, 0x05, | 663 | 0x01, 0xd9, 0xb2, 0x05, |
654 | 0x01, 0x52, 0x48, 0x31, | 664 | 0x01, 0x52, 0x48, 0x31, |
655 | 0x20, 0xa4, 0x26, 0x7d, | 665 | 0x20, 0xa4, 0x3a, 0x7d, |
656 | 0x20, 0x5b, 0x26, 0x7d, | 666 | 0x20, 0x5b, 0x3a, 0x7d, |
657 | 0x80, 0xf9, 0x34, 0x7d, | 667 | 0x80, 0xf9, 0x48, 0x7d, |
658 | 0x02, 0xea, 0xb4, 0x00, | 668 | 0x02, 0xea, 0xb4, 0x00, |
659 | 0x11, 0x00, 0x00, 0x10, | 669 | 0x11, 0x00, 0x00, 0x10, |
660 | 0x04, 0x19, 0x40, 0x7d, | 670 | 0x04, 0x19, 0x54, 0x7d, |
661 | 0xdf, 0x19, 0x32, 0x08, | 671 | 0xdf, 0x19, 0x32, 0x08, |
662 | 0x60, 0x5b, 0x40, 0x6d, | 672 | 0x60, 0x5b, 0x54, 0x6d, |
663 | 0x01, 0x4c, 0x1a, 0x7d, | 673 | 0x01, 0x4c, 0x2e, 0x7d, |
664 | 0x20, 0x19, 0x32, 0x00, | 674 | 0x20, 0x19, 0x32, 0x00, |
665 | 0x01, 0xd9, 0xb2, 0x05, | 675 | 0x01, 0xd9, 0xb2, 0x05, |
666 | 0x02, 0xea, 0xb4, 0x00, | 676 | 0x02, 0xea, 0xb4, 0x00, |
667 | 0x01, 0xd9, 0xb2, 0x05, | 677 | 0x01, 0xd9, 0xb2, 0x05, |
668 | 0x10, 0x5b, 0x38, 0x6d, | 678 | 0x10, 0x5b, 0x4c, 0x6d, |
669 | 0x08, 0x5b, 0x42, 0x6d, | 679 | 0x08, 0x5b, 0x56, 0x6d, |
670 | 0x20, 0x5b, 0x32, 0x6d, | 680 | 0x20, 0x5b, 0x46, 0x6d, |
671 | 0x02, 0x5b, 0x62, 0x6d, | 681 | 0x02, 0x5b, 0x76, 0x6d, |
672 | 0x0e, 0xea, 0x64, 0x59, | 682 | 0x0e, 0xea, 0x6e, 0x59, |
673 | 0x0e, 0xea, 0x04, 0x00, | 683 | 0x0e, 0xea, 0x04, 0x00, |
674 | 0x80, 0xf9, 0x22, 0x6d, | 684 | 0x80, 0xf9, 0x36, 0x6d, |
675 | 0xdf, 0x5c, 0xb8, 0x08, | 685 | 0xdf, 0x5c, 0xb8, 0x08, |
676 | 0x01, 0xd9, 0xb2, 0x05, | 686 | 0x01, 0xd9, 0xb2, 0x05, |
677 | 0x01, 0xa4, 0x1d, 0x6e, | 687 | 0x01, 0xa4, 0x37, 0x6e, |
678 | 0x00, 0xe2, 0x68, 0x5c, | 688 | 0x00, 0xe2, 0x7c, 0x5c, |
679 | 0x00, 0xe2, 0x6c, 0x5d, | 689 | 0x00, 0xe2, 0x80, 0x5d, |
680 | 0x01, 0x90, 0x21, 0x1b, | 690 | 0x01, 0x90, 0x21, 0x1b, |
681 | 0x01, 0xd9, 0xb2, 0x05, | 691 | 0x01, 0xd9, 0xb2, 0x05, |
682 | 0x00, 0xe2, 0x52, 0x5b, | 692 | 0x00, 0xe2, 0x66, 0x5b, |
683 | 0xf3, 0x96, 0xd5, 0x19, | 693 | 0xf3, 0x96, 0xd5, 0x19, |
684 | 0x00, 0xe2, 0x50, 0x55, | 694 | 0x00, 0xe2, 0x64, 0x55, |
685 | 0x80, 0x96, 0x51, 0x6d, | 695 | 0x80, 0x96, 0x65, 0x6d, |
686 | 0x0f, 0xea, 0x64, 0x59, | 696 | 0x0f, 0xea, 0x6e, 0x59, |
687 | 0x0f, 0xea, 0x04, 0x00, | 697 | 0x0f, 0xea, 0x04, 0x00, |
688 | 0x00, 0xe2, 0x58, 0x45, | 698 | 0x00, 0xe2, 0x6c, 0x45, |
689 | 0x04, 0x8c, 0xe1, 0x30, | 699 | 0x04, 0x8c, 0xe1, 0x30, |
690 | 0x01, 0xea, 0xf2, 0x00, | 700 | 0x01, 0xea, 0xf2, 0x00, |
691 | 0x02, 0xea, 0x36, 0x00, | 701 | 0x02, 0xea, 0x36, 0x00, |
692 | 0xa8, 0xea, 0x32, 0x00, | 702 | 0xa8, 0xea, 0x32, 0x00, |
693 | 0xff, 0x97, 0x5f, 0x7d, | 703 | 0xff, 0x97, 0x73, 0x7d, |
694 | 0x14, 0xea, 0x64, 0x59, | 704 | 0x14, 0xea, 0x6e, 0x59, |
695 | 0x14, 0xea, 0x04, 0x00, | 705 | 0x14, 0xea, 0x04, 0x00, |
696 | 0x00, 0xe2, 0xce, 0x5d, | 706 | 0x00, 0xe2, 0xe2, 0x5d, |
697 | 0x01, 0xd9, 0xb2, 0x05, | 707 | 0x01, 0xd9, 0xb2, 0x05, |
698 | 0x09, 0x80, 0xe1, 0x30, | 708 | 0x09, 0x80, 0xe1, 0x30, |
699 | 0x02, 0xea, 0x36, 0x00, | 709 | 0x02, 0xea, 0x36, 0x00, |
700 | 0xa8, 0xea, 0x32, 0x00, | 710 | 0xa8, 0xea, 0x32, 0x00, |
701 | 0x00, 0xe2, 0xc6, 0x5d, | 711 | 0x00, 0xe2, 0xda, 0x5d, |
702 | 0x01, 0xd9, 0xb2, 0x05, | 712 | 0x01, 0xd9, 0xb2, 0x05, |
703 | 0x02, 0xa6, 0x7c, 0x7d, | 713 | 0x02, 0xa6, 0x90, 0x7d, |
704 | 0x00, 0xe2, 0x56, 0x59, | 714 | 0x00, 0xe2, 0x60, 0x59, |
705 | 0x20, 0x5b, 0x8a, 0x6d, | 715 | 0x20, 0x5b, 0x9e, 0x6d, |
706 | 0xfc, 0x42, 0x76, 0x7d, | 716 | 0xfc, 0x42, 0x8a, 0x7d, |
707 | 0x10, 0x40, 0x78, 0x6d, | 717 | 0x10, 0x40, 0x8c, 0x6d, |
708 | 0x20, 0x4d, 0x7a, 0x7d, | 718 | 0x20, 0x4d, 0x8e, 0x7d, |
709 | 0x08, 0x5d, 0x8a, 0x6d, | 719 | 0x08, 0x5d, 0x9e, 0x6d, |
710 | 0x02, 0xa6, 0x10, 0x6c, | 720 | 0x02, 0xa6, 0x24, 0x6c, |
711 | 0x00, 0xe2, 0x56, 0x59, | 721 | 0x00, 0xe2, 0x60, 0x59, |
712 | 0x20, 0x5b, 0x8a, 0x6d, | 722 | 0x20, 0x5b, 0x9e, 0x6d, |
713 | 0x01, 0x1b, 0xaa, 0x6d, | 723 | 0x01, 0x1b, 0xbe, 0x6d, |
714 | 0xfc, 0x42, 0x86, 0x7d, | 724 | 0xfc, 0x42, 0x9a, 0x7d, |
715 | 0x10, 0x40, 0x88, 0x6d, | 725 | 0x10, 0x40, 0x9c, 0x6d, |
716 | 0x20, 0x4d, 0x84, 0x78, | 726 | 0x20, 0x4d, 0x84, 0x78, |
717 | 0x08, 0x5d, 0x84, 0x78, | 727 | 0x08, 0x5d, 0x84, 0x78, |
718 | 0x02, 0x19, 0x32, 0x00, | 728 | 0x02, 0x19, 0x32, 0x00, |
719 | 0x01, 0x5b, 0x40, 0x31, | 729 | 0x01, 0x5b, 0x40, 0x31, |
720 | 0x00, 0xe2, 0xea, 0x5c, | 730 | 0x00, 0xe2, 0xfe, 0x5c, |
721 | 0x00, 0xe2, 0xcc, 0x5b, | 731 | 0x00, 0xe2, 0xe0, 0x5b, |
722 | 0x20, 0xea, 0xb6, 0x00, | 732 | 0x20, 0xea, 0xb6, 0x00, |
723 | 0x00, 0xe2, 0x0a, 0x5c, | 733 | 0x00, 0xe2, 0x1e, 0x5c, |
724 | 0x20, 0x5c, 0xb8, 0x00, | 734 | 0x20, 0x5c, 0xb8, 0x00, |
725 | 0x04, 0x19, 0xa0, 0x6d, | 735 | 0x04, 0x19, 0xb4, 0x6d, |
726 | 0x01, 0x1a, 0xa0, 0x6d, | 736 | 0x01, 0x1a, 0xb4, 0x6d, |
727 | 0x00, 0xe2, 0x56, 0x59, | 737 | 0x00, 0xe2, 0x60, 0x59, |
728 | 0x01, 0x1a, 0x84, 0x78, | 738 | 0x01, 0x1a, 0x84, 0x78, |
729 | 0x80, 0xf9, 0xf2, 0x01, | 739 | 0x80, 0xf9, 0xf2, 0x01, |
730 | 0x20, 0xa0, 0x04, 0x7e, | 740 | 0x20, 0xa0, 0x18, 0x7e, |
731 | 0xff, 0x90, 0x21, 0x1b, | 741 | 0xff, 0x90, 0x21, 0x1b, |
732 | 0x08, 0x92, 0x63, 0x6b, | 742 | 0x08, 0x92, 0x77, 0x6b, |
733 | 0x02, 0xea, 0xb4, 0x04, | 743 | 0x02, 0xea, 0xb4, 0x04, |
734 | 0x01, 0xa4, 0x49, 0x03, | 744 | 0x01, 0xa4, 0x49, 0x03, |
735 | 0x40, 0x5b, 0xba, 0x6d, | 745 | 0x40, 0x5b, 0xce, 0x6d, |
736 | 0x00, 0xe2, 0x56, 0x59, | 746 | 0x00, 0xe2, 0x60, 0x59, |
737 | 0x40, 0x5b, 0xba, 0x6d, | 747 | 0x40, 0x5b, 0xce, 0x6d, |
738 | 0x04, 0x5d, 0x1e, 0x7e, | 748 | 0x04, 0x5d, 0x38, 0x7e, |
739 | 0x01, 0x1a, 0x1e, 0x7e, | 749 | 0x01, 0x1a, 0x38, 0x7e, |
740 | 0x20, 0x4d, 0x84, 0x78, | 750 | 0x20, 0x4d, 0x84, 0x78, |
741 | 0x40, 0x5b, 0x04, 0x7e, | 751 | 0x40, 0x5b, 0x18, 0x7e, |
742 | 0x04, 0x5d, 0x1e, 0x7e, | 752 | 0x04, 0x5d, 0x38, 0x7e, |
743 | 0x01, 0x1a, 0x1e, 0x7e, | 753 | 0x01, 0x1a, 0x38, 0x7e, |
744 | 0x80, 0xf9, 0xf2, 0x01, | 754 | 0x80, 0xf9, 0xf2, 0x01, |
745 | 0xff, 0x90, 0x21, 0x1b, | 755 | 0xff, 0x90, 0x21, 0x1b, |
746 | 0x08, 0x92, 0x63, 0x6b, | 756 | 0x08, 0x92, 0x77, 0x6b, |
747 | 0x02, 0xea, 0xb4, 0x04, | 757 | 0x02, 0xea, 0xb4, 0x04, |
748 | 0x00, 0xe2, 0x56, 0x59, | 758 | 0x00, 0xe2, 0x60, 0x59, |
749 | 0x01, 0x1b, 0x84, 0x78, | 759 | 0x01, 0x1b, 0x84, 0x78, |
750 | 0x80, 0xf9, 0xf2, 0x01, | 760 | 0x80, 0xf9, 0xf2, 0x01, |
751 | 0x02, 0xea, 0xb4, 0x04, | 761 | 0x02, 0xea, 0xb4, 0x04, |
752 | 0x00, 0xe2, 0x56, 0x59, | 762 | 0x00, 0xe2, 0x60, 0x59, |
753 | 0x01, 0x1b, 0xe2, 0x6d, | 763 | 0x01, 0x1b, 0xf6, 0x6d, |
754 | 0x40, 0x5b, 0xf0, 0x7d, | 764 | 0x40, 0x5b, 0x04, 0x7e, |
755 | 0x01, 0x1b, 0xe2, 0x6d, | 765 | 0x01, 0x1b, 0xf6, 0x6d, |
756 | 0x02, 0x19, 0x32, 0x00, | 766 | 0x02, 0x19, 0x32, 0x00, |
757 | 0x01, 0x1a, 0x84, 0x78, | 767 | 0x01, 0x1a, 0x84, 0x78, |
758 | 0x80, 0xf9, 0xf2, 0x01, | 768 | 0x80, 0xf9, 0xf2, 0x01, |
759 | 0xff, 0xea, 0x10, 0x03, | 769 | 0xff, 0xea, 0x10, 0x03, |
760 | 0x08, 0x92, 0x25, 0x03, | 770 | 0x08, 0x92, 0x25, 0x03, |
761 | 0x00, 0xe2, 0x62, 0x43, | 771 | 0x00, 0xe2, 0x76, 0x43, |
762 | 0x01, 0x1a, 0xec, 0x7d, | 772 | 0x01, 0x1a, 0x00, 0x7e, |
763 | 0x40, 0x5b, 0xe8, 0x7d, | 773 | 0x40, 0x5b, 0xfc, 0x7d, |
764 | 0x01, 0x1a, 0xd6, 0x6d, | 774 | 0x01, 0x1a, 0xea, 0x6d, |
765 | 0xfc, 0x42, 0x84, 0x78, | 775 | 0xfc, 0x42, 0x84, 0x78, |
766 | 0x01, 0x1a, 0xf0, 0x6d, | 776 | 0x01, 0x1a, 0x04, 0x6e, |
767 | 0x10, 0xea, 0x64, 0x59, | 777 | 0x10, 0xea, 0x6e, 0x59, |
768 | 0x10, 0xea, 0x04, 0x00, | 778 | 0x10, 0xea, 0x04, 0x00, |
769 | 0xfc, 0x42, 0x84, 0x78, | 779 | 0xfc, 0x42, 0x84, 0x78, |
770 | 0x10, 0x40, 0xf6, 0x6d, | 780 | 0x10, 0x40, 0x0a, 0x6e, |
771 | 0x20, 0x4d, 0x84, 0x78, | 781 | 0x20, 0x4d, 0x84, 0x78, |
772 | 0x40, 0x5b, 0xd6, 0x6d, | 782 | 0x40, 0x5b, 0xea, 0x6d, |
773 | 0x01, 0x1a, 0x84, 0x78, | 783 | 0x01, 0x1a, 0x84, 0x78, |
774 | 0x01, 0x90, 0x21, 0x1b, | 784 | 0x01, 0x90, 0x21, 0x1b, |
775 | 0x30, 0x3f, 0xc0, 0x09, | 785 | 0x30, 0x3f, 0xc0, 0x09, |
776 | 0x30, 0xe0, 0x84, 0x60, | 786 | 0x30, 0xe0, 0x84, 0x60, |
777 | 0x40, 0x4b, 0x84, 0x68, | 787 | 0x40, 0x4b, 0x84, 0x68, |
778 | 0xff, 0xea, 0x52, 0x01, | 788 | 0xff, 0xea, 0x52, 0x01, |
779 | 0xee, 0x00, 0x0c, 0x6e, | 789 | 0xee, 0x00, 0x20, 0x6e, |
780 | 0x80, 0xf9, 0xf2, 0x01, | 790 | 0x80, 0xf9, 0xf2, 0x01, |
781 | 0xff, 0x90, 0x21, 0x1b, | 791 | 0xff, 0x90, 0x21, 0x1b, |
782 | 0x02, 0xea, 0xb4, 0x00, | 792 | 0x02, 0xea, 0xb4, 0x00, |
783 | 0x20, 0xea, 0x9a, 0x00, | 793 | 0x20, 0xea, 0x9a, 0x00, |
784 | 0xf3, 0x42, 0x16, 0x6e, | 794 | 0x04, 0x41, 0x26, 0x7e, |
785 | 0x12, 0xea, 0x64, 0x59, | 795 | 0x08, 0xea, 0x98, 0x00, |
796 | 0x08, 0x57, 0xae, 0x00, | ||
797 | 0xf3, 0x42, 0x30, 0x6e, | ||
798 | 0x12, 0xea, 0x6e, 0x59, | ||
786 | 0x12, 0xea, 0x04, 0x00, | 799 | 0x12, 0xea, 0x04, 0x00, |
787 | 0x00, 0xe2, 0x14, 0x42, | 800 | 0x00, 0xe2, 0x28, 0x42, |
788 | 0x0d, 0xea, 0x64, 0x59, | 801 | 0x0d, 0xea, 0x6e, 0x59, |
789 | 0x0d, 0xea, 0x04, 0x00, | 802 | 0x0d, 0xea, 0x04, 0x00, |
790 | 0x00, 0xe2, 0x14, 0x42, | 803 | 0x00, 0xe2, 0x28, 0x42, |
791 | 0x01, 0x90, 0x21, 0x1b, | 804 | 0x01, 0x90, 0x21, 0x1b, |
792 | 0x11, 0xea, 0x64, 0x59, | 805 | 0x11, 0xea, 0x6e, 0x59, |
793 | 0x11, 0xea, 0x04, 0x00, | 806 | 0x11, 0xea, 0x04, 0x00, |
794 | 0x00, 0xe2, 0x52, 0x5b, | 807 | 0x00, 0xe2, 0x66, 0x5b, |
795 | 0x08, 0x5a, 0xb4, 0x00, | 808 | 0x08, 0x5a, 0xb4, 0x00, |
796 | 0x00, 0xe2, 0x44, 0x5e, | 809 | 0x00, 0xe2, 0x5e, 0x5e, |
797 | 0xa8, 0xea, 0x32, 0x00, | 810 | 0xa8, 0xea, 0x32, 0x00, |
798 | 0x00, 0xe2, 0x56, 0x59, | 811 | 0x00, 0xe2, 0x60, 0x59, |
799 | 0x80, 0x1a, 0x32, 0x7e, | 812 | 0x80, 0x1a, 0x4c, 0x7e, |
800 | 0x00, 0xe2, 0x44, 0x5e, | 813 | 0x00, 0xe2, 0x5e, 0x5e, |
801 | 0x80, 0x19, 0x32, 0x00, | 814 | 0x80, 0x19, 0x32, 0x00, |
802 | 0x40, 0x5b, 0x38, 0x6e, | 815 | 0x40, 0x5b, 0x52, 0x6e, |
803 | 0x08, 0x5a, 0x38, 0x7e, | 816 | 0x08, 0x5a, 0x52, 0x7e, |
804 | 0x20, 0x4d, 0x84, 0x78, | 817 | 0x20, 0x4d, 0x84, 0x78, |
805 | 0x02, 0x84, 0x09, 0x03, | 818 | 0x02, 0x84, 0x09, 0x03, |
806 | 0x40, 0x5b, 0x04, 0x7e, | 819 | 0x40, 0x5b, 0x18, 0x7e, |
807 | 0xff, 0x90, 0x21, 0x1b, | 820 | 0xff, 0x90, 0x21, 0x1b, |
808 | 0x80, 0xf9, 0xf2, 0x01, | 821 | 0x80, 0xf9, 0xf2, 0x01, |
809 | 0x08, 0x92, 0x63, 0x6b, | 822 | 0x08, 0x92, 0x77, 0x6b, |
810 | 0x02, 0xea, 0xb4, 0x04, | 823 | 0x02, 0xea, 0xb4, 0x04, |
811 | 0x01, 0x40, 0xe1, 0x30, | 824 | 0x01, 0x40, 0xe1, 0x30, |
812 | 0x05, 0x41, 0xe3, 0x98, | 825 | 0x05, 0x41, 0xe3, 0x98, |
@@ -1039,138 +1052,138 @@ static struct patch { | |||
1039 | { ahd_patch0_func, 64, 1, 1 }, | 1052 | { ahd_patch0_func, 64, 1, 1 }, |
1040 | { ahd_patch2_func, 67, 1, 2 }, | 1053 | { ahd_patch2_func, 67, 1, 2 }, |
1041 | { ahd_patch0_func, 68, 1, 1 }, | 1054 | { ahd_patch0_func, 68, 1, 1 }, |
1042 | { ahd_patch4_func, 116, 1, 1 }, | 1055 | { ahd_patch4_func, 115, 1, 1 }, |
1043 | { ahd_patch2_func, 175, 3, 1 }, | 1056 | { ahd_patch2_func, 180, 3, 1 }, |
1044 | { ahd_patch1_func, 178, 2, 1 }, | 1057 | { ahd_patch1_func, 183, 2, 1 }, |
1045 | { ahd_patch5_func, 180, 1, 1 }, | 1058 | { ahd_patch5_func, 185, 1, 1 }, |
1046 | { ahd_patch2_func, 189, 1, 2 }, | 1059 | { ahd_patch2_func, 194, 1, 2 }, |
1047 | { ahd_patch0_func, 190, 1, 1 }, | 1060 | { ahd_patch0_func, 195, 1, 1 }, |
1048 | { ahd_patch6_func, 191, 2, 2 }, | 1061 | { ahd_patch6_func, 196, 2, 2 }, |
1049 | { ahd_patch0_func, 193, 6, 3 }, | 1062 | { ahd_patch0_func, 198, 6, 3 }, |
1050 | { ahd_patch2_func, 196, 1, 2 }, | 1063 | { ahd_patch2_func, 201, 1, 2 }, |
1051 | { ahd_patch0_func, 197, 1, 1 }, | 1064 | { ahd_patch0_func, 202, 1, 1 }, |
1052 | { ahd_patch2_func, 200, 1, 2 }, | 1065 | { ahd_patch2_func, 205, 1, 2 }, |
1053 | { ahd_patch0_func, 201, 1, 1 }, | 1066 | { ahd_patch0_func, 206, 1, 1 }, |
1054 | { ahd_patch3_func, 203, 1, 1 }, | 1067 | { ahd_patch3_func, 208, 1, 1 }, |
1055 | { ahd_patch7_func, 204, 3, 1 }, | 1068 | { ahd_patch7_func, 209, 3, 1 }, |
1056 | { ahd_patch3_func, 213, 1, 1 }, | 1069 | { ahd_patch3_func, 218, 1, 1 }, |
1057 | { ahd_patch5_func, 214, 16, 2 }, | 1070 | { ahd_patch5_func, 219, 16, 2 }, |
1058 | { ahd_patch0_func, 230, 1, 1 }, | 1071 | { ahd_patch0_func, 235, 1, 1 }, |
1059 | { ahd_patch8_func, 250, 2, 1 }, | 1072 | { ahd_patch8_func, 260, 2, 1 }, |
1060 | { ahd_patch1_func, 254, 1, 2 }, | 1073 | { ahd_patch1_func, 264, 1, 2 }, |
1061 | { ahd_patch0_func, 255, 1, 1 }, | 1074 | { ahd_patch0_func, 265, 1, 1 }, |
1062 | { ahd_patch7_func, 258, 3, 1 }, | 1075 | { ahd_patch7_func, 268, 3, 1 }, |
1063 | { ahd_patch1_func, 273, 1, 2 }, | 1076 | { ahd_patch1_func, 283, 1, 2 }, |
1064 | { ahd_patch0_func, 274, 1, 1 }, | 1077 | { ahd_patch0_func, 284, 1, 1 }, |
1065 | { ahd_patch1_func, 277, 1, 2 }, | 1078 | { ahd_patch1_func, 287, 1, 2 }, |
1066 | { ahd_patch0_func, 278, 1, 1 }, | 1079 | { ahd_patch0_func, 288, 1, 1 }, |
1067 | { ahd_patch2_func, 281, 1, 2 }, | 1080 | { ahd_patch2_func, 291, 1, 2 }, |
1068 | { ahd_patch0_func, 282, 1, 1 }, | 1081 | { ahd_patch0_func, 292, 1, 1 }, |
1069 | { ahd_patch9_func, 295, 2, 2 }, | 1082 | { ahd_patch9_func, 305, 2, 2 }, |
1070 | { ahd_patch0_func, 297, 1, 1 }, | 1083 | { ahd_patch0_func, 307, 1, 1 }, |
1071 | { ahd_patch1_func, 339, 1, 2 }, | 1084 | { ahd_patch1_func, 349, 1, 2 }, |
1072 | { ahd_patch0_func, 340, 1, 1 }, | 1085 | { ahd_patch0_func, 350, 1, 1 }, |
1073 | { ahd_patch2_func, 348, 1, 2 }, | 1086 | { ahd_patch2_func, 358, 1, 2 }, |
1074 | { ahd_patch0_func, 349, 1, 1 }, | 1087 | { ahd_patch0_func, 359, 1, 1 }, |
1075 | { ahd_patch2_func, 352, 1, 2 }, | 1088 | { ahd_patch2_func, 362, 1, 2 }, |
1076 | { ahd_patch0_func, 353, 1, 1 }, | ||
1077 | { ahd_patch1_func, 359, 1, 2 }, | ||
1078 | { ahd_patch0_func, 360, 1, 1 }, | ||
1079 | { ahd_patch1_func, 362, 1, 2 }, | ||
1080 | { ahd_patch0_func, 363, 1, 1 }, | 1089 | { ahd_patch0_func, 363, 1, 1 }, |
1081 | { ahd_patch10_func, 382, 1, 1 }, | 1090 | { ahd_patch1_func, 369, 1, 2 }, |
1082 | { ahd_patch10_func, 385, 1, 1 }, | 1091 | { ahd_patch0_func, 370, 1, 1 }, |
1083 | { ahd_patch10_func, 387, 1, 1 }, | 1092 | { ahd_patch1_func, 372, 1, 2 }, |
1084 | { ahd_patch10_func, 399, 1, 1 }, | 1093 | { ahd_patch0_func, 373, 1, 1 }, |
1085 | { ahd_patch1_func, 409, 1, 2 }, | 1094 | { ahd_patch10_func, 392, 1, 1 }, |
1086 | { ahd_patch0_func, 410, 1, 1 }, | 1095 | { ahd_patch10_func, 395, 1, 1 }, |
1087 | { ahd_patch1_func, 412, 1, 2 }, | 1096 | { ahd_patch10_func, 397, 1, 1 }, |
1088 | { ahd_patch0_func, 413, 1, 1 }, | 1097 | { ahd_patch10_func, 409, 1, 1 }, |
1089 | { ahd_patch1_func, 421, 1, 2 }, | 1098 | { ahd_patch1_func, 419, 1, 2 }, |
1090 | { ahd_patch0_func, 422, 1, 1 }, | 1099 | { ahd_patch0_func, 420, 1, 1 }, |
1091 | { ahd_patch2_func, 435, 1, 2 }, | 1100 | { ahd_patch1_func, 422, 1, 2 }, |
1092 | { ahd_patch0_func, 436, 1, 1 }, | 1101 | { ahd_patch0_func, 423, 1, 1 }, |
1093 | { ahd_patch11_func, 472, 1, 1 }, | 1102 | { ahd_patch1_func, 431, 1, 2 }, |
1094 | { ahd_patch1_func, 480, 1, 2 }, | 1103 | { ahd_patch0_func, 432, 1, 1 }, |
1095 | { ahd_patch0_func, 481, 1, 1 }, | 1104 | { ahd_patch2_func, 445, 1, 2 }, |
1096 | { ahd_patch2_func, 493, 1, 2 }, | 1105 | { ahd_patch0_func, 446, 1, 1 }, |
1097 | { ahd_patch0_func, 494, 1, 1 }, | 1106 | { ahd_patch11_func, 482, 1, 1 }, |
1098 | { ahd_patch12_func, 497, 6, 2 }, | 1107 | { ahd_patch1_func, 490, 1, 2 }, |
1099 | { ahd_patch0_func, 503, 1, 1 }, | 1108 | { ahd_patch0_func, 491, 1, 1 }, |
1100 | { ahd_patch13_func, 524, 7, 1 }, | 1109 | { ahd_patch2_func, 503, 1, 2 }, |
1101 | { ahd_patch14_func, 533, 1, 1 }, | 1110 | { ahd_patch0_func, 504, 1, 1 }, |
1102 | { ahd_patch15_func, 542, 1, 1 }, | 1111 | { ahd_patch12_func, 507, 6, 2 }, |
1103 | { ahd_patch16_func, 543, 1, 2 }, | 1112 | { ahd_patch0_func, 513, 1, 1 }, |
1104 | { ahd_patch0_func, 544, 1, 1 }, | 1113 | { ahd_patch13_func, 534, 7, 1 }, |
1105 | { ahd_patch17_func, 547, 1, 1 }, | 1114 | { ahd_patch14_func, 543, 1, 1 }, |
1106 | { ahd_patch16_func, 548, 1, 1 }, | 1115 | { ahd_patch15_func, 552, 1, 1 }, |
1107 | { ahd_patch18_func, 559, 1, 2 }, | 1116 | { ahd_patch16_func, 553, 1, 2 }, |
1108 | { ahd_patch0_func, 560, 1, 1 }, | 1117 | { ahd_patch0_func, 554, 1, 1 }, |
1109 | { ahd_patch1_func, 579, 1, 2 }, | 1118 | { ahd_patch17_func, 557, 1, 1 }, |
1110 | { ahd_patch0_func, 580, 1, 1 }, | 1119 | { ahd_patch16_func, 558, 1, 1 }, |
1111 | { ahd_patch1_func, 583, 1, 2 }, | 1120 | { ahd_patch18_func, 569, 1, 2 }, |
1112 | { ahd_patch0_func, 584, 1, 1 }, | 1121 | { ahd_patch0_func, 570, 1, 1 }, |
1113 | { ahd_patch2_func, 589, 1, 2 }, | 1122 | { ahd_patch1_func, 589, 1, 2 }, |
1114 | { ahd_patch0_func, 590, 1, 1 }, | 1123 | { ahd_patch0_func, 590, 1, 1 }, |
1115 | { ahd_patch2_func, 594, 1, 2 }, | 1124 | { ahd_patch1_func, 593, 1, 2 }, |
1116 | { ahd_patch0_func, 595, 1, 1 }, | 1125 | { ahd_patch0_func, 594, 1, 1 }, |
1117 | { ahd_patch1_func, 596, 1, 2 }, | 1126 | { ahd_patch2_func, 599, 1, 2 }, |
1118 | { ahd_patch0_func, 597, 1, 1 }, | 1127 | { ahd_patch0_func, 600, 1, 1 }, |
1119 | { ahd_patch2_func, 608, 1, 2 }, | 1128 | { ahd_patch2_func, 604, 1, 2 }, |
1120 | { ahd_patch0_func, 609, 1, 1 }, | 1129 | { ahd_patch0_func, 605, 1, 1 }, |
1121 | { ahd_patch19_func, 613, 1, 1 }, | 1130 | { ahd_patch1_func, 606, 1, 2 }, |
1122 | { ahd_patch20_func, 618, 1, 1 }, | 1131 | { ahd_patch0_func, 607, 1, 1 }, |
1123 | { ahd_patch21_func, 619, 2, 1 }, | 1132 | { ahd_patch2_func, 618, 1, 2 }, |
1124 | { ahd_patch20_func, 623, 1, 2 }, | 1133 | { ahd_patch0_func, 619, 1, 1 }, |
1125 | { ahd_patch0_func, 624, 1, 1 }, | 1134 | { ahd_patch19_func, 623, 1, 1 }, |
1126 | { ahd_patch2_func, 627, 1, 2 }, | 1135 | { ahd_patch20_func, 628, 1, 1 }, |
1127 | { ahd_patch0_func, 628, 1, 1 }, | 1136 | { ahd_patch21_func, 629, 2, 1 }, |
1128 | { ahd_patch2_func, 643, 1, 2 }, | 1137 | { ahd_patch20_func, 633, 1, 2 }, |
1129 | { ahd_patch0_func, 644, 1, 1 }, | 1138 | { ahd_patch0_func, 634, 1, 1 }, |
1130 | { ahd_patch13_func, 645, 14, 1 }, | 1139 | { ahd_patch2_func, 637, 1, 2 }, |
1131 | { ahd_patch1_func, 663, 1, 2 }, | 1140 | { ahd_patch0_func, 638, 1, 1 }, |
1132 | { ahd_patch0_func, 664, 1, 1 }, | 1141 | { ahd_patch2_func, 653, 1, 2 }, |
1133 | { ahd_patch13_func, 665, 1, 1 }, | 1142 | { ahd_patch0_func, 654, 1, 1 }, |
1134 | { ahd_patch1_func, 677, 1, 2 }, | 1143 | { ahd_patch13_func, 655, 14, 1 }, |
1135 | { ahd_patch0_func, 678, 1, 1 }, | 1144 | { ahd_patch1_func, 673, 1, 2 }, |
1136 | { ahd_patch1_func, 685, 1, 2 }, | 1145 | { ahd_patch0_func, 674, 1, 1 }, |
1137 | { ahd_patch0_func, 686, 1, 1 }, | 1146 | { ahd_patch13_func, 675, 1, 1 }, |
1138 | { ahd_patch19_func, 709, 1, 1 }, | 1147 | { ahd_patch1_func, 687, 1, 2 }, |
1139 | { ahd_patch19_func, 747, 1, 1 }, | 1148 | { ahd_patch0_func, 688, 1, 1 }, |
1140 | { ahd_patch1_func, 758, 1, 2 }, | 1149 | { ahd_patch1_func, 695, 1, 2 }, |
1141 | { ahd_patch0_func, 759, 1, 1 }, | 1150 | { ahd_patch0_func, 696, 1, 1 }, |
1142 | { ahd_patch1_func, 776, 1, 2 }, | 1151 | { ahd_patch19_func, 719, 1, 1 }, |
1143 | { ahd_patch0_func, 777, 1, 1 }, | 1152 | { ahd_patch19_func, 757, 1, 1 }, |
1144 | { ahd_patch1_func, 779, 1, 2 }, | 1153 | { ahd_patch1_func, 768, 1, 2 }, |
1145 | { ahd_patch0_func, 780, 1, 1 }, | 1154 | { ahd_patch0_func, 769, 1, 1 }, |
1146 | { ahd_patch1_func, 783, 1, 2 }, | 1155 | { ahd_patch7_func, 785, 3, 1 }, |
1147 | { ahd_patch0_func, 784, 1, 1 }, | 1156 | { ahd_patch1_func, 789, 1, 2 }, |
1148 | { ahd_patch22_func, 786, 1, 2 }, | 1157 | { ahd_patch0_func, 790, 1, 1 }, |
1149 | { ahd_patch0_func, 787, 2, 1 }, | 1158 | { ahd_patch1_func, 792, 1, 2 }, |
1150 | { ahd_patch23_func, 790, 4, 2 }, | 1159 | { ahd_patch0_func, 793, 1, 1 }, |
1151 | { ahd_patch0_func, 794, 1, 1 }, | 1160 | { ahd_patch1_func, 796, 1, 2 }, |
1152 | { ahd_patch23_func, 802, 11, 1 } | 1161 | { ahd_patch0_func, 797, 1, 1 }, |
1162 | { ahd_patch22_func, 799, 1, 2 }, | ||
1163 | { ahd_patch0_func, 800, 2, 1 }, | ||
1164 | { ahd_patch23_func, 803, 4, 2 }, | ||
1165 | { ahd_patch0_func, 807, 1, 1 }, | ||
1166 | { ahd_patch23_func, 815, 11, 1 } | ||
1153 | }; | 1167 | }; |
1154 | 1168 | ||
1155 | static struct cs { | 1169 | static struct cs { |
1156 | uint16_t begin; | 1170 | uint16_t begin; |
1157 | uint16_t end; | 1171 | uint16_t end; |
1158 | } critical_sections[] = { | 1172 | } critical_sections[] = { |
1159 | { 17, 28 }, | 1173 | { 17, 30 }, |
1160 | { 29, 30 }, | ||
1161 | { 47, 58 }, | 1174 | { 47, 58 }, |
1162 | { 61, 63 }, | 1175 | { 61, 63 }, |
1163 | { 65, 66 }, | 1176 | { 65, 66 }, |
1164 | { 72, 92 }, | 1177 | { 72, 92 }, |
1165 | { 110, 137 }, | 1178 | { 110, 142 }, |
1166 | { 138, 175 }, | 1179 | { 143, 180 }, |
1167 | { 180, 188 }, | 1180 | { 185, 193 }, |
1168 | { 213, 264 }, | 1181 | { 218, 274 }, |
1169 | { 425, 433 }, | 1182 | { 435, 443 }, |
1170 | { 443, 445 }, | 1183 | { 453, 455 }, |
1171 | { 448, 457 }, | 1184 | { 458, 467 }, |
1172 | { 709, 739 }, | 1185 | { 719, 749 }, |
1173 | { 749, 753 } | 1186 | { 759, 763 } |
1174 | }; | 1187 | }; |
1175 | 1188 | ||
1176 | static const int num_critical_sections = sizeof(critical_sections) | 1189 | static const int num_critical_sections = sizeof(critical_sections) |
diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm.c b/drivers/scsi/aic7xxx/aicasm/aicasm.c index f936b691232f..924102720b14 100644 --- a/drivers/scsi/aic7xxx/aicasm/aicasm.c +++ b/drivers/scsi/aic7xxx/aicasm/aicasm.c | |||
@@ -37,7 +37,7 @@ | |||
37 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 37 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
38 | * POSSIBILITY OF SUCH DAMAGES. | 38 | * POSSIBILITY OF SUCH DAMAGES. |
39 | * | 39 | * |
40 | * $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm.c#22 $ | 40 | * $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm.c#23 $ |
41 | * | 41 | * |
42 | * $FreeBSD$ | 42 | * $FreeBSD$ |
43 | */ | 43 | */ |
@@ -609,10 +609,10 @@ output_listing(char *ifilename) | |||
609 | 609 | ||
610 | while (line < cur_instr->srcline) { | 610 | while (line < cur_instr->srcline) { |
611 | fgets(buf, sizeof(buf), ifile); | 611 | fgets(buf, sizeof(buf), ifile); |
612 | fprintf(listfile, "\t\t%s", buf); | 612 | fprintf(listfile, " \t%s", buf); |
613 | line++; | 613 | line++; |
614 | } | 614 | } |
615 | fprintf(listfile, "%03x %02x%02x%02x%02x", instrptr, | 615 | fprintf(listfile, "%04x %02x%02x%02x%02x", instrptr, |
616 | #ifdef __LITTLE_ENDIAN | 616 | #ifdef __LITTLE_ENDIAN |
617 | cur_instr->format.bytes[0], | 617 | cur_instr->format.bytes[0], |
618 | cur_instr->format.bytes[1], | 618 | cur_instr->format.bytes[1], |
@@ -624,14 +624,23 @@ output_listing(char *ifilename) | |||
624 | cur_instr->format.bytes[1], | 624 | cur_instr->format.bytes[1], |
625 | cur_instr->format.bytes[0]); | 625 | cur_instr->format.bytes[0]); |
626 | #endif | 626 | #endif |
627 | fgets(buf, sizeof(buf), ifile); | 627 | /* |
628 | fprintf(listfile, "\t%s", buf); | 628 | * Macro expansions can cause several instructions |
629 | line++; | 629 | * to be output for a single source line. Only |
630 | * advance the line once in these cases. | ||
631 | */ | ||
632 | if (line == cur_instr->srcline) { | ||
633 | fgets(buf, sizeof(buf), ifile); | ||
634 | fprintf(listfile, "\t%s", buf); | ||
635 | line++; | ||
636 | } else { | ||
637 | fprintf(listfile, "\n"); | ||
638 | } | ||
630 | instrptr++; | 639 | instrptr++; |
631 | } | 640 | } |
632 | /* Dump the remainder of the file */ | 641 | /* Dump the remainder of the file */ |
633 | while(fgets(buf, sizeof(buf), ifile) != NULL) | 642 | while(fgets(buf, sizeof(buf), ifile) != NULL) |
634 | fprintf(listfile, "\t\t%s", buf); | 643 | fprintf(listfile, " %s", buf); |
635 | 644 | ||
636 | fclose(ifile); | 645 | fclose(ifile); |
637 | } | 646 | } |
diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm_gram.y b/drivers/scsi/aic7xxx/aicasm/aicasm_gram.y index 67e046d96625..c328596def3c 100644 --- a/drivers/scsi/aic7xxx/aicasm/aicasm_gram.y +++ b/drivers/scsi/aic7xxx/aicasm/aicasm_gram.y | |||
@@ -38,7 +38,7 @@ | |||
38 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 38 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
39 | * POSSIBILITY OF SUCH DAMAGES. | 39 | * POSSIBILITY OF SUCH DAMAGES. |
40 | * | 40 | * |
41 | * $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm_gram.y#29 $ | 41 | * $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm_gram.y#30 $ |
42 | * | 42 | * |
43 | * $FreeBSD$ | 43 | * $FreeBSD$ |
44 | */ | 44 | */ |
@@ -157,6 +157,8 @@ static int is_download_const(expression_t *immed); | |||
157 | 157 | ||
158 | %token T_END_CS | 158 | %token T_END_CS |
159 | 159 | ||
160 | %token T_PAD_PAGE | ||
161 | |||
160 | %token T_FIELD | 162 | %token T_FIELD |
161 | 163 | ||
162 | %token T_ENUM | 164 | %token T_ENUM |
@@ -189,6 +191,10 @@ static int is_download_const(expression_t *immed); | |||
189 | 191 | ||
190 | %token <value> T_OR | 192 | %token <value> T_OR |
191 | 193 | ||
194 | /* 16 bit extensions */ | ||
195 | %token <value> T_OR16 T_AND16 T_XOR16 T_ADD16 | ||
196 | %token <value> T_ADC16 T_MVI16 T_TEST16 T_CMP16 T_CMPXCHG | ||
197 | |||
192 | %token T_RET | 198 | %token T_RET |
193 | 199 | ||
194 | %token T_NOP | 200 | %token T_NOP |
@@ -207,7 +213,7 @@ static int is_download_const(expression_t *immed); | |||
207 | 213 | ||
208 | %type <expression> expression immediate immediate_or_a | 214 | %type <expression> expression immediate immediate_or_a |
209 | 215 | ||
210 | %type <value> export ret f1_opcode f2_opcode jmp_jc_jnc_call jz_jnz je_jne | 216 | %type <value> export ret f1_opcode f2_opcode f4_opcode jmp_jc_jnc_call jz_jnz je_jne |
211 | 217 | ||
212 | %type <value> mode_value mode_list macro_arglist | 218 | %type <value> mode_value mode_list macro_arglist |
213 | 219 | ||
@@ -1304,6 +1310,15 @@ f2_opcode: | |||
1304 | | T_ROR { $$ = AIC_OP_ROR; } | 1310 | | T_ROR { $$ = AIC_OP_ROR; } |
1305 | ; | 1311 | ; |
1306 | 1312 | ||
1313 | f4_opcode: | ||
1314 | T_OR16 { $$ = AIC_OP_OR16; } | ||
1315 | | T_AND16 { $$ = AIC_OP_AND16; } | ||
1316 | | T_XOR16 { $$ = AIC_OP_XOR16; } | ||
1317 | | T_ADD16 { $$ = AIC_OP_ADD16; } | ||
1318 | | T_ADC16 { $$ = AIC_OP_ADC16; } | ||
1319 | | T_MVI16 { $$ = AIC_OP_MVI16; } | ||
1320 | ; | ||
1321 | |||
1307 | code: | 1322 | code: |
1308 | f2_opcode destination ',' expression opt_source ret ';' | 1323 | f2_opcode destination ',' expression opt_source ret ';' |
1309 | { | 1324 | { |
diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h b/drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h index e64f802bbaaa..9df9e2ce3538 100644 --- a/drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h +++ b/drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h | |||
@@ -37,13 +37,14 @@ | |||
37 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 37 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
38 | * POSSIBILITY OF SUCH DAMAGES. | 38 | * POSSIBILITY OF SUCH DAMAGES. |
39 | * | 39 | * |
40 | * $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm_insformat.h#11 $ | 40 | * $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm_insformat.h#12 $ |
41 | * | 41 | * |
42 | * $FreeBSD$ | 42 | * $FreeBSD$ |
43 | */ | 43 | */ |
44 | 44 | ||
45 | #include <asm/byteorder.h> | 45 | #include <asm/byteorder.h> |
46 | 46 | ||
47 | /* 8bit ALU logic operations */ | ||
47 | struct ins_format1 { | 48 | struct ins_format1 { |
48 | #ifdef __LITTLE_ENDIAN | 49 | #ifdef __LITTLE_ENDIAN |
49 | uint32_t immediate : 8, | 50 | uint32_t immediate : 8, |
@@ -62,6 +63,7 @@ struct ins_format1 { | |||
62 | #endif | 63 | #endif |
63 | }; | 64 | }; |
64 | 65 | ||
66 | /* 8bit ALU shift/rotate operations */ | ||
65 | struct ins_format2 { | 67 | struct ins_format2 { |
66 | #ifdef __LITTLE_ENDIAN | 68 | #ifdef __LITTLE_ENDIAN |
67 | uint32_t shift_control : 8, | 69 | uint32_t shift_control : 8, |
@@ -80,6 +82,7 @@ struct ins_format2 { | |||
80 | #endif | 82 | #endif |
81 | }; | 83 | }; |
82 | 84 | ||
85 | /* 8bit branch control operations */ | ||
83 | struct ins_format3 { | 86 | struct ins_format3 { |
84 | #ifdef __LITTLE_ENDIAN | 87 | #ifdef __LITTLE_ENDIAN |
85 | uint32_t immediate : 8, | 88 | uint32_t immediate : 8, |
@@ -96,10 +99,68 @@ struct ins_format3 { | |||
96 | #endif | 99 | #endif |
97 | }; | 100 | }; |
98 | 101 | ||
102 | /* 16bit ALU logic operations */ | ||
103 | struct ins_format4 { | ||
104 | #ifdef __LITTLE_ENDIAN | ||
105 | uint32_t opcode_ext : 8, | ||
106 | source : 9, | ||
107 | destination : 9, | ||
108 | ret : 1, | ||
109 | opcode : 4, | ||
110 | parity : 1; | ||
111 | #else | ||
112 | uint32_t parity : 1, | ||
113 | opcode : 4, | ||
114 | ret : 1, | ||
115 | destination : 9, | ||
116 | source : 9, | ||
117 | opcode_ext : 8; | ||
118 | #endif | ||
119 | }; | ||
120 | |||
121 | /* 16bit branch control operations */ | ||
122 | struct ins_format5 { | ||
123 | #ifdef __LITTLE_ENDIAN | ||
124 | uint32_t opcode_ext : 8, | ||
125 | source : 9, | ||
126 | address : 10, | ||
127 | opcode : 4, | ||
128 | parity : 1; | ||
129 | #else | ||
130 | uint32_t parity : 1, | ||
131 | opcode : 4, | ||
132 | address : 10, | ||
133 | source : 9, | ||
134 | opcode_ext : 8; | ||
135 | #endif | ||
136 | }; | ||
137 | |||
138 | /* Far branch operations */ | ||
139 | struct ins_format6 { | ||
140 | #ifdef __LITTLE_ENDIAN | ||
141 | uint32_t page : 3, | ||
142 | opcode_ext : 5, | ||
143 | source : 9, | ||
144 | address : 10, | ||
145 | opcode : 4, | ||
146 | parity : 1; | ||
147 | #else | ||
148 | uint32_t parity : 1, | ||
149 | opcode : 4, | ||
150 | address : 10, | ||
151 | source : 9, | ||
152 | opcode_ext : 5, | ||
153 | page : 3; | ||
154 | #endif | ||
155 | }; | ||
156 | |||
99 | union ins_formats { | 157 | union ins_formats { |
100 | struct ins_format1 format1; | 158 | struct ins_format1 format1; |
101 | struct ins_format2 format2; | 159 | struct ins_format2 format2; |
102 | struct ins_format3 format3; | 160 | struct ins_format3 format3; |
161 | struct ins_format4 format4; | ||
162 | struct ins_format5 format5; | ||
163 | struct ins_format6 format6; | ||
103 | uint8_t bytes[4]; | 164 | uint8_t bytes[4]; |
104 | uint32_t integer; | 165 | uint32_t integer; |
105 | }; | 166 | }; |
@@ -118,6 +179,8 @@ struct instruction { | |||
118 | #define AIC_OP_ROL 0x5 | 179 | #define AIC_OP_ROL 0x5 |
119 | #define AIC_OP_BMOV 0x6 | 180 | #define AIC_OP_BMOV 0x6 |
120 | 181 | ||
182 | #define AIC_OP_MVI16 0x7 | ||
183 | |||
121 | #define AIC_OP_JMP 0x8 | 184 | #define AIC_OP_JMP 0x8 |
122 | #define AIC_OP_JC 0x9 | 185 | #define AIC_OP_JC 0x9 |
123 | #define AIC_OP_JNC 0xa | 186 | #define AIC_OP_JNC 0xa |
@@ -131,3 +194,26 @@ struct instruction { | |||
131 | #define AIC_OP_SHL 0x10 | 194 | #define AIC_OP_SHL 0x10 |
132 | #define AIC_OP_SHR 0x20 | 195 | #define AIC_OP_SHR 0x20 |
133 | #define AIC_OP_ROR 0x30 | 196 | #define AIC_OP_ROR 0x30 |
197 | |||
198 | /* 16bit Ops. Low byte main opcode. High byte extended opcode. */ | ||
199 | #define AIC_OP_OR16 0x8005 | ||
200 | #define AIC_OP_AND16 0x8105 | ||
201 | #define AIC_OP_XOR16 0x8205 | ||
202 | #define AIC_OP_ADD16 0x8305 | ||
203 | #define AIC_OP_ADC16 0x8405 | ||
204 | #define AIC_OP_JNE16 0x8805 | ||
205 | #define AIC_OP_JNZ16 0x8905 | ||
206 | #define AIC_OP_JE16 0x8C05 | ||
207 | #define AIC_OP_JZ16 0x8B05 | ||
208 | #define AIC_OP_JMP16 0x9005 | ||
209 | #define AIC_OP_JC16 0x9105 | ||
210 | #define AIC_OP_JNC16 0x9205 | ||
211 | #define AIC_OP_CALL16 0x9305 | ||
212 | #define AIC_OP_CALL16 0x9305 | ||
213 | |||
214 | /* Page extension is low three bits of second opcode byte. */ | ||
215 | #define AIC_OP_JMPF 0xA005 | ||
216 | #define AIC_OP_CALLF 0xB005 | ||
217 | #define AIC_OP_JCF 0xC005 | ||
218 | #define AIC_OP_JNCF 0xD005 | ||
219 | #define AIC_OP_CMPXCHG 0xE005 | ||
diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm_scan.l b/drivers/scsi/aic7xxx/aicasm/aicasm_scan.l index 45c0b233d0bc..7c3983f868a9 100644 --- a/drivers/scsi/aic7xxx/aicasm/aicasm_scan.l +++ b/drivers/scsi/aic7xxx/aicasm/aicasm_scan.l | |||
@@ -38,7 +38,7 @@ | |||
38 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 38 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
39 | * POSSIBILITY OF SUCH DAMAGES. | 39 | * POSSIBILITY OF SUCH DAMAGES. |
40 | * | 40 | * |
41 | * $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm_scan.l#19 $ | 41 | * $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm_scan.l#20 $ |
42 | * | 42 | * |
43 | * $FreeBSD$ | 43 | * $FreeBSD$ |
44 | */ | 44 | */ |
@@ -132,7 +132,7 @@ if[ \t]*\( { | |||
132 | *string_buf_ptr++ = *yptr++; | 132 | *string_buf_ptr++ = *yptr++; |
133 | } | 133 | } |
134 | } | 134 | } |
135 | 135 | else { return T_ELSE; } | |
136 | VERSION { return T_VERSION; } | 136 | VERSION { return T_VERSION; } |
137 | PREFIX { return T_PREFIX; } | 137 | PREFIX { return T_PREFIX; } |
138 | PATCH_ARG_LIST { return T_PATCH_ARG_LIST; } | 138 | PATCH_ARG_LIST { return T_PATCH_ARG_LIST; } |
@@ -173,10 +173,6 @@ RW|RO|WO { | |||
173 | yylval.value = WO; | 173 | yylval.value = WO; |
174 | return T_MODE; | 174 | return T_MODE; |
175 | } | 175 | } |
176 | BEGIN_CRITICAL { return T_BEGIN_CS; } | ||
177 | END_CRITICAL { return T_END_CS; } | ||
178 | SET_SRC_MODE { return T_SET_SRC_MODE; } | ||
179 | SET_DST_MODE { return T_SET_DST_MODE; } | ||
180 | field { return T_FIELD; } | 176 | field { return T_FIELD; } |
181 | enum { return T_ENUM; } | 177 | enum { return T_ENUM; } |
182 | mask { return T_MASK; } | 178 | mask { return T_MASK; } |
@@ -192,6 +188,13 @@ none { return T_NONE; } | |||
192 | sindex { return T_SINDEX; } | 188 | sindex { return T_SINDEX; } |
193 | A { return T_A; } | 189 | A { return T_A; } |
194 | 190 | ||
191 | /* Instruction Formatting */ | ||
192 | PAD_PAGE { return T_PAD_PAGE; } | ||
193 | BEGIN_CRITICAL { return T_BEGIN_CS; } | ||
194 | END_CRITICAL { return T_END_CS; } | ||
195 | SET_SRC_MODE { return T_SET_SRC_MODE; } | ||
196 | SET_DST_MODE { return T_SET_DST_MODE; } | ||
197 | |||
195 | /* Opcodes */ | 198 | /* Opcodes */ |
196 | shl { return T_SHL; } | 199 | shl { return T_SHL; } |
197 | shr { return T_SHR; } | 200 | shr { return T_SHR; } |
@@ -223,7 +226,17 @@ and { return T_AND; } | |||
223 | or { return T_OR; } | 226 | or { return T_OR; } |
224 | ret { return T_RET; } | 227 | ret { return T_RET; } |
225 | nop { return T_NOP; } | 228 | nop { return T_NOP; } |
226 | else { return T_ELSE; } | 229 | |
230 | /* ARP2 16bit extensions */ | ||
231 | or16 { return T_OR16; } | ||
232 | and16 { return T_AND16; } | ||
233 | xor16 { return T_XOR16; } | ||
234 | add16 { return T_ADD16; } | ||
235 | adc16 { return T_ADC16; } | ||
236 | mvi16 { return T_MVI16; } | ||
237 | test16 { return T_TEST16; } | ||
238 | cmp16 { return T_CMP16; } | ||
239 | cmpxchg { return T_CMPXCHG; } | ||
227 | 240 | ||
228 | /* Allowed Symbols */ | 241 | /* Allowed Symbols */ |
229 | \<\< { return T_EXPR_LSHIFT; } | 242 | \<\< { return T_EXPR_LSHIFT; } |
diff --git a/drivers/scsi/dc395x.c b/drivers/scsi/dc395x.c index c8a32cf47d73..cbf825263f3b 100644 --- a/drivers/scsi/dc395x.c +++ b/drivers/scsi/dc395x.c | |||
@@ -246,6 +246,7 @@ struct ScsiReqBlk { | |||
246 | * total_xfer_length in xferred. These values are restored in | 246 | * total_xfer_length in xferred. These values are restored in |
247 | * pci_unmap_srb_sense. This is the only place xferred is used. | 247 | * pci_unmap_srb_sense. This is the only place xferred is used. |
248 | */ | 248 | */ |
249 | unsigned char *virt_addr_req; /* Saved virtual address of the request buffer */ | ||
249 | u32 xferred; /* Saved copy of total_xfer_length */ | 250 | u32 xferred; /* Saved copy of total_xfer_length */ |
250 | 251 | ||
251 | u16 state; | 252 | u16 state; |
@@ -2017,7 +2018,7 @@ static void sg_update_list(struct ScsiReqBlk *srb, u32 left) | |||
2017 | sg_verify_length(srb); | 2018 | sg_verify_length(srb); |
2018 | 2019 | ||
2019 | /* we need the corresponding virtual address */ | 2020 | /* we need the corresponding virtual address */ |
2020 | if (!segment) { | 2021 | if (!segment || (srb->flag & AUTO_REQSENSE)) { |
2021 | srb->virt_addr += xferred; | 2022 | srb->virt_addr += xferred; |
2022 | return; | 2023 | return; |
2023 | } | 2024 | } |
@@ -3318,6 +3319,7 @@ static void pci_unmap_srb_sense(struct AdapterCtlBlk *acb, | |||
3318 | srb->segment_x[DC395x_MAX_SG_LISTENTRY - 1].address; | 3319 | srb->segment_x[DC395x_MAX_SG_LISTENTRY - 1].address; |
3319 | srb->segment_x[0].length = | 3320 | srb->segment_x[0].length = |
3320 | srb->segment_x[DC395x_MAX_SG_LISTENTRY - 1].length; | 3321 | srb->segment_x[DC395x_MAX_SG_LISTENTRY - 1].length; |
3322 | srb->virt_addr = srb->virt_addr_req; | ||
3321 | } | 3323 | } |
3322 | 3324 | ||
3323 | 3325 | ||
@@ -3711,6 +3713,8 @@ static void request_sense(struct AdapterCtlBlk *acb, struct DeviceCtlBlk *dcb, | |||
3711 | srb->xferred = srb->total_xfer_length; | 3713 | srb->xferred = srb->total_xfer_length; |
3712 | /* srb->segment_x : a one entry of S/G list table */ | 3714 | /* srb->segment_x : a one entry of S/G list table */ |
3713 | srb->total_xfer_length = sizeof(cmd->sense_buffer); | 3715 | srb->total_xfer_length = sizeof(cmd->sense_buffer); |
3716 | srb->virt_addr_req = srb->virt_addr; | ||
3717 | srb->virt_addr = cmd->sense_buffer; | ||
3714 | srb->segment_x[0].length = sizeof(cmd->sense_buffer); | 3718 | srb->segment_x[0].length = sizeof(cmd->sense_buffer); |
3715 | /* Map sense buffer */ | 3719 | /* Map sense buffer */ |
3716 | srb->segment_x[0].address = | 3720 | srb->segment_x[0].address = |
diff --git a/drivers/scsi/esp.c b/drivers/scsi/esp.c index f6900538be90..87a8c3d2072c 100644 --- a/drivers/scsi/esp.c +++ b/drivers/scsi/esp.c | |||
@@ -2068,14 +2068,12 @@ static int esp_reset(struct scsi_cmnd *SCptr) | |||
2068 | { | 2068 | { |
2069 | struct esp *esp = (struct esp *) SCptr->device->host->hostdata; | 2069 | struct esp *esp = (struct esp *) SCptr->device->host->hostdata; |
2070 | 2070 | ||
2071 | spin_lock_irq(esp->ehost->host_lock); | ||
2071 | (void) esp_do_resetbus(esp); | 2072 | (void) esp_do_resetbus(esp); |
2072 | |||
2073 | spin_unlock_irq(esp->ehost->host_lock); | 2073 | spin_unlock_irq(esp->ehost->host_lock); |
2074 | 2074 | ||
2075 | wait_event(esp->reset_queue, (esp->resetting_bus == 0)); | 2075 | wait_event(esp->reset_queue, (esp->resetting_bus == 0)); |
2076 | 2076 | ||
2077 | spin_lock_irq(esp->ehost->host_lock); | ||
2078 | |||
2079 | return SUCCESS; | 2077 | return SUCCESS; |
2080 | } | 2078 | } |
2081 | 2079 | ||
diff --git a/drivers/scsi/gdth.c b/drivers/scsi/gdth.c index bd3ffdf6c800..62e3cda859af 100644 --- a/drivers/scsi/gdth.c +++ b/drivers/scsi/gdth.c | |||
@@ -2816,7 +2816,7 @@ static int gdth_fill_cache_cmd(int hanum,Scsi_Cmnd *scp,ushort hdrive) | |||
2816 | } | 2816 | } |
2817 | #endif | 2817 | #endif |
2818 | 2818 | ||
2819 | } else { | 2819 | } else if (scp->request_bufflen) { |
2820 | scp->SCp.Status = GDTH_MAP_SINGLE; | 2820 | scp->SCp.Status = GDTH_MAP_SINGLE; |
2821 | scp->SCp.Message = (read_write == 1 ? | 2821 | scp->SCp.Message = (read_write == 1 ? |
2822 | PCI_DMA_TODEVICE : PCI_DMA_FROMDEVICE); | 2822 | PCI_DMA_TODEVICE : PCI_DMA_FROMDEVICE); |
diff --git a/drivers/scsi/ibmvscsi/ibmvscsi.c b/drivers/scsi/ibmvscsi/ibmvscsi.c index 822b9fa706f3..eaefeddb2b4a 100644 --- a/drivers/scsi/ibmvscsi/ibmvscsi.c +++ b/drivers/scsi/ibmvscsi/ibmvscsi.c | |||
@@ -87,7 +87,7 @@ static int max_channel = 3; | |||
87 | static int init_timeout = 5; | 87 | static int init_timeout = 5; |
88 | static int max_requests = 50; | 88 | static int max_requests = 50; |
89 | 89 | ||
90 | #define IBMVSCSI_VERSION "1.5.7" | 90 | #define IBMVSCSI_VERSION "1.5.8" |
91 | 91 | ||
92 | MODULE_DESCRIPTION("IBM Virtual SCSI"); | 92 | MODULE_DESCRIPTION("IBM Virtual SCSI"); |
93 | MODULE_AUTHOR("Dave Boutcher"); | 93 | MODULE_AUTHOR("Dave Boutcher"); |
@@ -534,7 +534,6 @@ static int map_data_for_srp_cmd(struct scsi_cmnd *cmd, | |||
534 | static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct, | 534 | static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct, |
535 | struct ibmvscsi_host_data *hostdata) | 535 | struct ibmvscsi_host_data *hostdata) |
536 | { | 536 | { |
537 | struct scsi_cmnd *cmnd; | ||
538 | u64 *crq_as_u64 = (u64 *) &evt_struct->crq; | 537 | u64 *crq_as_u64 = (u64 *) &evt_struct->crq; |
539 | int rc; | 538 | int rc; |
540 | 539 | ||
@@ -544,19 +543,8 @@ static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct, | |||
544 | * can handle more requests (can_queue) when we actually can't | 543 | * can handle more requests (can_queue) when we actually can't |
545 | */ | 544 | */ |
546 | if ((evt_struct->crq.format == VIOSRP_SRP_FORMAT) && | 545 | if ((evt_struct->crq.format == VIOSRP_SRP_FORMAT) && |
547 | (atomic_dec_if_positive(&hostdata->request_limit) < 0)) { | 546 | (atomic_dec_if_positive(&hostdata->request_limit) < 0)) |
548 | /* See if the adapter is disabled */ | 547 | goto send_error; |
549 | if (atomic_read(&hostdata->request_limit) < 0) | ||
550 | goto send_error; | ||
551 | |||
552 | printk(KERN_WARNING | ||
553 | "ibmvscsi: Warning, request_limit exceeded\n"); | ||
554 | unmap_cmd_data(&evt_struct->iu.srp.cmd, | ||
555 | evt_struct, | ||
556 | hostdata->dev); | ||
557 | free_event_struct(&hostdata->pool, evt_struct); | ||
558 | return SCSI_MLQUEUE_HOST_BUSY; | ||
559 | } | ||
560 | 548 | ||
561 | /* Copy the IU into the transfer area */ | 549 | /* Copy the IU into the transfer area */ |
562 | *evt_struct->xfer_iu = evt_struct->iu; | 550 | *evt_struct->xfer_iu = evt_struct->iu; |
@@ -572,7 +560,7 @@ static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct, | |||
572 | ibmvscsi_send_crq(hostdata, crq_as_u64[0], crq_as_u64[1])) != 0) { | 560 | ibmvscsi_send_crq(hostdata, crq_as_u64[0], crq_as_u64[1])) != 0) { |
573 | list_del(&evt_struct->list); | 561 | list_del(&evt_struct->list); |
574 | 562 | ||
575 | printk(KERN_ERR "ibmvscsi: failed to send event struct rc %d\n", | 563 | printk(KERN_ERR "ibmvscsi: send error %d\n", |
576 | rc); | 564 | rc); |
577 | goto send_error; | 565 | goto send_error; |
578 | } | 566 | } |
@@ -582,14 +570,8 @@ static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct, | |||
582 | send_error: | 570 | send_error: |
583 | unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev); | 571 | unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev); |
584 | 572 | ||
585 | if ((cmnd = evt_struct->cmnd) != NULL) { | ||
586 | cmnd->result = DID_ERROR << 16; | ||
587 | evt_struct->cmnd_done(cmnd); | ||
588 | } else if (evt_struct->done) | ||
589 | evt_struct->done(evt_struct); | ||
590 | |||
591 | free_event_struct(&hostdata->pool, evt_struct); | 573 | free_event_struct(&hostdata->pool, evt_struct); |
592 | return 0; | 574 | return SCSI_MLQUEUE_HOST_BUSY; |
593 | } | 575 | } |
594 | 576 | ||
595 | /** | 577 | /** |
@@ -802,7 +784,8 @@ static void login_rsp(struct srp_event_struct *evt_struct) | |||
802 | case SRP_LOGIN_RSP_TYPE: /* it worked! */ | 784 | case SRP_LOGIN_RSP_TYPE: /* it worked! */ |
803 | break; | 785 | break; |
804 | case SRP_LOGIN_REJ_TYPE: /* refused! */ | 786 | case SRP_LOGIN_REJ_TYPE: /* refused! */ |
805 | printk(KERN_INFO "ibmvscsi: SRP_LOGIN_REQ rejected\n"); | 787 | printk(KERN_INFO "ibmvscsi: SRP_LOGIN_REJ reason %u\n", |
788 | evt_struct->xfer_iu->srp.login_rej.reason); | ||
806 | /* Login failed. */ | 789 | /* Login failed. */ |
807 | atomic_set(&hostdata->request_limit, -1); | 790 | atomic_set(&hostdata->request_limit, -1); |
808 | return; | 791 | return; |
@@ -834,6 +817,9 @@ static void login_rsp(struct srp_event_struct *evt_struct) | |||
834 | return; | 817 | return; |
835 | } | 818 | } |
836 | 819 | ||
820 | /* If we had any pending I/Os, kick them */ | ||
821 | scsi_unblock_requests(hostdata->host); | ||
822 | |||
837 | send_mad_adapter_info(hostdata); | 823 | send_mad_adapter_info(hostdata); |
838 | return; | 824 | return; |
839 | } | 825 | } |
@@ -862,6 +848,7 @@ static int send_srp_login(struct ibmvscsi_host_data *hostdata) | |||
862 | init_timeout * HZ); | 848 | init_timeout * HZ); |
863 | 849 | ||
864 | login = &evt_struct->iu.srp.login_req; | 850 | login = &evt_struct->iu.srp.login_req; |
851 | memset(login, 0x00, sizeof(struct srp_login_req)); | ||
865 | login->type = SRP_LOGIN_REQ_TYPE; | 852 | login->type = SRP_LOGIN_REQ_TYPE; |
866 | login->max_requested_initiator_to_target_iulen = sizeof(union srp_iu); | 853 | login->max_requested_initiator_to_target_iulen = sizeof(union srp_iu); |
867 | login->required_buffer_formats = 0x0006; | 854 | login->required_buffer_formats = 0x0006; |
@@ -1122,7 +1109,7 @@ static int ibmvscsi_eh_device_reset_handler(struct scsi_cmnd *cmd) | |||
1122 | * purge_requests: Our virtual adapter just shut down. purge any sent requests | 1109 | * purge_requests: Our virtual adapter just shut down. purge any sent requests |
1123 | * @hostdata: the adapter | 1110 | * @hostdata: the adapter |
1124 | */ | 1111 | */ |
1125 | static void purge_requests(struct ibmvscsi_host_data *hostdata) | 1112 | static void purge_requests(struct ibmvscsi_host_data *hostdata, int error_code) |
1126 | { | 1113 | { |
1127 | struct srp_event_struct *tmp_evt, *pos; | 1114 | struct srp_event_struct *tmp_evt, *pos; |
1128 | unsigned long flags; | 1115 | unsigned long flags; |
@@ -1131,7 +1118,7 @@ static void purge_requests(struct ibmvscsi_host_data *hostdata) | |||
1131 | list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) { | 1118 | list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) { |
1132 | list_del(&tmp_evt->list); | 1119 | list_del(&tmp_evt->list); |
1133 | if (tmp_evt->cmnd) { | 1120 | if (tmp_evt->cmnd) { |
1134 | tmp_evt->cmnd->result = (DID_ERROR << 16); | 1121 | tmp_evt->cmnd->result = (error_code << 16); |
1135 | unmap_cmd_data(&tmp_evt->iu.srp.cmd, | 1122 | unmap_cmd_data(&tmp_evt->iu.srp.cmd, |
1136 | tmp_evt, | 1123 | tmp_evt, |
1137 | tmp_evt->hostdata->dev); | 1124 | tmp_evt->hostdata->dev); |
@@ -1186,12 +1173,30 @@ void ibmvscsi_handle_crq(struct viosrp_crq *crq, | |||
1186 | printk(KERN_ERR "ibmvscsi: unknown crq message type\n"); | 1173 | printk(KERN_ERR "ibmvscsi: unknown crq message type\n"); |
1187 | } | 1174 | } |
1188 | return; | 1175 | return; |
1189 | case 0xFF: /* Hypervisor telling us the connection is closed */ | 1176 | case 0xFF: /* Hypervisor telling us the connection is closed */ |
1190 | printk(KERN_INFO "ibmvscsi: Virtual adapter failed!\n"); | 1177 | scsi_block_requests(hostdata->host); |
1178 | if (crq->format == 0x06) { | ||
1179 | /* We need to re-setup the interpartition connection */ | ||
1180 | printk(KERN_INFO | ||
1181 | "ibmvscsi: Re-enabling adapter!\n"); | ||
1182 | purge_requests(hostdata, DID_REQUEUE); | ||
1183 | if (ibmvscsi_reenable_crq_queue(&hostdata->queue, | ||
1184 | hostdata) == 0) | ||
1185 | if (ibmvscsi_send_crq(hostdata, | ||
1186 | 0xC001000000000000LL, 0)) | ||
1187 | printk(KERN_ERR | ||
1188 | "ibmvscsi: transmit error after" | ||
1189 | " enable\n"); | ||
1190 | } else { | ||
1191 | printk(KERN_INFO | ||
1192 | "ibmvscsi: Virtual adapter failed rc %d!\n", | ||
1193 | crq->format); | ||
1191 | 1194 | ||
1192 | atomic_set(&hostdata->request_limit, -1); | 1195 | atomic_set(&hostdata->request_limit, -1); |
1193 | purge_requests(hostdata); | 1196 | purge_requests(hostdata, DID_ERROR); |
1194 | ibmvscsi_reset_crq_queue(&hostdata->queue, hostdata); | 1197 | ibmvscsi_reset_crq_queue(&hostdata->queue, hostdata); |
1198 | } | ||
1199 | scsi_unblock_requests(hostdata->host); | ||
1195 | return; | 1200 | return; |
1196 | case 0x80: /* real payload */ | 1201 | case 0x80: /* real payload */ |
1197 | break; | 1202 | break; |
diff --git a/drivers/scsi/ibmvscsi/ibmvscsi.h b/drivers/scsi/ibmvscsi/ibmvscsi.h index 5b0edd1f1921..4550d71e4744 100644 --- a/drivers/scsi/ibmvscsi/ibmvscsi.h +++ b/drivers/scsi/ibmvscsi/ibmvscsi.h | |||
@@ -103,6 +103,9 @@ void ibmvscsi_release_crq_queue(struct crq_queue *queue, | |||
103 | int ibmvscsi_reset_crq_queue(struct crq_queue *queue, | 103 | int ibmvscsi_reset_crq_queue(struct crq_queue *queue, |
104 | struct ibmvscsi_host_data *hostdata); | 104 | struct ibmvscsi_host_data *hostdata); |
105 | 105 | ||
106 | int ibmvscsi_reenable_crq_queue(struct crq_queue *queue, | ||
107 | struct ibmvscsi_host_data *hostdata); | ||
108 | |||
106 | void ibmvscsi_handle_crq(struct viosrp_crq *crq, | 109 | void ibmvscsi_handle_crq(struct viosrp_crq *crq, |
107 | struct ibmvscsi_host_data *hostdata); | 110 | struct ibmvscsi_host_data *hostdata); |
108 | int ibmvscsi_send_crq(struct ibmvscsi_host_data *hostdata, | 111 | int ibmvscsi_send_crq(struct ibmvscsi_host_data *hostdata, |
diff --git a/drivers/scsi/ibmvscsi/iseries_vscsi.c b/drivers/scsi/ibmvscsi/iseries_vscsi.c index ce15d9e39621..7eed0b098171 100644 --- a/drivers/scsi/ibmvscsi/iseries_vscsi.c +++ b/drivers/scsi/ibmvscsi/iseries_vscsi.c | |||
@@ -124,6 +124,19 @@ int ibmvscsi_reset_crq_queue(struct crq_queue *queue, | |||
124 | } | 124 | } |
125 | 125 | ||
126 | /** | 126 | /** |
127 | * reenable_crq_queue: - reenables a crq after a failure | ||
128 | * @queue: crq_queue to initialize and register | ||
129 | * @hostdata: ibmvscsi_host_data of host | ||
130 | * | ||
131 | * no-op for iSeries | ||
132 | */ | ||
133 | int ibmvscsi_reenable_crq_queue(struct crq_queue *queue, | ||
134 | struct ibmvscsi_host_data *hostdata) | ||
135 | { | ||
136 | return 0; | ||
137 | } | ||
138 | |||
139 | /** | ||
127 | * ibmvscsi_send_crq: - Send a CRQ | 140 | * ibmvscsi_send_crq: - Send a CRQ |
128 | * @hostdata: the adapter | 141 | * @hostdata: the adapter |
129 | * @word1: the first 64 bits of the data | 142 | * @word1: the first 64 bits of the data |
diff --git a/drivers/scsi/ibmvscsi/rpa_vscsi.c b/drivers/scsi/ibmvscsi/rpa_vscsi.c index 75db2f5c545e..f47dd87c05e7 100644 --- a/drivers/scsi/ibmvscsi/rpa_vscsi.c +++ b/drivers/scsi/ibmvscsi/rpa_vscsi.c | |||
@@ -281,6 +281,28 @@ int ibmvscsi_init_crq_queue(struct crq_queue *queue, | |||
281 | } | 281 | } |
282 | 282 | ||
283 | /** | 283 | /** |
284 | * reenable_crq_queue: - reenables a crq after | ||
285 | * @queue: crq_queue to initialize and register | ||
286 | * @hostdata: ibmvscsi_host_data of host | ||
287 | * | ||
288 | */ | ||
289 | int ibmvscsi_reenable_crq_queue(struct crq_queue *queue, | ||
290 | struct ibmvscsi_host_data *hostdata) | ||
291 | { | ||
292 | int rc; | ||
293 | struct vio_dev *vdev = to_vio_dev(hostdata->dev); | ||
294 | |||
295 | /* Re-enable the CRQ */ | ||
296 | do { | ||
297 | rc = plpar_hcall_norets(H_ENABLE_CRQ, vdev->unit_address); | ||
298 | } while ((rc == H_InProgress) || (rc == H_Busy) || (H_isLongBusy(rc))); | ||
299 | |||
300 | if (rc) | ||
301 | printk(KERN_ERR "ibmvscsi: Error %d enabling adapter\n", rc); | ||
302 | return rc; | ||
303 | } | ||
304 | |||
305 | /** | ||
284 | * reset_crq_queue: - resets a crq after a failure | 306 | * reset_crq_queue: - resets a crq after a failure |
285 | * @queue: crq_queue to initialize and register | 307 | * @queue: crq_queue to initialize and register |
286 | * @hostdata: ibmvscsi_host_data of host | 308 | * @hostdata: ibmvscsi_host_data of host |
diff --git a/drivers/scsi/ide-scsi.c b/drivers/scsi/ide-scsi.c index 3c688ef54660..0cf0e4c7ac0c 100644 --- a/drivers/scsi/ide-scsi.c +++ b/drivers/scsi/ide-scsi.c | |||
@@ -751,9 +751,8 @@ static void idescsi_setup (ide_drive_t *drive, idescsi_scsi_t *scsi) | |||
751 | idescsi_add_settings(drive); | 751 | idescsi_add_settings(drive); |
752 | } | 752 | } |
753 | 753 | ||
754 | static int ide_scsi_remove(struct device *dev) | 754 | static void ide_scsi_remove(ide_drive_t *drive) |
755 | { | 755 | { |
756 | ide_drive_t *drive = to_ide_device(dev); | ||
757 | struct Scsi_Host *scsihost = drive->driver_data; | 756 | struct Scsi_Host *scsihost = drive->driver_data; |
758 | struct ide_scsi_obj *scsi = scsihost_to_idescsi(scsihost); | 757 | struct ide_scsi_obj *scsi = scsihost_to_idescsi(scsihost); |
759 | struct gendisk *g = scsi->disk; | 758 | struct gendisk *g = scsi->disk; |
@@ -768,11 +767,9 @@ static int ide_scsi_remove(struct device *dev) | |||
768 | 767 | ||
769 | scsi_remove_host(scsihost); | 768 | scsi_remove_host(scsihost); |
770 | ide_scsi_put(scsi); | 769 | ide_scsi_put(scsi); |
771 | |||
772 | return 0; | ||
773 | } | 770 | } |
774 | 771 | ||
775 | static int ide_scsi_probe(struct device *); | 772 | static int ide_scsi_probe(ide_drive_t *); |
776 | 773 | ||
777 | #ifdef CONFIG_PROC_FS | 774 | #ifdef CONFIG_PROC_FS |
778 | static ide_proc_entry_t idescsi_proc[] = { | 775 | static ide_proc_entry_t idescsi_proc[] = { |
@@ -788,9 +785,9 @@ static ide_driver_t idescsi_driver = { | |||
788 | .owner = THIS_MODULE, | 785 | .owner = THIS_MODULE, |
789 | .name = "ide-scsi", | 786 | .name = "ide-scsi", |
790 | .bus = &ide_bus_type, | 787 | .bus = &ide_bus_type, |
791 | .probe = ide_scsi_probe, | ||
792 | .remove = ide_scsi_remove, | ||
793 | }, | 788 | }, |
789 | .probe = ide_scsi_probe, | ||
790 | .remove = ide_scsi_remove, | ||
794 | .version = IDESCSI_VERSION, | 791 | .version = IDESCSI_VERSION, |
795 | .media = ide_scsi, | 792 | .media = ide_scsi, |
796 | .supports_dsc_overlap = 0, | 793 | .supports_dsc_overlap = 0, |
@@ -1119,9 +1116,8 @@ static struct scsi_host_template idescsi_template = { | |||
1119 | .proc_name = "ide-scsi", | 1116 | .proc_name = "ide-scsi", |
1120 | }; | 1117 | }; |
1121 | 1118 | ||
1122 | static int ide_scsi_probe(struct device *dev) | 1119 | static int ide_scsi_probe(ide_drive_t *drive) |
1123 | { | 1120 | { |
1124 | ide_drive_t *drive = to_ide_device(dev); | ||
1125 | idescsi_scsi_t *idescsi; | 1121 | idescsi_scsi_t *idescsi; |
1126 | struct Scsi_Host *host; | 1122 | struct Scsi_Host *host; |
1127 | struct gendisk *g; | 1123 | struct gendisk *g; |
diff --git a/drivers/scsi/ipr.c b/drivers/scsi/ipr.c index 27acf78cf8d8..2bba5e55d7bc 100644 --- a/drivers/scsi/ipr.c +++ b/drivers/scsi/ipr.c | |||
@@ -4236,35 +4236,6 @@ static void ipr_scsi_done(struct ipr_cmnd *ipr_cmd) | |||
4236 | } | 4236 | } |
4237 | 4237 | ||
4238 | /** | 4238 | /** |
4239 | * ipr_save_ioafp_mode_select - Save adapters mode select data | ||
4240 | * @ioa_cfg: ioa config struct | ||
4241 | * @scsi_cmd: scsi command struct | ||
4242 | * | ||
4243 | * This function saves mode select data for the adapter to | ||
4244 | * use following an adapter reset. | ||
4245 | * | ||
4246 | * Return value: | ||
4247 | * 0 on success / SCSI_MLQUEUE_HOST_BUSY on failure | ||
4248 | **/ | ||
4249 | static int ipr_save_ioafp_mode_select(struct ipr_ioa_cfg *ioa_cfg, | ||
4250 | struct scsi_cmnd *scsi_cmd) | ||
4251 | { | ||
4252 | if (!ioa_cfg->saved_mode_pages) { | ||
4253 | ioa_cfg->saved_mode_pages = kmalloc(sizeof(struct ipr_mode_pages), | ||
4254 | GFP_ATOMIC); | ||
4255 | if (!ioa_cfg->saved_mode_pages) { | ||
4256 | dev_err(&ioa_cfg->pdev->dev, | ||
4257 | "IOA mode select buffer allocation failed\n"); | ||
4258 | return SCSI_MLQUEUE_HOST_BUSY; | ||
4259 | } | ||
4260 | } | ||
4261 | |||
4262 | memcpy(ioa_cfg->saved_mode_pages, scsi_cmd->buffer, scsi_cmd->cmnd[4]); | ||
4263 | ioa_cfg->saved_mode_page_len = scsi_cmd->cmnd[4]; | ||
4264 | return 0; | ||
4265 | } | ||
4266 | |||
4267 | /** | ||
4268 | * ipr_queuecommand - Queue a mid-layer request | 4239 | * ipr_queuecommand - Queue a mid-layer request |
4269 | * @scsi_cmd: scsi command struct | 4240 | * @scsi_cmd: scsi command struct |
4270 | * @done: done function | 4241 | * @done: done function |
@@ -4338,9 +4309,6 @@ static int ipr_queuecommand(struct scsi_cmnd *scsi_cmd, | |||
4338 | (!ipr_is_gscsi(res) || scsi_cmd->cmnd[0] == IPR_QUERY_RSRC_STATE)) | 4309 | (!ipr_is_gscsi(res) || scsi_cmd->cmnd[0] == IPR_QUERY_RSRC_STATE)) |
4339 | ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD; | 4310 | ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD; |
4340 | 4311 | ||
4341 | if (ipr_is_ioa_resource(res) && scsi_cmd->cmnd[0] == MODE_SELECT) | ||
4342 | rc = ipr_save_ioafp_mode_select(ioa_cfg, scsi_cmd); | ||
4343 | |||
4344 | if (likely(rc == 0)) | 4312 | if (likely(rc == 0)) |
4345 | rc = ipr_build_ioadl(ioa_cfg, ipr_cmd); | 4313 | rc = ipr_build_ioadl(ioa_cfg, ipr_cmd); |
4346 | 4314 | ||
@@ -4829,17 +4797,11 @@ static int ipr_ioafp_mode_select_page28(struct ipr_cmnd *ipr_cmd) | |||
4829 | int length; | 4797 | int length; |
4830 | 4798 | ||
4831 | ENTER; | 4799 | ENTER; |
4832 | if (ioa_cfg->saved_mode_pages) { | 4800 | ipr_scsi_bus_speed_limit(ioa_cfg); |
4833 | memcpy(mode_pages, ioa_cfg->saved_mode_pages, | 4801 | ipr_check_term_power(ioa_cfg, mode_pages); |
4834 | ioa_cfg->saved_mode_page_len); | 4802 | ipr_modify_ioafp_mode_page_28(ioa_cfg, mode_pages); |
4835 | length = ioa_cfg->saved_mode_page_len; | 4803 | length = mode_pages->hdr.length + 1; |
4836 | } else { | 4804 | mode_pages->hdr.length = 0; |
4837 | ipr_scsi_bus_speed_limit(ioa_cfg); | ||
4838 | ipr_check_term_power(ioa_cfg, mode_pages); | ||
4839 | ipr_modify_ioafp_mode_page_28(ioa_cfg, mode_pages); | ||
4840 | length = mode_pages->hdr.length + 1; | ||
4841 | mode_pages->hdr.length = 0; | ||
4842 | } | ||
4843 | 4805 | ||
4844 | ipr_build_mode_select(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE), 0x11, | 4806 | ipr_build_mode_select(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE), 0x11, |
4845 | ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, mode_pages), | 4807 | ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, mode_pages), |
@@ -5969,7 +5931,6 @@ static void ipr_free_mem(struct ipr_ioa_cfg *ioa_cfg) | |||
5969 | } | 5931 | } |
5970 | 5932 | ||
5971 | ipr_free_dump(ioa_cfg); | 5933 | ipr_free_dump(ioa_cfg); |
5972 | kfree(ioa_cfg->saved_mode_pages); | ||
5973 | kfree(ioa_cfg->trace); | 5934 | kfree(ioa_cfg->trace); |
5974 | } | 5935 | } |
5975 | 5936 | ||
diff --git a/drivers/scsi/ipr.h b/drivers/scsi/ipr.h index b639332131f1..fd360bfe56dd 100644 --- a/drivers/scsi/ipr.h +++ b/drivers/scsi/ipr.h | |||
@@ -36,8 +36,8 @@ | |||
36 | /* | 36 | /* |
37 | * Literals | 37 | * Literals |
38 | */ | 38 | */ |
39 | #define IPR_DRIVER_VERSION "2.1.1" | 39 | #define IPR_DRIVER_VERSION "2.1.2" |
40 | #define IPR_DRIVER_DATE "(November 15, 2005)" | 40 | #define IPR_DRIVER_DATE "(February 8, 2006)" |
41 | 41 | ||
42 | /* | 42 | /* |
43 | * IPR_MAX_CMD_PER_LUN: This defines the maximum number of outstanding | 43 | * IPR_MAX_CMD_PER_LUN: This defines the maximum number of outstanding |
@@ -1000,7 +1000,6 @@ struct ipr_ioa_cfg { | |||
1000 | struct Scsi_Host *host; | 1000 | struct Scsi_Host *host; |
1001 | struct pci_dev *pdev; | 1001 | struct pci_dev *pdev; |
1002 | struct ipr_sglist *ucode_sglist; | 1002 | struct ipr_sglist *ucode_sglist; |
1003 | struct ipr_mode_pages *saved_mode_pages; | ||
1004 | u8 saved_mode_page_len; | 1003 | u8 saved_mode_page_len; |
1005 | 1004 | ||
1006 | struct work_struct work_q; | 1005 | struct work_struct work_q; |
diff --git a/drivers/scsi/ips.c b/drivers/scsi/ips.c index e5e1ca44e1ee..86c546164da9 100644 --- a/drivers/scsi/ips.c +++ b/drivers/scsi/ips.c | |||
@@ -3499,6 +3499,7 @@ ips_map_status(ips_ha_t * ha, ips_scb_t * scb, ips_stat_t * sp) | |||
3499 | int device_error; | 3499 | int device_error; |
3500 | uint32_t transfer_len; | 3500 | uint32_t transfer_len; |
3501 | IPS_DCDB_TABLE_TAPE *tapeDCDB; | 3501 | IPS_DCDB_TABLE_TAPE *tapeDCDB; |
3502 | IPS_SCSI_INQ_DATA inquiryData; | ||
3502 | 3503 | ||
3503 | METHOD_TRACE("ips_map_status", 1); | 3504 | METHOD_TRACE("ips_map_status", 1); |
3504 | 3505 | ||
@@ -3557,13 +3558,13 @@ ips_map_status(ips_ha_t * ha, ips_scb_t * scb, ips_stat_t * sp) | |||
3557 | errcode = DID_OK; | 3558 | errcode = DID_OK; |
3558 | 3559 | ||
3559 | /* Restrict access to physical DASD */ | 3560 | /* Restrict access to physical DASD */ |
3560 | if ((scb->scsi_cmd->cmnd[0] == INQUIRY) && | 3561 | if (scb->scsi_cmd->cmnd[0] == INQUIRY) { |
3561 | ((((char *) scb->scsi_cmd-> | 3562 | ips_scmd_buf_read(scb->scsi_cmd, |
3562 | buffer)[0] & 0x1f) == TYPE_DISK)) { | 3563 | &inquiryData, sizeof (inquiryData)); |
3563 | /* underflow -- no error */ | 3564 | if ((inquiryData.DeviceType & 0x1f) == TYPE_DISK) { |
3564 | /* restrict access to physical DASD */ | 3565 | errcode = DID_TIME_OUT; |
3565 | errcode = DID_TIME_OUT; | 3566 | break; |
3566 | break; | 3567 | } |
3567 | } | 3568 | } |
3568 | } else | 3569 | } else |
3569 | errcode = DID_ERROR; | 3570 | errcode = DID_ERROR; |
@@ -4135,6 +4136,7 @@ ips_chkstatus(ips_ha_t * ha, IPS_STATUS * pstatus) | |||
4135 | uint8_t basic_status; | 4136 | uint8_t basic_status; |
4136 | uint8_t ext_status; | 4137 | uint8_t ext_status; |
4137 | int errcode; | 4138 | int errcode; |
4139 | IPS_SCSI_INQ_DATA inquiryData; | ||
4138 | 4140 | ||
4139 | METHOD_TRACE("ips_chkstatus", 1); | 4141 | METHOD_TRACE("ips_chkstatus", 1); |
4140 | 4142 | ||
@@ -4255,11 +4257,11 @@ ips_chkstatus(ips_ha_t * ha, IPS_STATUS * pstatus) | |||
4255 | scb->scsi_cmd->result = errcode << 16; | 4257 | scb->scsi_cmd->result = errcode << 16; |
4256 | } else { /* bus == 0 */ | 4258 | } else { /* bus == 0 */ |
4257 | /* restrict access to physical drives */ | 4259 | /* restrict access to physical drives */ |
4258 | if ((scb->scsi_cmd->cmnd[0] == INQUIRY) && | 4260 | if (scb->scsi_cmd->cmnd[0] == INQUIRY) { |
4259 | ((((char *) scb->scsi_cmd->buffer)[0] & 0x1f) == | 4261 | ips_scmd_buf_read(scb->scsi_cmd, |
4260 | TYPE_DISK)) { | 4262 | &inquiryData, sizeof (inquiryData)); |
4261 | 4263 | if ((inquiryData.DeviceType & 0x1f) == TYPE_DISK) | |
4262 | scb->scsi_cmd->result = DID_TIME_OUT << 16; | 4264 | scb->scsi_cmd->result = DID_TIME_OUT << 16; |
4263 | } | 4265 | } |
4264 | } /* else */ | 4266 | } /* else */ |
4265 | } else { /* recovered error / success */ | 4267 | } else { /* recovered error / success */ |
@@ -5012,7 +5014,7 @@ ips_init_copperhead(ips_ha_t * ha) | |||
5012 | break; | 5014 | break; |
5013 | 5015 | ||
5014 | /* Delay for 1 Second */ | 5016 | /* Delay for 1 Second */ |
5015 | MDELAY(IPS_ONE_SEC); | 5017 | msleep(IPS_ONE_SEC); |
5016 | } | 5018 | } |
5017 | 5019 | ||
5018 | if (j >= 45) | 5020 | if (j >= 45) |
@@ -5038,7 +5040,7 @@ ips_init_copperhead(ips_ha_t * ha) | |||
5038 | break; | 5040 | break; |
5039 | 5041 | ||
5040 | /* Delay for 1 Second */ | 5042 | /* Delay for 1 Second */ |
5041 | MDELAY(IPS_ONE_SEC); | 5043 | msleep(IPS_ONE_SEC); |
5042 | } | 5044 | } |
5043 | 5045 | ||
5044 | if (j >= 240) | 5046 | if (j >= 240) |
@@ -5056,7 +5058,7 @@ ips_init_copperhead(ips_ha_t * ha) | |||
5056 | break; | 5058 | break; |
5057 | 5059 | ||
5058 | /* Delay for 1 Second */ | 5060 | /* Delay for 1 Second */ |
5059 | MDELAY(IPS_ONE_SEC); | 5061 | msleep(IPS_ONE_SEC); |
5060 | } | 5062 | } |
5061 | 5063 | ||
5062 | if (i >= 240) | 5064 | if (i >= 240) |
@@ -5106,7 +5108,7 @@ ips_init_copperhead_memio(ips_ha_t * ha) | |||
5106 | break; | 5108 | break; |
5107 | 5109 | ||
5108 | /* Delay for 1 Second */ | 5110 | /* Delay for 1 Second */ |
5109 | MDELAY(IPS_ONE_SEC); | 5111 | msleep(IPS_ONE_SEC); |
5110 | } | 5112 | } |
5111 | 5113 | ||
5112 | if (j >= 45) | 5114 | if (j >= 45) |
@@ -5132,7 +5134,7 @@ ips_init_copperhead_memio(ips_ha_t * ha) | |||
5132 | break; | 5134 | break; |
5133 | 5135 | ||
5134 | /* Delay for 1 Second */ | 5136 | /* Delay for 1 Second */ |
5135 | MDELAY(IPS_ONE_SEC); | 5137 | msleep(IPS_ONE_SEC); |
5136 | } | 5138 | } |
5137 | 5139 | ||
5138 | if (j >= 240) | 5140 | if (j >= 240) |
@@ -5150,7 +5152,7 @@ ips_init_copperhead_memio(ips_ha_t * ha) | |||
5150 | break; | 5152 | break; |
5151 | 5153 | ||
5152 | /* Delay for 1 Second */ | 5154 | /* Delay for 1 Second */ |
5153 | MDELAY(IPS_ONE_SEC); | 5155 | msleep(IPS_ONE_SEC); |
5154 | } | 5156 | } |
5155 | 5157 | ||
5156 | if (i >= 240) | 5158 | if (i >= 240) |
@@ -5202,7 +5204,7 @@ ips_init_morpheus(ips_ha_t * ha) | |||
5202 | break; | 5204 | break; |
5203 | 5205 | ||
5204 | /* Delay for 1 Second */ | 5206 | /* Delay for 1 Second */ |
5205 | MDELAY(IPS_ONE_SEC); | 5207 | msleep(IPS_ONE_SEC); |
5206 | } | 5208 | } |
5207 | 5209 | ||
5208 | if (i >= 45) { | 5210 | if (i >= 45) { |
@@ -5228,7 +5230,7 @@ ips_init_morpheus(ips_ha_t * ha) | |||
5228 | if (Post != 0x4F00) | 5230 | if (Post != 0x4F00) |
5229 | break; | 5231 | break; |
5230 | /* Delay for 1 Second */ | 5232 | /* Delay for 1 Second */ |
5231 | MDELAY(IPS_ONE_SEC); | 5233 | msleep(IPS_ONE_SEC); |
5232 | } | 5234 | } |
5233 | 5235 | ||
5234 | if (i >= 120) { | 5236 | if (i >= 120) { |
@@ -5258,7 +5260,7 @@ ips_init_morpheus(ips_ha_t * ha) | |||
5258 | break; | 5260 | break; |
5259 | 5261 | ||
5260 | /* Delay for 1 Second */ | 5262 | /* Delay for 1 Second */ |
5261 | MDELAY(IPS_ONE_SEC); | 5263 | msleep(IPS_ONE_SEC); |
5262 | } | 5264 | } |
5263 | 5265 | ||
5264 | if (i >= 240) { | 5266 | if (i >= 240) { |
@@ -5318,12 +5320,12 @@ ips_reset_copperhead(ips_ha_t * ha) | |||
5318 | outb(IPS_BIT_RST, ha->io_addr + IPS_REG_SCPR); | 5320 | outb(IPS_BIT_RST, ha->io_addr + IPS_REG_SCPR); |
5319 | 5321 | ||
5320 | /* Delay for 1 Second */ | 5322 | /* Delay for 1 Second */ |
5321 | MDELAY(IPS_ONE_SEC); | 5323 | msleep(IPS_ONE_SEC); |
5322 | 5324 | ||
5323 | outb(0, ha->io_addr + IPS_REG_SCPR); | 5325 | outb(0, ha->io_addr + IPS_REG_SCPR); |
5324 | 5326 | ||
5325 | /* Delay for 1 Second */ | 5327 | /* Delay for 1 Second */ |
5326 | MDELAY(IPS_ONE_SEC); | 5328 | msleep(IPS_ONE_SEC); |
5327 | 5329 | ||
5328 | if ((*ha->func.init) (ha)) | 5330 | if ((*ha->func.init) (ha)) |
5329 | break; | 5331 | break; |
@@ -5363,12 +5365,12 @@ ips_reset_copperhead_memio(ips_ha_t * ha) | |||
5363 | writeb(IPS_BIT_RST, ha->mem_ptr + IPS_REG_SCPR); | 5365 | writeb(IPS_BIT_RST, ha->mem_ptr + IPS_REG_SCPR); |
5364 | 5366 | ||
5365 | /* Delay for 1 Second */ | 5367 | /* Delay for 1 Second */ |
5366 | MDELAY(IPS_ONE_SEC); | 5368 | msleep(IPS_ONE_SEC); |
5367 | 5369 | ||
5368 | writeb(0, ha->mem_ptr + IPS_REG_SCPR); | 5370 | writeb(0, ha->mem_ptr + IPS_REG_SCPR); |
5369 | 5371 | ||
5370 | /* Delay for 1 Second */ | 5372 | /* Delay for 1 Second */ |
5371 | MDELAY(IPS_ONE_SEC); | 5373 | msleep(IPS_ONE_SEC); |
5372 | 5374 | ||
5373 | if ((*ha->func.init) (ha)) | 5375 | if ((*ha->func.init) (ha)) |
5374 | break; | 5376 | break; |
@@ -5409,7 +5411,7 @@ ips_reset_morpheus(ips_ha_t * ha) | |||
5409 | writel(0x80000000, ha->mem_ptr + IPS_REG_I960_IDR); | 5411 | writel(0x80000000, ha->mem_ptr + IPS_REG_I960_IDR); |
5410 | 5412 | ||
5411 | /* Delay for 5 Seconds */ | 5413 | /* Delay for 5 Seconds */ |
5412 | MDELAY(5 * IPS_ONE_SEC); | 5414 | msleep(5 * IPS_ONE_SEC); |
5413 | 5415 | ||
5414 | /* Do a PCI config read to wait for adapter */ | 5416 | /* Do a PCI config read to wait for adapter */ |
5415 | pci_read_config_byte(ha->pcidev, 4, &junk); | 5417 | pci_read_config_byte(ha->pcidev, 4, &junk); |
diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c index 780bfcc67096..ff79e68b347c 100644 --- a/drivers/scsi/iscsi_tcp.c +++ b/drivers/scsi/iscsi_tcp.c | |||
@@ -146,7 +146,7 @@ iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err) | |||
146 | spin_unlock_irqrestore(&session->lock, flags); | 146 | spin_unlock_irqrestore(&session->lock, flags); |
147 | set_bit(SUSPEND_BIT, &conn->suspend_tx); | 147 | set_bit(SUSPEND_BIT, &conn->suspend_tx); |
148 | set_bit(SUSPEND_BIT, &conn->suspend_rx); | 148 | set_bit(SUSPEND_BIT, &conn->suspend_rx); |
149 | iscsi_conn_error(iscsi_handle(conn), err); | 149 | iscsi_conn_error(conn->cls_conn, err); |
150 | } | 150 | } |
151 | 151 | ||
152 | static inline int | 152 | static inline int |
@@ -244,12 +244,10 @@ iscsi_ctask_cleanup(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask) | |||
244 | if (sc->sc_data_direction == DMA_TO_DEVICE) { | 244 | if (sc->sc_data_direction == DMA_TO_DEVICE) { |
245 | struct iscsi_data_task *dtask, *n; | 245 | struct iscsi_data_task *dtask, *n; |
246 | /* WRITE: cleanup Data-Out's if any */ | 246 | /* WRITE: cleanup Data-Out's if any */ |
247 | spin_lock(&conn->lock); | ||
248 | list_for_each_entry_safe(dtask, n, &ctask->dataqueue, item) { | 247 | list_for_each_entry_safe(dtask, n, &ctask->dataqueue, item) { |
249 | list_del(&dtask->item); | 248 | list_del(&dtask->item); |
250 | mempool_free(dtask, ctask->datapool); | 249 | mempool_free(dtask, ctask->datapool); |
251 | } | 250 | } |
252 | spin_unlock(&conn->lock); | ||
253 | } | 251 | } |
254 | ctask->xmstate = XMSTATE_IDLE; | 252 | ctask->xmstate = XMSTATE_IDLE; |
255 | ctask->r2t = NULL; | 253 | ctask->r2t = NULL; |
@@ -689,7 +687,7 @@ iscsi_hdr_recv(struct iscsi_conn *conn) | |||
689 | break; | 687 | break; |
690 | 688 | ||
691 | if (!conn->in.datalen) { | 689 | if (!conn->in.datalen) { |
692 | rc = iscsi_recv_pdu(iscsi_handle(conn), hdr, | 690 | rc = iscsi_recv_pdu(conn->cls_conn, hdr, |
693 | NULL, 0); | 691 | NULL, 0); |
694 | if (conn->login_mtask != mtask) { | 692 | if (conn->login_mtask != mtask) { |
695 | spin_lock(&session->lock); | 693 | spin_lock(&session->lock); |
@@ -737,7 +735,7 @@ iscsi_hdr_recv(struct iscsi_conn *conn) | |||
737 | if (!conn->in.datalen) { | 735 | if (!conn->in.datalen) { |
738 | struct iscsi_mgmt_task *mtask; | 736 | struct iscsi_mgmt_task *mtask; |
739 | 737 | ||
740 | rc = iscsi_recv_pdu(iscsi_handle(conn), hdr, | 738 | rc = iscsi_recv_pdu(conn->cls_conn, hdr, |
741 | NULL, 0); | 739 | NULL, 0); |
742 | mtask = (struct iscsi_mgmt_task *) | 740 | mtask = (struct iscsi_mgmt_task *) |
743 | session->mgmt_cmds[conn->in.itt - | 741 | session->mgmt_cmds[conn->in.itt - |
@@ -761,7 +759,7 @@ iscsi_hdr_recv(struct iscsi_conn *conn) | |||
761 | rc = iscsi_check_assign_cmdsn(session, | 759 | rc = iscsi_check_assign_cmdsn(session, |
762 | (struct iscsi_nopin*)hdr); | 760 | (struct iscsi_nopin*)hdr); |
763 | if (!rc && hdr->ttt != ISCSI_RESERVED_TAG) | 761 | if (!rc && hdr->ttt != ISCSI_RESERVED_TAG) |
764 | rc = iscsi_recv_pdu(iscsi_handle(conn), | 762 | rc = iscsi_recv_pdu(conn->cls_conn, |
765 | hdr, NULL, 0); | 763 | hdr, NULL, 0); |
766 | } else | 764 | } else |
767 | rc = ISCSI_ERR_PROTO; | 765 | rc = ISCSI_ERR_PROTO; |
@@ -1044,7 +1042,7 @@ iscsi_data_recv(struct iscsi_conn *conn) | |||
1044 | goto exit; | 1042 | goto exit; |
1045 | } | 1043 | } |
1046 | 1044 | ||
1047 | rc = iscsi_recv_pdu(iscsi_handle(conn), conn->in.hdr, | 1045 | rc = iscsi_recv_pdu(conn->cls_conn, conn->in.hdr, |
1048 | conn->data, conn->in.datalen); | 1046 | conn->data, conn->in.datalen); |
1049 | 1047 | ||
1050 | if (!rc && conn->datadgst_en && | 1048 | if (!rc && conn->datadgst_en && |
@@ -2428,19 +2426,20 @@ iscsi_pool_free(struct iscsi_queue *q, void **items) | |||
2428 | } | 2426 | } |
2429 | 2427 | ||
2430 | static struct iscsi_cls_conn * | 2428 | static struct iscsi_cls_conn * |
2431 | iscsi_conn_create(struct Scsi_Host *shost, uint32_t conn_idx) | 2429 | iscsi_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx) |
2432 | { | 2430 | { |
2431 | struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); | ||
2433 | struct iscsi_session *session = iscsi_hostdata(shost->hostdata); | 2432 | struct iscsi_session *session = iscsi_hostdata(shost->hostdata); |
2434 | struct iscsi_conn *conn; | 2433 | struct iscsi_conn *conn; |
2435 | struct iscsi_cls_conn *cls_conn; | 2434 | struct iscsi_cls_conn *cls_conn; |
2436 | 2435 | ||
2437 | cls_conn = iscsi_create_conn(hostdata_session(shost->hostdata), | 2436 | cls_conn = iscsi_create_conn(cls_session, conn_idx); |
2438 | conn_idx); | ||
2439 | if (!cls_conn) | 2437 | if (!cls_conn) |
2440 | return NULL; | 2438 | return NULL; |
2441 | conn = cls_conn->dd_data; | 2439 | conn = cls_conn->dd_data; |
2440 | memset(conn, 0, sizeof(*conn)); | ||
2442 | 2441 | ||
2443 | memset(conn, 0, sizeof(struct iscsi_conn)); | 2442 | conn->cls_conn = cls_conn; |
2444 | conn->c_stage = ISCSI_CONN_INITIAL_STAGE; | 2443 | conn->c_stage = ISCSI_CONN_INITIAL_STAGE; |
2445 | conn->in_progress = IN_PROGRESS_WAIT_HEADER; | 2444 | conn->in_progress = IN_PROGRESS_WAIT_HEADER; |
2446 | conn->id = conn_idx; | 2445 | conn->id = conn_idx; |
@@ -2452,8 +2451,6 @@ iscsi_conn_create(struct Scsi_Host *shost, uint32_t conn_idx) | |||
2452 | conn->data_size = DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH; | 2451 | conn->data_size = DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH; |
2453 | conn->max_recv_dlength = DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH; | 2452 | conn->max_recv_dlength = DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH; |
2454 | 2453 | ||
2455 | spin_lock_init(&conn->lock); | ||
2456 | |||
2457 | /* initialize general xmit PDU commands queue */ | 2454 | /* initialize general xmit PDU commands queue */ |
2458 | conn->xmitqueue = kfifo_alloc(session->cmds_max * sizeof(void*), | 2455 | conn->xmitqueue = kfifo_alloc(session->cmds_max * sizeof(void*), |
2459 | GFP_KERNEL, NULL); | 2456 | GFP_KERNEL, NULL); |
@@ -2625,11 +2622,13 @@ iscsi_conn_destroy(struct iscsi_cls_conn *cls_conn) | |||
2625 | } | 2622 | } |
2626 | 2623 | ||
2627 | static int | 2624 | static int |
2628 | iscsi_conn_bind(iscsi_sessionh_t sessionh, iscsi_connh_t connh, | 2625 | iscsi_conn_bind(struct iscsi_cls_session *cls_session, |
2629 | uint32_t transport_fd, int is_leading) | 2626 | struct iscsi_cls_conn *cls_conn, uint32_t transport_fd, |
2627 | int is_leading) | ||
2630 | { | 2628 | { |
2631 | struct iscsi_session *session = iscsi_ptr(sessionh); | 2629 | struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); |
2632 | struct iscsi_conn *tmp = ERR_PTR(-EEXIST), *conn = iscsi_ptr(connh); | 2630 | struct iscsi_session *session = iscsi_hostdata(shost->hostdata); |
2631 | struct iscsi_conn *tmp = ERR_PTR(-EEXIST), *conn = cls_conn->dd_data; | ||
2633 | struct sock *sk; | 2632 | struct sock *sk; |
2634 | struct socket *sock; | 2633 | struct socket *sock; |
2635 | int err; | 2634 | int err; |
@@ -2703,9 +2702,9 @@ iscsi_conn_bind(iscsi_sessionh_t sessionh, iscsi_connh_t connh, | |||
2703 | } | 2702 | } |
2704 | 2703 | ||
2705 | static int | 2704 | static int |
2706 | iscsi_conn_start(iscsi_connh_t connh) | 2705 | iscsi_conn_start(struct iscsi_cls_conn *cls_conn) |
2707 | { | 2706 | { |
2708 | struct iscsi_conn *conn = iscsi_ptr(connh); | 2707 | struct iscsi_conn *conn = cls_conn->dd_data; |
2709 | struct iscsi_session *session = conn->session; | 2708 | struct iscsi_session *session = conn->session; |
2710 | struct sock *sk; | 2709 | struct sock *sk; |
2711 | 2710 | ||
@@ -2754,9 +2753,9 @@ iscsi_conn_start(iscsi_connh_t connh) | |||
2754 | } | 2753 | } |
2755 | 2754 | ||
2756 | static void | 2755 | static void |
2757 | iscsi_conn_stop(iscsi_connh_t connh, int flag) | 2756 | iscsi_conn_stop(struct iscsi_cls_conn *cls_conn, int flag) |
2758 | { | 2757 | { |
2759 | struct iscsi_conn *conn = iscsi_ptr(connh); | 2758 | struct iscsi_conn *conn = cls_conn->dd_data; |
2760 | struct iscsi_session *session = conn->session; | 2759 | struct iscsi_session *session = conn->session; |
2761 | struct sock *sk; | 2760 | struct sock *sk; |
2762 | unsigned long flags; | 2761 | unsigned long flags; |
@@ -3253,9 +3252,9 @@ static struct scsi_host_template iscsi_sht = { | |||
3253 | 3252 | ||
3254 | static struct iscsi_transport iscsi_tcp_transport; | 3253 | static struct iscsi_transport iscsi_tcp_transport; |
3255 | 3254 | ||
3256 | static struct Scsi_Host * | 3255 | static struct iscsi_cls_session * |
3257 | iscsi_session_create(struct scsi_transport_template *scsit, | 3256 | iscsi_session_create(struct scsi_transport_template *scsit, |
3258 | uint32_t initial_cmdsn) | 3257 | uint32_t initial_cmdsn, uint32_t *sid) |
3259 | { | 3258 | { |
3260 | struct Scsi_Host *shost; | 3259 | struct Scsi_Host *shost; |
3261 | struct iscsi_session *session; | 3260 | struct iscsi_session *session; |
@@ -3268,13 +3267,14 @@ iscsi_session_create(struct scsi_transport_template *scsit, | |||
3268 | session = iscsi_hostdata(shost->hostdata); | 3267 | session = iscsi_hostdata(shost->hostdata); |
3269 | memset(session, 0, sizeof(struct iscsi_session)); | 3268 | memset(session, 0, sizeof(struct iscsi_session)); |
3270 | session->host = shost; | 3269 | session->host = shost; |
3271 | session->state = ISCSI_STATE_LOGGED_IN; | 3270 | session->state = ISCSI_STATE_FREE; |
3272 | session->mgmtpool_max = ISCSI_MGMT_CMDS_MAX; | 3271 | session->mgmtpool_max = ISCSI_MGMT_CMDS_MAX; |
3273 | session->cmds_max = ISCSI_XMIT_CMDS_MAX; | 3272 | session->cmds_max = ISCSI_XMIT_CMDS_MAX; |
3274 | session->cmdsn = initial_cmdsn; | 3273 | session->cmdsn = initial_cmdsn; |
3275 | session->exp_cmdsn = initial_cmdsn + 1; | 3274 | session->exp_cmdsn = initial_cmdsn + 1; |
3276 | session->max_cmdsn = initial_cmdsn + 1; | 3275 | session->max_cmdsn = initial_cmdsn + 1; |
3277 | session->max_r2t = 1; | 3276 | session->max_r2t = 1; |
3277 | *sid = shost->host_no; | ||
3278 | 3278 | ||
3279 | /* initialize SCSI PDU commands pool */ | 3279 | /* initialize SCSI PDU commands pool */ |
3280 | if (iscsi_pool_init(&session->cmdpool, session->cmds_max, | 3280 | if (iscsi_pool_init(&session->cmdpool, session->cmds_max, |
@@ -3311,22 +3311,24 @@ iscsi_session_create(struct scsi_transport_template *scsit, | |||
3311 | if (iscsi_r2tpool_alloc(session)) | 3311 | if (iscsi_r2tpool_alloc(session)) |
3312 | goto r2tpool_alloc_fail; | 3312 | goto r2tpool_alloc_fail; |
3313 | 3313 | ||
3314 | return shost; | 3314 | return hostdata_session(shost->hostdata); |
3315 | 3315 | ||
3316 | r2tpool_alloc_fail: | 3316 | r2tpool_alloc_fail: |
3317 | for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) | 3317 | for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) |
3318 | kfree(session->mgmt_cmds[cmd_i]->data); | 3318 | kfree(session->mgmt_cmds[cmd_i]->data); |
3319 | iscsi_pool_free(&session->mgmtpool, (void**)session->mgmt_cmds); | ||
3320 | immdata_alloc_fail: | 3319 | immdata_alloc_fail: |
3320 | iscsi_pool_free(&session->mgmtpool, (void**)session->mgmt_cmds); | ||
3321 | mgmtpool_alloc_fail: | 3321 | mgmtpool_alloc_fail: |
3322 | iscsi_pool_free(&session->cmdpool, (void**)session->cmds); | 3322 | iscsi_pool_free(&session->cmdpool, (void**)session->cmds); |
3323 | cmdpool_alloc_fail: | 3323 | cmdpool_alloc_fail: |
3324 | iscsi_transport_destroy_session(shost); | ||
3324 | return NULL; | 3325 | return NULL; |
3325 | } | 3326 | } |
3326 | 3327 | ||
3327 | static void | 3328 | static void |
3328 | iscsi_session_destroy(struct Scsi_Host *shost) | 3329 | iscsi_session_destroy(struct iscsi_cls_session *cls_session) |
3329 | { | 3330 | { |
3331 | struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); | ||
3330 | struct iscsi_session *session = iscsi_hostdata(shost->hostdata); | 3332 | struct iscsi_session *session = iscsi_hostdata(shost->hostdata); |
3331 | int cmd_i; | 3333 | int cmd_i; |
3332 | struct iscsi_data_task *dtask, *n; | 3334 | struct iscsi_data_task *dtask, *n; |
@@ -3350,10 +3352,10 @@ iscsi_session_destroy(struct Scsi_Host *shost) | |||
3350 | } | 3352 | } |
3351 | 3353 | ||
3352 | static int | 3354 | static int |
3353 | iscsi_conn_set_param(iscsi_connh_t connh, enum iscsi_param param, | 3355 | iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param, |
3354 | uint32_t value) | 3356 | uint32_t value) |
3355 | { | 3357 | { |
3356 | struct iscsi_conn *conn = iscsi_ptr(connh); | 3358 | struct iscsi_conn *conn = cls_conn->dd_data; |
3357 | struct iscsi_session *session = conn->session; | 3359 | struct iscsi_session *session = conn->session; |
3358 | 3360 | ||
3359 | spin_lock_bh(&session->lock); | 3361 | spin_lock_bh(&session->lock); |
@@ -3495,9 +3497,10 @@ iscsi_conn_set_param(iscsi_connh_t connh, enum iscsi_param param, | |||
3495 | } | 3497 | } |
3496 | 3498 | ||
3497 | static int | 3499 | static int |
3498 | iscsi_session_get_param(struct Scsi_Host *shost, | 3500 | iscsi_session_get_param(struct iscsi_cls_session *cls_session, |
3499 | enum iscsi_param param, uint32_t *value) | 3501 | enum iscsi_param param, uint32_t *value) |
3500 | { | 3502 | { |
3503 | struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); | ||
3501 | struct iscsi_session *session = iscsi_hostdata(shost->hostdata); | 3504 | struct iscsi_session *session = iscsi_hostdata(shost->hostdata); |
3502 | 3505 | ||
3503 | switch(param) { | 3506 | switch(param) { |
@@ -3539,9 +3542,10 @@ iscsi_session_get_param(struct Scsi_Host *shost, | |||
3539 | } | 3542 | } |
3540 | 3543 | ||
3541 | static int | 3544 | static int |
3542 | iscsi_conn_get_param(void *data, enum iscsi_param param, uint32_t *value) | 3545 | iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn, |
3546 | enum iscsi_param param, uint32_t *value) | ||
3543 | { | 3547 | { |
3544 | struct iscsi_conn *conn = data; | 3548 | struct iscsi_conn *conn = cls_conn->dd_data; |
3545 | 3549 | ||
3546 | switch(param) { | 3550 | switch(param) { |
3547 | case ISCSI_PARAM_MAX_RECV_DLENGTH: | 3551 | case ISCSI_PARAM_MAX_RECV_DLENGTH: |
@@ -3564,9 +3568,9 @@ iscsi_conn_get_param(void *data, enum iscsi_param param, uint32_t *value) | |||
3564 | } | 3568 | } |
3565 | 3569 | ||
3566 | static void | 3570 | static void |
3567 | iscsi_conn_get_stats(iscsi_connh_t connh, struct iscsi_stats *stats) | 3571 | iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats) |
3568 | { | 3572 | { |
3569 | struct iscsi_conn *conn = iscsi_ptr(connh); | 3573 | struct iscsi_conn *conn = cls_conn->dd_data; |
3570 | 3574 | ||
3571 | stats->txdata_octets = conn->txdata_octets; | 3575 | stats->txdata_octets = conn->txdata_octets; |
3572 | stats->rxdata_octets = conn->rxdata_octets; | 3576 | stats->rxdata_octets = conn->rxdata_octets; |
@@ -3587,10 +3591,10 @@ iscsi_conn_get_stats(iscsi_connh_t connh, struct iscsi_stats *stats) | |||
3587 | } | 3591 | } |
3588 | 3592 | ||
3589 | static int | 3593 | static int |
3590 | iscsi_conn_send_pdu(iscsi_connh_t connh, struct iscsi_hdr *hdr, char *data, | 3594 | iscsi_conn_send_pdu(struct iscsi_cls_conn *cls_conn, struct iscsi_hdr *hdr, |
3591 | uint32_t data_size) | 3595 | char *data, uint32_t data_size) |
3592 | { | 3596 | { |
3593 | struct iscsi_conn *conn = iscsi_ptr(connh); | 3597 | struct iscsi_conn *conn = cls_conn->dd_data; |
3594 | int rc; | 3598 | int rc; |
3595 | 3599 | ||
3596 | mutex_lock(&conn->xmitmutex); | 3600 | mutex_lock(&conn->xmitmutex); |
diff --git a/drivers/scsi/iscsi_tcp.h b/drivers/scsi/iscsi_tcp.h index f95e61b76f70..ba26741ac154 100644 --- a/drivers/scsi/iscsi_tcp.h +++ b/drivers/scsi/iscsi_tcp.h | |||
@@ -113,7 +113,10 @@ struct iscsi_tcp_recv { | |||
113 | int datadgst; | 113 | int datadgst; |
114 | }; | 114 | }; |
115 | 115 | ||
116 | struct iscsi_cls_conn; | ||
117 | |||
116 | struct iscsi_conn { | 118 | struct iscsi_conn { |
119 | struct iscsi_cls_conn *cls_conn; /* ptr to class connection */ | ||
117 | struct iscsi_hdr hdr; /* header placeholder */ | 120 | struct iscsi_hdr hdr; /* header placeholder */ |
118 | char hdrext[4*sizeof(__u16) + | 121 | char hdrext[4*sizeof(__u16) + |
119 | sizeof(__u32)]; | 122 | sizeof(__u32)]; |
@@ -143,7 +146,6 @@ struct iscsi_conn { | |||
143 | struct iscsi_mgmt_task *login_mtask; /* mtask used for login/text */ | 146 | struct iscsi_mgmt_task *login_mtask; /* mtask used for login/text */ |
144 | struct iscsi_mgmt_task *mtask; /* xmit mtask in progress */ | 147 | struct iscsi_mgmt_task *mtask; /* xmit mtask in progress */ |
145 | struct iscsi_cmd_task *ctask; /* xmit ctask in progress */ | 148 | struct iscsi_cmd_task *ctask; /* xmit ctask in progress */ |
146 | spinlock_t lock; /* FIXME: to be removed */ | ||
147 | 149 | ||
148 | /* old values for socket callbacks */ | 150 | /* old values for socket callbacks */ |
149 | void (*old_data_ready)(struct sock *, int); | 151 | void (*old_data_ready)(struct sock *, int); |
diff --git a/drivers/scsi/jazz_esp.c b/drivers/scsi/jazz_esp.c index 23728d1c980c..fcd304e11c26 100644 --- a/drivers/scsi/jazz_esp.c +++ b/drivers/scsi/jazz_esp.c | |||
@@ -65,27 +65,6 @@ static int jazz_esp_release(struct Scsi_Host *shost) | |||
65 | return 0; | 65 | return 0; |
66 | } | 66 | } |
67 | 67 | ||
68 | static struct scsi_host_template driver_template = { | ||
69 | .proc_name = "jazz_esp", | ||
70 | .proc_info = &esp_proc_info, | ||
71 | .name = "ESP 100/100a/200", | ||
72 | .detect = jazz_esp_detect, | ||
73 | .slave_alloc = esp_slave_alloc, | ||
74 | .slave_destroy = esp_slave_destroy, | ||
75 | .release = jazz_esp_release, | ||
76 | .info = esp_info, | ||
77 | .queuecommand = esp_queue, | ||
78 | .eh_abort_handler = esp_abort, | ||
79 | .eh_bus_reset_handler = esp_reset, | ||
80 | .can_queue = 7, | ||
81 | .this_id = 7, | ||
82 | .sg_tablesize = SG_ALL, | ||
83 | .cmd_per_lun = 1, | ||
84 | .use_clustering = DISABLE_CLUSTERING, | ||
85 | }; | ||
86 | |||
87 | #include "scsi_module.c" | ||
88 | |||
89 | /***************************************************************** Detection */ | 68 | /***************************************************************** Detection */ |
90 | static int jazz_esp_detect(struct scsi_host_template *tpnt) | 69 | static int jazz_esp_detect(struct scsi_host_template *tpnt) |
91 | { | 70 | { |
diff --git a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c index 46c4cdbaee86..4f91b0dc572b 100644 --- a/drivers/scsi/libata-core.c +++ b/drivers/scsi/libata-core.c | |||
@@ -82,6 +82,10 @@ int atapi_enabled = 0; | |||
82 | module_param(atapi_enabled, int, 0444); | 82 | module_param(atapi_enabled, int, 0444); |
83 | MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)"); | 83 | MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)"); |
84 | 84 | ||
85 | int libata_fua = 0; | ||
86 | module_param_named(fua, libata_fua, int, 0444); | ||
87 | MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)"); | ||
88 | |||
85 | MODULE_AUTHOR("Jeff Garzik"); | 89 | MODULE_AUTHOR("Jeff Garzik"); |
86 | MODULE_DESCRIPTION("Library module for ATA devices"); | 90 | MODULE_DESCRIPTION("Library module for ATA devices"); |
87 | MODULE_LICENSE("GPL"); | 91 | MODULE_LICENSE("GPL"); |
@@ -614,7 +618,7 @@ int ata_rwcmd_protocol(struct ata_queued_cmd *qc) | |||
614 | } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) { | 618 | } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) { |
615 | /* Unable to use DMA due to host limitation */ | 619 | /* Unable to use DMA due to host limitation */ |
616 | tf->protocol = ATA_PROT_PIO; | 620 | tf->protocol = ATA_PROT_PIO; |
617 | index = dev->multi_count ? 0 : 4; | 621 | index = dev->multi_count ? 0 : 8; |
618 | } else { | 622 | } else { |
619 | tf->protocol = ATA_PROT_DMA; | 623 | tf->protocol = ATA_PROT_DMA; |
620 | index = 16; | 624 | index = 16; |
@@ -2514,7 +2518,7 @@ static void ata_sg_clean(struct ata_queued_cmd *qc) | |||
2514 | assert(sg != NULL); | 2518 | assert(sg != NULL); |
2515 | 2519 | ||
2516 | if (qc->flags & ATA_QCFLAG_SINGLE) | 2520 | if (qc->flags & ATA_QCFLAG_SINGLE) |
2517 | assert(qc->n_elem == 1); | 2521 | assert(qc->n_elem <= 1); |
2518 | 2522 | ||
2519 | VPRINTK("unmapping %u sg elements\n", qc->n_elem); | 2523 | VPRINTK("unmapping %u sg elements\n", qc->n_elem); |
2520 | 2524 | ||
@@ -2537,7 +2541,7 @@ static void ata_sg_clean(struct ata_queued_cmd *qc) | |||
2537 | kunmap_atomic(addr, KM_IRQ0); | 2541 | kunmap_atomic(addr, KM_IRQ0); |
2538 | } | 2542 | } |
2539 | } else { | 2543 | } else { |
2540 | if (sg_dma_len(&sg[0]) > 0) | 2544 | if (qc->n_elem) |
2541 | dma_unmap_single(ap->host_set->dev, | 2545 | dma_unmap_single(ap->host_set->dev, |
2542 | sg_dma_address(&sg[0]), sg_dma_len(&sg[0]), | 2546 | sg_dma_address(&sg[0]), sg_dma_len(&sg[0]), |
2543 | dir); | 2547 | dir); |
@@ -2570,7 +2574,7 @@ static void ata_fill_sg(struct ata_queued_cmd *qc) | |||
2570 | unsigned int idx; | 2574 | unsigned int idx; |
2571 | 2575 | ||
2572 | assert(qc->__sg != NULL); | 2576 | assert(qc->__sg != NULL); |
2573 | assert(qc->n_elem > 0); | 2577 | assert(qc->n_elem > 0 || qc->pad_len > 0); |
2574 | 2578 | ||
2575 | idx = 0; | 2579 | idx = 0; |
2576 | ata_for_each_sg(sg, qc) { | 2580 | ata_for_each_sg(sg, qc) { |
@@ -2715,6 +2719,7 @@ static int ata_sg_setup_one(struct ata_queued_cmd *qc) | |||
2715 | int dir = qc->dma_dir; | 2719 | int dir = qc->dma_dir; |
2716 | struct scatterlist *sg = qc->__sg; | 2720 | struct scatterlist *sg = qc->__sg; |
2717 | dma_addr_t dma_address; | 2721 | dma_addr_t dma_address; |
2722 | int trim_sg = 0; | ||
2718 | 2723 | ||
2719 | /* we must lengthen transfers to end on a 32-bit boundary */ | 2724 | /* we must lengthen transfers to end on a 32-bit boundary */ |
2720 | qc->pad_len = sg->length & 3; | 2725 | qc->pad_len = sg->length & 3; |
@@ -2734,13 +2739,15 @@ static int ata_sg_setup_one(struct ata_queued_cmd *qc) | |||
2734 | sg_dma_len(psg) = ATA_DMA_PAD_SZ; | 2739 | sg_dma_len(psg) = ATA_DMA_PAD_SZ; |
2735 | /* trim sg */ | 2740 | /* trim sg */ |
2736 | sg->length -= qc->pad_len; | 2741 | sg->length -= qc->pad_len; |
2742 | if (sg->length == 0) | ||
2743 | trim_sg = 1; | ||
2737 | 2744 | ||
2738 | DPRINTK("padding done, sg->length=%u pad_len=%u\n", | 2745 | DPRINTK("padding done, sg->length=%u pad_len=%u\n", |
2739 | sg->length, qc->pad_len); | 2746 | sg->length, qc->pad_len); |
2740 | } | 2747 | } |
2741 | 2748 | ||
2742 | if (!sg->length) { | 2749 | if (trim_sg) { |
2743 | sg_dma_address(sg) = 0; | 2750 | qc->n_elem--; |
2744 | goto skip_map; | 2751 | goto skip_map; |
2745 | } | 2752 | } |
2746 | 2753 | ||
@@ -2753,9 +2760,9 @@ static int ata_sg_setup_one(struct ata_queued_cmd *qc) | |||
2753 | } | 2760 | } |
2754 | 2761 | ||
2755 | sg_dma_address(sg) = dma_address; | 2762 | sg_dma_address(sg) = dma_address; |
2756 | skip_map: | ||
2757 | sg_dma_len(sg) = sg->length; | 2763 | sg_dma_len(sg) = sg->length; |
2758 | 2764 | ||
2765 | skip_map: | ||
2759 | DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg), | 2766 | DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg), |
2760 | qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read"); | 2767 | qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read"); |
2761 | 2768 | ||
@@ -3357,11 +3364,12 @@ static void ata_pio_error(struct ata_port *ap) | |||
3357 | { | 3364 | { |
3358 | struct ata_queued_cmd *qc; | 3365 | struct ata_queued_cmd *qc; |
3359 | 3366 | ||
3360 | printk(KERN_WARNING "ata%u: PIO error\n", ap->id); | ||
3361 | |||
3362 | qc = ata_qc_from_tag(ap, ap->active_tag); | 3367 | qc = ata_qc_from_tag(ap, ap->active_tag); |
3363 | assert(qc != NULL); | 3368 | assert(qc != NULL); |
3364 | 3369 | ||
3370 | if (qc->tf.command != ATA_CMD_PACKET) | ||
3371 | printk(KERN_WARNING "ata%u: PIO error\n", ap->id); | ||
3372 | |||
3365 | /* make sure qc->err_mask is available to | 3373 | /* make sure qc->err_mask is available to |
3366 | * know what's wrong and recover | 3374 | * know what's wrong and recover |
3367 | */ | 3375 | */ |
diff --git a/drivers/scsi/libata-scsi.c b/drivers/scsi/libata-scsi.c index cfbceb504718..59503c9ccac9 100644 --- a/drivers/scsi/libata-scsi.c +++ b/drivers/scsi/libata-scsi.c | |||
@@ -1700,6 +1700,33 @@ static unsigned int ata_msense_rw_recovery(u8 **ptr_io, const u8 *last) | |||
1700 | return sizeof(def_rw_recovery_mpage); | 1700 | return sizeof(def_rw_recovery_mpage); |
1701 | } | 1701 | } |
1702 | 1702 | ||
1703 | /* | ||
1704 | * We can turn this into a real blacklist if it's needed, for now just | ||
1705 | * blacklist any Maxtor BANC1G10 revision firmware | ||
1706 | */ | ||
1707 | static int ata_dev_supports_fua(u16 *id) | ||
1708 | { | ||
1709 | unsigned char model[41], fw[9]; | ||
1710 | |||
1711 | if (!libata_fua) | ||
1712 | return 0; | ||
1713 | if (!ata_id_has_fua(id)) | ||
1714 | return 0; | ||
1715 | |||
1716 | model[40] = '\0'; | ||
1717 | fw[8] = '\0'; | ||
1718 | |||
1719 | ata_dev_id_string(id, model, ATA_ID_PROD_OFS, sizeof(model) - 1); | ||
1720 | ata_dev_id_string(id, fw, ATA_ID_FW_REV_OFS, sizeof(fw) - 1); | ||
1721 | |||
1722 | if (strncmp(model, "Maxtor", 6)) | ||
1723 | return 1; | ||
1724 | if (strncmp(fw, "BANC1G10", 8)) | ||
1725 | return 1; | ||
1726 | |||
1727 | return 0; /* blacklisted */ | ||
1728 | } | ||
1729 | |||
1703 | /** | 1730 | /** |
1704 | * ata_scsiop_mode_sense - Simulate MODE SENSE 6, 10 commands | 1731 | * ata_scsiop_mode_sense - Simulate MODE SENSE 6, 10 commands |
1705 | * @args: device IDENTIFY data / SCSI command of interest. | 1732 | * @args: device IDENTIFY data / SCSI command of interest. |
@@ -1797,7 +1824,7 @@ unsigned int ata_scsiop_mode_sense(struct ata_scsi_args *args, u8 *rbuf, | |||
1797 | return 0; | 1824 | return 0; |
1798 | 1825 | ||
1799 | dpofua = 0; | 1826 | dpofua = 0; |
1800 | if (ata_id_has_fua(args->id) && dev->flags & ATA_DFLAG_LBA48 && | 1827 | if (ata_dev_supports_fua(args->id) && dev->flags & ATA_DFLAG_LBA48 && |
1801 | (!(dev->flags & ATA_DFLAG_PIO) || dev->multi_count)) | 1828 | (!(dev->flags & ATA_DFLAG_PIO) || dev->multi_count)) |
1802 | dpofua = 1 << 4; | 1829 | dpofua = 1 << 4; |
1803 | 1830 | ||
diff --git a/drivers/scsi/libata.h b/drivers/scsi/libata.h index e03ce48b7b4b..fddaf479a544 100644 --- a/drivers/scsi/libata.h +++ b/drivers/scsi/libata.h | |||
@@ -41,6 +41,7 @@ struct ata_scsi_args { | |||
41 | 41 | ||
42 | /* libata-core.c */ | 42 | /* libata-core.c */ |
43 | extern int atapi_enabled; | 43 | extern int atapi_enabled; |
44 | extern int libata_fua; | ||
44 | extern struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap, | 45 | extern struct ata_queued_cmd *ata_qc_new_init(struct ata_port *ap, |
45 | struct ata_device *dev); | 46 | struct ata_device *dev); |
46 | extern int ata_rwcmd_protocol(struct ata_queued_cmd *qc); | 47 | extern int ata_rwcmd_protocol(struct ata_queued_cmd *qc); |
diff --git a/drivers/scsi/mac53c94.c b/drivers/scsi/mac53c94.c index 311a4122bd70..93edaa8696cf 100644 --- a/drivers/scsi/mac53c94.c +++ b/drivers/scsi/mac53c94.c | |||
@@ -537,9 +537,9 @@ static int mac53c94_remove(struct macio_dev *mdev) | |||
537 | free_irq(fp->intr, fp); | 537 | free_irq(fp->intr, fp); |
538 | 538 | ||
539 | if (fp->regs) | 539 | if (fp->regs) |
540 | iounmap((void *) fp->regs); | 540 | iounmap(fp->regs); |
541 | if (fp->dma) | 541 | if (fp->dma) |
542 | iounmap((void *) fp->dma); | 542 | iounmap(fp->dma); |
543 | kfree(fp->dma_cmd_space); | 543 | kfree(fp->dma_cmd_space); |
544 | 544 | ||
545 | scsi_host_put(host); | 545 | scsi_host_put(host); |
diff --git a/drivers/scsi/megaraid.c b/drivers/scsi/megaraid.c index d101a8a6f4e8..7144674bc8e6 100644 --- a/drivers/scsi/megaraid.c +++ b/drivers/scsi/megaraid.c | |||
@@ -5049,7 +5049,7 @@ static struct pci_device_id megaraid_pci_tbl[] = { | |||
5049 | MODULE_DEVICE_TABLE(pci, megaraid_pci_tbl); | 5049 | MODULE_DEVICE_TABLE(pci, megaraid_pci_tbl); |
5050 | 5050 | ||
5051 | static struct pci_driver megaraid_pci_driver = { | 5051 | static struct pci_driver megaraid_pci_driver = { |
5052 | .name = "megaraid", | 5052 | .name = "megaraid_legacy", |
5053 | .id_table = megaraid_pci_tbl, | 5053 | .id_table = megaraid_pci_tbl, |
5054 | .probe = megaraid_probe_one, | 5054 | .probe = megaraid_probe_one, |
5055 | .remove = __devexit_p(megaraid_remove_one), | 5055 | .remove = __devexit_p(megaraid_remove_one), |
diff --git a/drivers/scsi/megaraid.h b/drivers/scsi/megaraid.h index 4b3e0d6e5afa..4b75fe619d9c 100644 --- a/drivers/scsi/megaraid.h +++ b/drivers/scsi/megaraid.h | |||
@@ -5,7 +5,7 @@ | |||
5 | #include <linux/mutex.h> | 5 | #include <linux/mutex.h> |
6 | 6 | ||
7 | #define MEGARAID_VERSION \ | 7 | #define MEGARAID_VERSION \ |
8 | "v2.00.3 (Release Date: Wed Feb 19 08:51:30 EST 2003)\n" | 8 | "v2.00.4 (Release Date: Thu Feb 9 08:51:30 EST 2006)\n" |
9 | 9 | ||
10 | /* | 10 | /* |
11 | * Driver features - change the values to enable or disable features in the | 11 | * Driver features - change the values to enable or disable features in the |
diff --git a/drivers/scsi/megaraid/megaraid_sas.c b/drivers/scsi/megaraid/megaraid_sas.c index 511ed52a5807..4f39dd01936d 100644 --- a/drivers/scsi/megaraid/megaraid_sas.c +++ b/drivers/scsi/megaraid/megaraid_sas.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * 2 of the License, or (at your option) any later version. | 10 | * 2 of the License, or (at your option) any later version. |
11 | * | 11 | * |
12 | * FILE : megaraid_sas.c | 12 | * FILE : megaraid_sas.c |
13 | * Version : v00.00.02.00-rc4 | 13 | * Version : v00.00.02.04 |
14 | * | 14 | * |
15 | * Authors: | 15 | * Authors: |
16 | * Sreenivas Bagalkote <Sreenivas.Bagalkote@lsil.com> | 16 | * Sreenivas Bagalkote <Sreenivas.Bagalkote@lsil.com> |
@@ -55,13 +55,19 @@ static struct pci_device_id megasas_pci_table[] = { | |||
55 | 55 | ||
56 | { | 56 | { |
57 | PCI_VENDOR_ID_LSI_LOGIC, | 57 | PCI_VENDOR_ID_LSI_LOGIC, |
58 | PCI_DEVICE_ID_LSI_SAS1064R, | 58 | PCI_DEVICE_ID_LSI_SAS1064R, // xscale IOP |
59 | PCI_ANY_ID, | 59 | PCI_ANY_ID, |
60 | PCI_ANY_ID, | 60 | PCI_ANY_ID, |
61 | }, | 61 | }, |
62 | { | 62 | { |
63 | PCI_VENDOR_ID_LSI_LOGIC, | ||
64 | PCI_DEVICE_ID_LSI_SAS1078R, // ppc IOP | ||
65 | PCI_ANY_ID, | ||
66 | PCI_ANY_ID, | ||
67 | }, | ||
68 | { | ||
63 | PCI_VENDOR_ID_DELL, | 69 | PCI_VENDOR_ID_DELL, |
64 | PCI_DEVICE_ID_DELL_PERC5, | 70 | PCI_DEVICE_ID_DELL_PERC5, // xscale IOP |
65 | PCI_ANY_ID, | 71 | PCI_ANY_ID, |
66 | PCI_ANY_ID, | 72 | PCI_ANY_ID, |
67 | }, | 73 | }, |
@@ -119,12 +125,18 @@ megasas_return_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd) | |||
119 | spin_unlock_irqrestore(&instance->cmd_pool_lock, flags); | 125 | spin_unlock_irqrestore(&instance->cmd_pool_lock, flags); |
120 | } | 126 | } |
121 | 127 | ||
128 | |||
129 | /** | ||
130 | * The following functions are defined for xscale | ||
131 | * (deviceid : 1064R, PERC5) controllers | ||
132 | */ | ||
133 | |||
122 | /** | 134 | /** |
123 | * megasas_enable_intr - Enables interrupts | 135 | * megasas_enable_intr_xscale - Enables interrupts |
124 | * @regs: MFI register set | 136 | * @regs: MFI register set |
125 | */ | 137 | */ |
126 | static inline void | 138 | static inline void |
127 | megasas_enable_intr(struct megasas_register_set __iomem * regs) | 139 | megasas_enable_intr_xscale(struct megasas_register_set __iomem * regs) |
128 | { | 140 | { |
129 | writel(1, &(regs)->outbound_intr_mask); | 141 | writel(1, &(regs)->outbound_intr_mask); |
130 | 142 | ||
@@ -133,13 +145,153 @@ megasas_enable_intr(struct megasas_register_set __iomem * regs) | |||
133 | } | 145 | } |
134 | 146 | ||
135 | /** | 147 | /** |
148 | * megasas_read_fw_status_reg_xscale - returns the current FW status value | ||
149 | * @regs: MFI register set | ||
150 | */ | ||
151 | static u32 | ||
152 | megasas_read_fw_status_reg_xscale(struct megasas_register_set __iomem * regs) | ||
153 | { | ||
154 | return readl(&(regs)->outbound_msg_0); | ||
155 | } | ||
156 | /** | ||
157 | * megasas_clear_interrupt_xscale - Check & clear interrupt | ||
158 | * @regs: MFI register set | ||
159 | */ | ||
160 | static int | ||
161 | megasas_clear_intr_xscale(struct megasas_register_set __iomem * regs) | ||
162 | { | ||
163 | u32 status; | ||
164 | /* | ||
165 | * Check if it is our interrupt | ||
166 | */ | ||
167 | status = readl(®s->outbound_intr_status); | ||
168 | |||
169 | if (!(status & MFI_OB_INTR_STATUS_MASK)) { | ||
170 | return 1; | ||
171 | } | ||
172 | |||
173 | /* | ||
174 | * Clear the interrupt by writing back the same value | ||
175 | */ | ||
176 | writel(status, ®s->outbound_intr_status); | ||
177 | |||
178 | return 0; | ||
179 | } | ||
180 | |||
181 | /** | ||
182 | * megasas_fire_cmd_xscale - Sends command to the FW | ||
183 | * @frame_phys_addr : Physical address of cmd | ||
184 | * @frame_count : Number of frames for the command | ||
185 | * @regs : MFI register set | ||
186 | */ | ||
187 | static inline void | ||
188 | megasas_fire_cmd_xscale(dma_addr_t frame_phys_addr,u32 frame_count, struct megasas_register_set __iomem *regs) | ||
189 | { | ||
190 | writel((frame_phys_addr >> 3)|(frame_count), | ||
191 | &(regs)->inbound_queue_port); | ||
192 | } | ||
193 | |||
194 | static struct megasas_instance_template megasas_instance_template_xscale = { | ||
195 | |||
196 | .fire_cmd = megasas_fire_cmd_xscale, | ||
197 | .enable_intr = megasas_enable_intr_xscale, | ||
198 | .clear_intr = megasas_clear_intr_xscale, | ||
199 | .read_fw_status_reg = megasas_read_fw_status_reg_xscale, | ||
200 | }; | ||
201 | |||
202 | /** | ||
203 | * This is the end of set of functions & definitions specific | ||
204 | * to xscale (deviceid : 1064R, PERC5) controllers | ||
205 | */ | ||
206 | |||
207 | /** | ||
208 | * The following functions are defined for ppc (deviceid : 0x60) | ||
209 | * controllers | ||
210 | */ | ||
211 | |||
212 | /** | ||
213 | * megasas_enable_intr_ppc - Enables interrupts | ||
214 | * @regs: MFI register set | ||
215 | */ | ||
216 | static inline void | ||
217 | megasas_enable_intr_ppc(struct megasas_register_set __iomem * regs) | ||
218 | { | ||
219 | writel(0xFFFFFFFF, &(regs)->outbound_doorbell_clear); | ||
220 | |||
221 | writel(~0x80000004, &(regs)->outbound_intr_mask); | ||
222 | |||
223 | /* Dummy readl to force pci flush */ | ||
224 | readl(®s->outbound_intr_mask); | ||
225 | } | ||
226 | |||
227 | /** | ||
228 | * megasas_read_fw_status_reg_ppc - returns the current FW status value | ||
229 | * @regs: MFI register set | ||
230 | */ | ||
231 | static u32 | ||
232 | megasas_read_fw_status_reg_ppc(struct megasas_register_set __iomem * regs) | ||
233 | { | ||
234 | return readl(&(regs)->outbound_scratch_pad); | ||
235 | } | ||
236 | |||
237 | /** | ||
238 | * megasas_clear_interrupt_ppc - Check & clear interrupt | ||
239 | * @regs: MFI register set | ||
240 | */ | ||
241 | static int | ||
242 | megasas_clear_intr_ppc(struct megasas_register_set __iomem * regs) | ||
243 | { | ||
244 | u32 status; | ||
245 | /* | ||
246 | * Check if it is our interrupt | ||
247 | */ | ||
248 | status = readl(®s->outbound_intr_status); | ||
249 | |||
250 | if (!(status & MFI_REPLY_1078_MESSAGE_INTERRUPT)) { | ||
251 | return 1; | ||
252 | } | ||
253 | |||
254 | /* | ||
255 | * Clear the interrupt by writing back the same value | ||
256 | */ | ||
257 | writel(status, ®s->outbound_doorbell_clear); | ||
258 | |||
259 | return 0; | ||
260 | } | ||
261 | /** | ||
262 | * megasas_fire_cmd_ppc - Sends command to the FW | ||
263 | * @frame_phys_addr : Physical address of cmd | ||
264 | * @frame_count : Number of frames for the command | ||
265 | * @regs : MFI register set | ||
266 | */ | ||
267 | static inline void | ||
268 | megasas_fire_cmd_ppc(dma_addr_t frame_phys_addr, u32 frame_count, struct megasas_register_set __iomem *regs) | ||
269 | { | ||
270 | writel((frame_phys_addr | (frame_count<<1))|1, | ||
271 | &(regs)->inbound_queue_port); | ||
272 | } | ||
273 | |||
274 | static struct megasas_instance_template megasas_instance_template_ppc = { | ||
275 | |||
276 | .fire_cmd = megasas_fire_cmd_ppc, | ||
277 | .enable_intr = megasas_enable_intr_ppc, | ||
278 | .clear_intr = megasas_clear_intr_ppc, | ||
279 | .read_fw_status_reg = megasas_read_fw_status_reg_ppc, | ||
280 | }; | ||
281 | |||
282 | /** | ||
283 | * This is the end of set of functions & definitions | ||
284 | * specific to ppc (deviceid : 0x60) controllers | ||
285 | */ | ||
286 | |||
287 | /** | ||
136 | * megasas_disable_intr - Disables interrupts | 288 | * megasas_disable_intr - Disables interrupts |
137 | * @regs: MFI register set | 289 | * @regs: MFI register set |
138 | */ | 290 | */ |
139 | static inline void | 291 | static inline void |
140 | megasas_disable_intr(struct megasas_register_set __iomem * regs) | 292 | megasas_disable_intr(struct megasas_register_set __iomem * regs) |
141 | { | 293 | { |
142 | u32 mask = readl(®s->outbound_intr_mask) & (~0x00000001); | 294 | u32 mask = 0x1f; |
143 | writel(mask, ®s->outbound_intr_mask); | 295 | writel(mask, ®s->outbound_intr_mask); |
144 | 296 | ||
145 | /* Dummy readl to force pci flush */ | 297 | /* Dummy readl to force pci flush */ |
@@ -167,8 +319,7 @@ megasas_issue_polled(struct megasas_instance *instance, struct megasas_cmd *cmd) | |||
167 | /* | 319 | /* |
168 | * Issue the frame using inbound queue port | 320 | * Issue the frame using inbound queue port |
169 | */ | 321 | */ |
170 | writel(cmd->frame_phys_addr >> 3, | 322 | instance->instancet->fire_cmd(cmd->frame_phys_addr ,0,instance->reg_set); |
171 | &instance->reg_set->inbound_queue_port); | ||
172 | 323 | ||
173 | /* | 324 | /* |
174 | * Wait for cmd_status to change | 325 | * Wait for cmd_status to change |
@@ -198,8 +349,7 @@ megasas_issue_blocked_cmd(struct megasas_instance *instance, | |||
198 | { | 349 | { |
199 | cmd->cmd_status = ENODATA; | 350 | cmd->cmd_status = ENODATA; |
200 | 351 | ||
201 | writel(cmd->frame_phys_addr >> 3, | 352 | instance->instancet->fire_cmd(cmd->frame_phys_addr ,0,instance->reg_set); |
202 | &instance->reg_set->inbound_queue_port); | ||
203 | 353 | ||
204 | wait_event(instance->int_cmd_wait_q, (cmd->cmd_status != ENODATA)); | 354 | wait_event(instance->int_cmd_wait_q, (cmd->cmd_status != ENODATA)); |
205 | 355 | ||
@@ -242,8 +392,7 @@ megasas_issue_blocked_abort_cmd(struct megasas_instance *instance, | |||
242 | cmd->sync_cmd = 1; | 392 | cmd->sync_cmd = 1; |
243 | cmd->cmd_status = 0xFF; | 393 | cmd->cmd_status = 0xFF; |
244 | 394 | ||
245 | writel(cmd->frame_phys_addr >> 3, | 395 | instance->instancet->fire_cmd(cmd->frame_phys_addr ,0,instance->reg_set); |
246 | &instance->reg_set->inbound_queue_port); | ||
247 | 396 | ||
248 | /* | 397 | /* |
249 | * Wait for this cmd to complete | 398 | * Wait for this cmd to complete |
@@ -558,112 +707,29 @@ megasas_build_ldio(struct megasas_instance *instance, struct scsi_cmnd *scp, | |||
558 | } | 707 | } |
559 | 708 | ||
560 | /** | 709 | /** |
561 | * megasas_build_cmd - Prepares a command packet | 710 | * megasas_is_ldio - Checks if the cmd is for logical drive |
562 | * @instance: Adapter soft state | 711 | * @scmd: SCSI command |
563 | * @scp: SCSI command | 712 | * |
564 | * @frame_count: [OUT] Number of frames used to prepare this command | 713 | * Called by megasas_queue_command to find out if the command to be queued |
714 | * is a logical drive command | ||
565 | */ | 715 | */ |
566 | static struct megasas_cmd *megasas_build_cmd(struct megasas_instance | 716 | static inline int megasas_is_ldio(struct scsi_cmnd *cmd) |
567 | *instance, | ||
568 | struct scsi_cmnd *scp, | ||
569 | int *frame_count) | ||
570 | { | 717 | { |
571 | u32 logical_cmd; | 718 | if (!MEGASAS_IS_LOGICAL(cmd)) |
572 | struct megasas_cmd *cmd; | 719 | return 0; |
573 | 720 | switch (cmd->cmnd[0]) { | |
574 | /* | 721 | case READ_10: |
575 | * Find out if this is logical or physical drive command. | 722 | case WRITE_10: |
576 | */ | 723 | case READ_12: |
577 | logical_cmd = MEGASAS_IS_LOGICAL(scp); | 724 | case WRITE_12: |
578 | 725 | case READ_6: | |
579 | /* | 726 | case WRITE_6: |
580 | * Logical drive command | 727 | case READ_16: |
581 | */ | 728 | case WRITE_16: |
582 | if (logical_cmd) { | 729 | return 1; |
583 | 730 | default: | |
584 | if (scp->device->id >= MEGASAS_MAX_LD) { | 731 | return 0; |
585 | scp->result = DID_BAD_TARGET << 16; | ||
586 | return NULL; | ||
587 | } | ||
588 | |||
589 | switch (scp->cmnd[0]) { | ||
590 | |||
591 | case READ_10: | ||
592 | case WRITE_10: | ||
593 | case READ_12: | ||
594 | case WRITE_12: | ||
595 | case READ_6: | ||
596 | case WRITE_6: | ||
597 | case READ_16: | ||
598 | case WRITE_16: | ||
599 | /* | ||
600 | * Fail for LUN > 0 | ||
601 | */ | ||
602 | if (scp->device->lun) { | ||
603 | scp->result = DID_BAD_TARGET << 16; | ||
604 | return NULL; | ||
605 | } | ||
606 | |||
607 | cmd = megasas_get_cmd(instance); | ||
608 | |||
609 | if (!cmd) { | ||
610 | scp->result = DID_IMM_RETRY << 16; | ||
611 | return NULL; | ||
612 | } | ||
613 | |||
614 | *frame_count = megasas_build_ldio(instance, scp, cmd); | ||
615 | |||
616 | if (!(*frame_count)) { | ||
617 | megasas_return_cmd(instance, cmd); | ||
618 | return NULL; | ||
619 | } | ||
620 | |||
621 | return cmd; | ||
622 | |||
623 | default: | ||
624 | /* | ||
625 | * Fail for LUN > 0 | ||
626 | */ | ||
627 | if (scp->device->lun) { | ||
628 | scp->result = DID_BAD_TARGET << 16; | ||
629 | return NULL; | ||
630 | } | ||
631 | |||
632 | cmd = megasas_get_cmd(instance); | ||
633 | |||
634 | if (!cmd) { | ||
635 | scp->result = DID_IMM_RETRY << 16; | ||
636 | return NULL; | ||
637 | } | ||
638 | |||
639 | *frame_count = megasas_build_dcdb(instance, scp, cmd); | ||
640 | |||
641 | if (!(*frame_count)) { | ||
642 | megasas_return_cmd(instance, cmd); | ||
643 | return NULL; | ||
644 | } | ||
645 | |||
646 | return cmd; | ||
647 | } | ||
648 | } else { | ||
649 | cmd = megasas_get_cmd(instance); | ||
650 | |||
651 | if (!cmd) { | ||
652 | scp->result = DID_IMM_RETRY << 16; | ||
653 | return NULL; | ||
654 | } | ||
655 | |||
656 | *frame_count = megasas_build_dcdb(instance, scp, cmd); | ||
657 | |||
658 | if (!(*frame_count)) { | ||
659 | megasas_return_cmd(instance, cmd); | ||
660 | return NULL; | ||
661 | } | ||
662 | |||
663 | return cmd; | ||
664 | } | 732 | } |
665 | |||
666 | return NULL; | ||
667 | } | 733 | } |
668 | 734 | ||
669 | /** | 735 | /** |
@@ -684,13 +750,27 @@ megasas_queue_command(struct scsi_cmnd *scmd, void (*done) (struct scsi_cmnd *)) | |||
684 | scmd->scsi_done = done; | 750 | scmd->scsi_done = done; |
685 | scmd->result = 0; | 751 | scmd->result = 0; |
686 | 752 | ||
687 | cmd = megasas_build_cmd(instance, scmd, &frame_count); | 753 | if (MEGASAS_IS_LOGICAL(scmd) && |
688 | 754 | (scmd->device->id >= MEGASAS_MAX_LD || scmd->device->lun)) { | |
689 | if (!cmd) { | 755 | scmd->result = DID_BAD_TARGET << 16; |
690 | done(scmd); | 756 | goto out_done; |
691 | return 0; | ||
692 | } | 757 | } |
693 | 758 | ||
759 | cmd = megasas_get_cmd(instance); | ||
760 | if (!cmd) | ||
761 | return SCSI_MLQUEUE_HOST_BUSY; | ||
762 | |||
763 | /* | ||
764 | * Logical drive command | ||
765 | */ | ||
766 | if (megasas_is_ldio(scmd)) | ||
767 | frame_count = megasas_build_ldio(instance, scmd, cmd); | ||
768 | else | ||
769 | frame_count = megasas_build_dcdb(instance, scmd, cmd); | ||
770 | |||
771 | if (!frame_count) | ||
772 | goto out_return_cmd; | ||
773 | |||
694 | cmd->scmd = scmd; | 774 | cmd->scmd = scmd; |
695 | scmd->SCp.ptr = (char *)cmd; | 775 | scmd->SCp.ptr = (char *)cmd; |
696 | scmd->SCp.sent_command = jiffies; | 776 | scmd->SCp.sent_command = jiffies; |
@@ -702,9 +782,28 @@ megasas_queue_command(struct scsi_cmnd *scmd, void (*done) (struct scsi_cmnd *)) | |||
702 | instance->fw_outstanding++; | 782 | instance->fw_outstanding++; |
703 | spin_unlock_irqrestore(&instance->instance_lock, flags); | 783 | spin_unlock_irqrestore(&instance->instance_lock, flags); |
704 | 784 | ||
705 | writel(((cmd->frame_phys_addr >> 3) | (cmd->frame_count - 1)), | 785 | instance->instancet->fire_cmd(cmd->frame_phys_addr ,cmd->frame_count-1,instance->reg_set); |
706 | &instance->reg_set->inbound_queue_port); | 786 | |
787 | return 0; | ||
707 | 788 | ||
789 | out_return_cmd: | ||
790 | megasas_return_cmd(instance, cmd); | ||
791 | out_done: | ||
792 | done(scmd); | ||
793 | return 0; | ||
794 | } | ||
795 | |||
796 | static int megasas_slave_configure(struct scsi_device *sdev) | ||
797 | { | ||
798 | /* | ||
799 | * Don't export physical disk devices to the disk driver. | ||
800 | * | ||
801 | * FIXME: Currently we don't export them to the midlayer at all. | ||
802 | * That will be fixed once LSI engineers have audited the | ||
803 | * firmware for possible issues. | ||
804 | */ | ||
805 | if (sdev->channel < MEGASAS_MAX_PD_CHANNELS && sdev->type == TYPE_DISK) | ||
806 | return -ENXIO; | ||
708 | return 0; | 807 | return 0; |
709 | } | 808 | } |
710 | 809 | ||
@@ -858,6 +957,7 @@ static struct scsi_host_template megasas_template = { | |||
858 | .module = THIS_MODULE, | 957 | .module = THIS_MODULE, |
859 | .name = "LSI Logic SAS based MegaRAID driver", | 958 | .name = "LSI Logic SAS based MegaRAID driver", |
860 | .proc_name = "megaraid_sas", | 959 | .proc_name = "megaraid_sas", |
960 | .slave_configure = megasas_slave_configure, | ||
861 | .queuecommand = megasas_queue_command, | 961 | .queuecommand = megasas_queue_command, |
862 | .eh_device_reset_handler = megasas_reset_device, | 962 | .eh_device_reset_handler = megasas_reset_device, |
863 | .eh_bus_reset_handler = megasas_reset_bus_host, | 963 | .eh_bus_reset_handler = megasas_reset_bus_host, |
@@ -986,20 +1086,6 @@ megasas_complete_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd, | |||
986 | break; | 1086 | break; |
987 | } | 1087 | } |
988 | 1088 | ||
989 | /* | ||
990 | * Don't export physical disk devices to mid-layer. | ||
991 | */ | ||
992 | if (!MEGASAS_IS_LOGICAL(cmd->scmd) && | ||
993 | (hdr->cmd_status == MFI_STAT_OK) && | ||
994 | (cmd->scmd->cmnd[0] == INQUIRY)) { | ||
995 | |||
996 | if (((*(u8 *) cmd->scmd->request_buffer) & 0x1F) == | ||
997 | TYPE_DISK) { | ||
998 | cmd->scmd->result = DID_BAD_TARGET << 16; | ||
999 | exception = 1; | ||
1000 | } | ||
1001 | } | ||
1002 | |||
1003 | case MFI_CMD_LD_READ: | 1089 | case MFI_CMD_LD_READ: |
1004 | case MFI_CMD_LD_WRITE: | 1090 | case MFI_CMD_LD_WRITE: |
1005 | 1091 | ||
@@ -1108,7 +1194,6 @@ megasas_complete_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd, | |||
1108 | static int | 1194 | static int |
1109 | megasas_deplete_reply_queue(struct megasas_instance *instance, u8 alt_status) | 1195 | megasas_deplete_reply_queue(struct megasas_instance *instance, u8 alt_status) |
1110 | { | 1196 | { |
1111 | u32 status; | ||
1112 | u32 producer; | 1197 | u32 producer; |
1113 | u32 consumer; | 1198 | u32 consumer; |
1114 | u32 context; | 1199 | u32 context; |
@@ -1116,17 +1201,10 @@ megasas_deplete_reply_queue(struct megasas_instance *instance, u8 alt_status) | |||
1116 | 1201 | ||
1117 | /* | 1202 | /* |
1118 | * Check if it is our interrupt | 1203 | * Check if it is our interrupt |
1204 | * Clear the interrupt | ||
1119 | */ | 1205 | */ |
1120 | status = readl(&instance->reg_set->outbound_intr_status); | 1206 | if(instance->instancet->clear_intr(instance->reg_set)) |
1121 | |||
1122 | if (!(status & MFI_OB_INTR_STATUS_MASK)) { | ||
1123 | return IRQ_NONE; | 1207 | return IRQ_NONE; |
1124 | } | ||
1125 | |||
1126 | /* | ||
1127 | * Clear the interrupt by writing back the same value | ||
1128 | */ | ||
1129 | writel(status, &instance->reg_set->outbound_intr_status); | ||
1130 | 1208 | ||
1131 | producer = *instance->producer; | 1209 | producer = *instance->producer; |
1132 | consumer = *instance->consumer; | 1210 | consumer = *instance->consumer; |
@@ -1160,7 +1238,7 @@ static irqreturn_t megasas_isr(int irq, void *devp, struct pt_regs *regs) | |||
1160 | 1238 | ||
1161 | /** | 1239 | /** |
1162 | * megasas_transition_to_ready - Move the FW to READY state | 1240 | * megasas_transition_to_ready - Move the FW to READY state |
1163 | * @reg_set: MFI register set | 1241 | * @instance: Adapter soft state |
1164 | * | 1242 | * |
1165 | * During the initialization, FW passes can potentially be in any one of | 1243 | * During the initialization, FW passes can potentially be in any one of |
1166 | * several possible states. If the FW in operational, waiting-for-handshake | 1244 | * several possible states. If the FW in operational, waiting-for-handshake |
@@ -1168,14 +1246,14 @@ static irqreturn_t megasas_isr(int irq, void *devp, struct pt_regs *regs) | |||
1168 | * has to wait for the ready state. | 1246 | * has to wait for the ready state. |
1169 | */ | 1247 | */ |
1170 | static int | 1248 | static int |
1171 | megasas_transition_to_ready(struct megasas_register_set __iomem * reg_set) | 1249 | megasas_transition_to_ready(struct megasas_instance* instance) |
1172 | { | 1250 | { |
1173 | int i; | 1251 | int i; |
1174 | u8 max_wait; | 1252 | u8 max_wait; |
1175 | u32 fw_state; | 1253 | u32 fw_state; |
1176 | u32 cur_state; | 1254 | u32 cur_state; |
1177 | 1255 | ||
1178 | fw_state = readl(®_set->outbound_msg_0) & MFI_STATE_MASK; | 1256 | fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) & MFI_STATE_MASK; |
1179 | 1257 | ||
1180 | while (fw_state != MFI_STATE_READY) { | 1258 | while (fw_state != MFI_STATE_READY) { |
1181 | 1259 | ||
@@ -1193,7 +1271,7 @@ megasas_transition_to_ready(struct megasas_register_set __iomem * reg_set) | |||
1193 | * Set the CLR bit in inbound doorbell | 1271 | * Set the CLR bit in inbound doorbell |
1194 | */ | 1272 | */ |
1195 | writel(MFI_INIT_CLEAR_HANDSHAKE, | 1273 | writel(MFI_INIT_CLEAR_HANDSHAKE, |
1196 | ®_set->inbound_doorbell); | 1274 | &instance->reg_set->inbound_doorbell); |
1197 | 1275 | ||
1198 | max_wait = 2; | 1276 | max_wait = 2; |
1199 | cur_state = MFI_STATE_WAIT_HANDSHAKE; | 1277 | cur_state = MFI_STATE_WAIT_HANDSHAKE; |
@@ -1203,8 +1281,8 @@ megasas_transition_to_ready(struct megasas_register_set __iomem * reg_set) | |||
1203 | /* | 1281 | /* |
1204 | * Bring it to READY state; assuming max wait 2 secs | 1282 | * Bring it to READY state; assuming max wait 2 secs |
1205 | */ | 1283 | */ |
1206 | megasas_disable_intr(reg_set); | 1284 | megasas_disable_intr(instance->reg_set); |
1207 | writel(MFI_INIT_READY, ®_set->inbound_doorbell); | 1285 | writel(MFI_INIT_READY, &instance->reg_set->inbound_doorbell); |
1208 | 1286 | ||
1209 | max_wait = 10; | 1287 | max_wait = 10; |
1210 | cur_state = MFI_STATE_OPERATIONAL; | 1288 | cur_state = MFI_STATE_OPERATIONAL; |
@@ -1253,8 +1331,8 @@ megasas_transition_to_ready(struct megasas_register_set __iomem * reg_set) | |||
1253 | * The cur_state should not last for more than max_wait secs | 1331 | * The cur_state should not last for more than max_wait secs |
1254 | */ | 1332 | */ |
1255 | for (i = 0; i < (max_wait * 1000); i++) { | 1333 | for (i = 0; i < (max_wait * 1000); i++) { |
1256 | fw_state = MFI_STATE_MASK & | 1334 | fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) & |
1257 | readl(®_set->outbound_msg_0); | 1335 | MFI_STATE_MASK ; |
1258 | 1336 | ||
1259 | if (fw_state == cur_state) { | 1337 | if (fw_state == cur_state) { |
1260 | msleep(1); | 1338 | msleep(1); |
@@ -1616,18 +1694,30 @@ static int megasas_init_mfi(struct megasas_instance *instance) | |||
1616 | 1694 | ||
1617 | reg_set = instance->reg_set; | 1695 | reg_set = instance->reg_set; |
1618 | 1696 | ||
1697 | switch(instance->pdev->device) | ||
1698 | { | ||
1699 | case PCI_DEVICE_ID_LSI_SAS1078R: | ||
1700 | instance->instancet = &megasas_instance_template_ppc; | ||
1701 | break; | ||
1702 | case PCI_DEVICE_ID_LSI_SAS1064R: | ||
1703 | case PCI_DEVICE_ID_DELL_PERC5: | ||
1704 | default: | ||
1705 | instance->instancet = &megasas_instance_template_xscale; | ||
1706 | break; | ||
1707 | } | ||
1708 | |||
1619 | /* | 1709 | /* |
1620 | * We expect the FW state to be READY | 1710 | * We expect the FW state to be READY |
1621 | */ | 1711 | */ |
1622 | if (megasas_transition_to_ready(instance->reg_set)) | 1712 | if (megasas_transition_to_ready(instance)) |
1623 | goto fail_ready_state; | 1713 | goto fail_ready_state; |
1624 | 1714 | ||
1625 | /* | 1715 | /* |
1626 | * Get various operational parameters from status register | 1716 | * Get various operational parameters from status register |
1627 | */ | 1717 | */ |
1628 | instance->max_fw_cmds = readl(®_set->outbound_msg_0) & 0x00FFFF; | 1718 | instance->max_fw_cmds = instance->instancet->read_fw_status_reg(reg_set) & 0x00FFFF; |
1629 | instance->max_num_sge = (readl(®_set->outbound_msg_0) & 0xFF0000) >> | 1719 | instance->max_num_sge = (instance->instancet->read_fw_status_reg(reg_set) & 0xFF0000) >> |
1630 | 0x10; | 1720 | 0x10; |
1631 | /* | 1721 | /* |
1632 | * Create a pool of commands | 1722 | * Create a pool of commands |
1633 | */ | 1723 | */ |
@@ -1936,8 +2026,7 @@ megasas_register_aen(struct megasas_instance *instance, u32 seq_num, | |||
1936 | /* | 2026 | /* |
1937 | * Issue the aen registration frame | 2027 | * Issue the aen registration frame |
1938 | */ | 2028 | */ |
1939 | writel(cmd->frame_phys_addr >> 3, | 2029 | instance->instancet->fire_cmd(cmd->frame_phys_addr ,0,instance->reg_set); |
1940 | &instance->reg_set->inbound_queue_port); | ||
1941 | 2030 | ||
1942 | return 0; | 2031 | return 0; |
1943 | } | 2032 | } |
@@ -1991,6 +2080,7 @@ static int megasas_io_attach(struct megasas_instance *instance) | |||
1991 | host->max_channel = MEGASAS_MAX_CHANNELS - 1; | 2080 | host->max_channel = MEGASAS_MAX_CHANNELS - 1; |
1992 | host->max_id = MEGASAS_MAX_DEV_PER_CHANNEL; | 2081 | host->max_id = MEGASAS_MAX_DEV_PER_CHANNEL; |
1993 | host->max_lun = MEGASAS_MAX_LUN; | 2082 | host->max_lun = MEGASAS_MAX_LUN; |
2083 | host->max_cmd_len = 16; | ||
1994 | 2084 | ||
1995 | /* | 2085 | /* |
1996 | * Notify the mid-layer about the new controller | 2086 | * Notify the mid-layer about the new controller |
@@ -2126,7 +2216,7 @@ megasas_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
2126 | goto fail_irq; | 2216 | goto fail_irq; |
2127 | } | 2217 | } |
2128 | 2218 | ||
2129 | megasas_enable_intr(instance->reg_set); | 2219 | instance->instancet->enable_intr(instance->reg_set); |
2130 | 2220 | ||
2131 | /* | 2221 | /* |
2132 | * Store instance in PCI softstate | 2222 | * Store instance in PCI softstate |
@@ -2681,9 +2771,8 @@ megasas_mgmt_compat_ioctl(struct file *file, unsigned int cmd, | |||
2681 | unsigned long arg) | 2771 | unsigned long arg) |
2682 | { | 2772 | { |
2683 | switch (cmd) { | 2773 | switch (cmd) { |
2684 | case MEGASAS_IOC_FIRMWARE:{ | 2774 | case MEGASAS_IOC_FIRMWARE32: |
2685 | return megasas_mgmt_compat_ioctl_fw(file, arg); | 2775 | return megasas_mgmt_compat_ioctl_fw(file, arg); |
2686 | } | ||
2687 | case MEGASAS_IOC_GET_AEN: | 2776 | case MEGASAS_IOC_GET_AEN: |
2688 | return megasas_mgmt_ioctl_aen(file, arg); | 2777 | return megasas_mgmt_ioctl_aen(file, arg); |
2689 | } | 2778 | } |
diff --git a/drivers/scsi/megaraid/megaraid_sas.h b/drivers/scsi/megaraid/megaraid_sas.h index eaec9d531424..89639f0c38ef 100644 --- a/drivers/scsi/megaraid/megaraid_sas.h +++ b/drivers/scsi/megaraid/megaraid_sas.h | |||
@@ -18,10 +18,9 @@ | |||
18 | /** | 18 | /** |
19 | * MegaRAID SAS Driver meta data | 19 | * MegaRAID SAS Driver meta data |
20 | */ | 20 | */ |
21 | #define MEGASAS_VERSION "00.00.02.00-rc4" | 21 | #define MEGASAS_VERSION "00.00.02.04" |
22 | #define MEGASAS_RELDATE "Sep 16, 2005" | 22 | #define MEGASAS_RELDATE "Feb 03, 2006" |
23 | #define MEGASAS_EXT_VERSION "Fri Sep 16 12:37:08 EDT 2005" | 23 | #define MEGASAS_EXT_VERSION "Fri Feb 03 14:31:44 PST 2006" |
24 | |||
25 | /* | 24 | /* |
26 | * ===================================== | 25 | * ===================================== |
27 | * MegaRAID SAS MFI firmware definitions | 26 | * MegaRAID SAS MFI firmware definitions |
@@ -554,31 +553,46 @@ struct megasas_ctrl_info { | |||
554 | #define MFI_OB_INTR_STATUS_MASK 0x00000002 | 553 | #define MFI_OB_INTR_STATUS_MASK 0x00000002 |
555 | #define MFI_POLL_TIMEOUT_SECS 10 | 554 | #define MFI_POLL_TIMEOUT_SECS 10 |
556 | 555 | ||
556 | #define MFI_REPLY_1078_MESSAGE_INTERRUPT 0x80000000 | ||
557 | #define PCI_DEVICE_ID_LSI_SAS1078R 0x00000060 | ||
558 | |||
557 | struct megasas_register_set { | 559 | struct megasas_register_set { |
560 | u32 reserved_0[4]; /*0000h*/ | ||
561 | |||
562 | u32 inbound_msg_0; /*0010h*/ | ||
563 | u32 inbound_msg_1; /*0014h*/ | ||
564 | u32 outbound_msg_0; /*0018h*/ | ||
565 | u32 outbound_msg_1; /*001Ch*/ | ||
566 | |||
567 | u32 inbound_doorbell; /*0020h*/ | ||
568 | u32 inbound_intr_status; /*0024h*/ | ||
569 | u32 inbound_intr_mask; /*0028h*/ | ||
570 | |||
571 | u32 outbound_doorbell; /*002Ch*/ | ||
572 | u32 outbound_intr_status; /*0030h*/ | ||
573 | u32 outbound_intr_mask; /*0034h*/ | ||
558 | 574 | ||
559 | u32 reserved_0[4]; /*0000h */ | 575 | u32 reserved_1[2]; /*0038h*/ |
560 | 576 | ||
561 | u32 inbound_msg_0; /*0010h */ | 577 | u32 inbound_queue_port; /*0040h*/ |
562 | u32 inbound_msg_1; /*0014h */ | 578 | u32 outbound_queue_port; /*0044h*/ |
563 | u32 outbound_msg_0; /*0018h */ | ||
564 | u32 outbound_msg_1; /*001Ch */ | ||
565 | 579 | ||
566 | u32 inbound_doorbell; /*0020h */ | 580 | u32 reserved_2[22]; /*0048h*/ |
567 | u32 inbound_intr_status; /*0024h */ | ||
568 | u32 inbound_intr_mask; /*0028h */ | ||
569 | 581 | ||
570 | u32 outbound_doorbell; /*002Ch */ | 582 | u32 outbound_doorbell_clear; /*00A0h*/ |
571 | u32 outbound_intr_status; /*0030h */ | ||
572 | u32 outbound_intr_mask; /*0034h */ | ||
573 | 583 | ||
574 | u32 reserved_1[2]; /*0038h */ | 584 | u32 reserved_3[3]; /*00A4h*/ |
575 | 585 | ||
576 | u32 inbound_queue_port; /*0040h */ | 586 | u32 outbound_scratch_pad ; /*00B0h*/ |
577 | u32 outbound_queue_port; /*0044h */ | ||
578 | 587 | ||
579 | u32 reserved_2; /*004Ch */ | 588 | u32 reserved_4[3]; /*00B4h*/ |
580 | 589 | ||
581 | u32 index_registers[1004]; /*0050h */ | 590 | u32 inbound_low_queue_port ; /*00C0h*/ |
591 | |||
592 | u32 inbound_high_queue_port ; /*00C4h*/ | ||
593 | |||
594 | u32 reserved_5; /*00C8h*/ | ||
595 | u32 index_registers[820]; /*00CCh*/ | ||
582 | 596 | ||
583 | } __attribute__ ((packed)); | 597 | } __attribute__ ((packed)); |
584 | 598 | ||
@@ -1013,6 +1027,16 @@ struct megasas_evt_detail { | |||
1013 | 1027 | ||
1014 | } __attribute__ ((packed)); | 1028 | } __attribute__ ((packed)); |
1015 | 1029 | ||
1030 | struct megasas_instance_template { | ||
1031 | void (*fire_cmd)(dma_addr_t ,u32 ,struct megasas_register_set __iomem *); | ||
1032 | |||
1033 | void (*enable_intr)(struct megasas_register_set __iomem *) ; | ||
1034 | |||
1035 | int (*clear_intr)(struct megasas_register_set __iomem *); | ||
1036 | |||
1037 | u32 (*read_fw_status_reg)(struct megasas_register_set __iomem *); | ||
1038 | }; | ||
1039 | |||
1016 | struct megasas_instance { | 1040 | struct megasas_instance { |
1017 | 1041 | ||
1018 | u32 *producer; | 1042 | u32 *producer; |
@@ -1056,6 +1080,8 @@ struct megasas_instance { | |||
1056 | u32 fw_outstanding; | 1080 | u32 fw_outstanding; |
1057 | u32 hw_crit_error; | 1081 | u32 hw_crit_error; |
1058 | spinlock_t instance_lock; | 1082 | spinlock_t instance_lock; |
1083 | |||
1084 | struct megasas_instance_template *instancet; | ||
1059 | }; | 1085 | }; |
1060 | 1086 | ||
1061 | #define MEGASAS_IS_LOGICAL(scp) \ | 1087 | #define MEGASAS_IS_LOGICAL(scp) \ |
@@ -1125,11 +1151,10 @@ struct compat_megasas_iocpacket { | |||
1125 | struct compat_iovec sgl[MAX_IOCTL_SGE]; | 1151 | struct compat_iovec sgl[MAX_IOCTL_SGE]; |
1126 | } __attribute__ ((packed)); | 1152 | } __attribute__ ((packed)); |
1127 | 1153 | ||
1128 | #define MEGASAS_IOC_FIRMWARE _IOWR('M', 1, struct compat_megasas_iocpacket) | ||
1129 | #else | ||
1130 | #define MEGASAS_IOC_FIRMWARE _IOWR('M', 1, struct megasas_iocpacket) | ||
1131 | #endif | 1154 | #endif |
1132 | 1155 | ||
1156 | #define MEGASAS_IOC_FIRMWARE _IOWR('M', 1, struct megasas_iocpacket) | ||
1157 | #define MEGASAS_IOC_FIRMWARE32 _IOWR('M', 1, struct compat_megasas_iocpacket) | ||
1133 | #define MEGASAS_IOC_GET_AEN _IOW('M', 3, struct megasas_aen) | 1158 | #define MEGASAS_IOC_GET_AEN _IOW('M', 3, struct megasas_aen) |
1134 | 1159 | ||
1135 | struct megasas_mgmt_info { | 1160 | struct megasas_mgmt_info { |
diff --git a/drivers/scsi/pcmcia/Kconfig b/drivers/scsi/pcmcia/Kconfig index df52190f4d94..eac8e179cfff 100644 --- a/drivers/scsi/pcmcia/Kconfig +++ b/drivers/scsi/pcmcia/Kconfig | |||
@@ -8,6 +8,7 @@ menu "PCMCIA SCSI adapter support" | |||
8 | config PCMCIA_AHA152X | 8 | config PCMCIA_AHA152X |
9 | tristate "Adaptec AHA152X PCMCIA support" | 9 | tristate "Adaptec AHA152X PCMCIA support" |
10 | depends on m && !64BIT | 10 | depends on m && !64BIT |
11 | select SCSI_SPI_ATTRS | ||
11 | help | 12 | help |
12 | Say Y here if you intend to attach this type of PCMCIA SCSI host | 13 | Say Y here if you intend to attach this type of PCMCIA SCSI host |
13 | adapter to your computer. | 14 | adapter to your computer. |
diff --git a/drivers/scsi/pcmcia/aha152x_stub.c b/drivers/scsi/pcmcia/aha152x_stub.c index 0c9edb7051f4..5609847e254a 100644 --- a/drivers/scsi/pcmcia/aha152x_stub.c +++ b/drivers/scsi/pcmcia/aha152x_stub.c | |||
@@ -275,10 +275,8 @@ static int aha152x_resume(struct pcmcia_device *dev) | |||
275 | 275 | ||
276 | link->state &= ~DEV_SUSPEND; | 276 | link->state &= ~DEV_SUSPEND; |
277 | if (link->state & DEV_CONFIG) { | 277 | if (link->state & DEV_CONFIG) { |
278 | Scsi_Cmnd tmp; | ||
279 | pcmcia_request_configuration(link->handle, &link->conf); | 278 | pcmcia_request_configuration(link->handle, &link->conf); |
280 | tmp.device->host = info->host; | 279 | aha152x_host_reset_host(info->host); |
281 | aha152x_host_reset(&tmp); | ||
282 | } | 280 | } |
283 | 281 | ||
284 | return 0; | 282 | return 0; |
diff --git a/drivers/scsi/qla1280.c b/drivers/scsi/qla1280.c index 0878f95b5449..e0230249fa0f 100644 --- a/drivers/scsi/qla1280.c +++ b/drivers/scsi/qla1280.c | |||
@@ -17,9 +17,11 @@ | |||
17 | * General Public License for more details. | 17 | * General Public License for more details. |
18 | * | 18 | * |
19 | ******************************************************************************/ | 19 | ******************************************************************************/ |
20 | #define QLA1280_VERSION "3.25" | 20 | #define QLA1280_VERSION "3.26" |
21 | /***************************************************************************** | 21 | /***************************************************************************** |
22 | Revision History: | 22 | Revision History: |
23 | Rev 3.26, January 16, 2006 Jes Sorensen | ||
24 | - Ditch all < 2.6 support | ||
23 | Rev 3.25.1, February 10, 2005 Christoph Hellwig | 25 | Rev 3.25.1, February 10, 2005 Christoph Hellwig |
24 | - use pci_map_single to map non-S/G requests | 26 | - use pci_map_single to map non-S/G requests |
25 | - remove qla1280_proc_info | 27 | - remove qla1280_proc_info |
@@ -356,25 +358,18 @@ | |||
356 | #include <asm/types.h> | 358 | #include <asm/types.h> |
357 | #include <asm/system.h> | 359 | #include <asm/system.h> |
358 | 360 | ||
359 | #if LINUX_VERSION_CODE >= 0x020545 | ||
360 | #include <scsi/scsi.h> | 361 | #include <scsi/scsi.h> |
361 | #include <scsi/scsi_cmnd.h> | 362 | #include <scsi/scsi_cmnd.h> |
362 | #include <scsi/scsi_device.h> | 363 | #include <scsi/scsi_device.h> |
363 | #include <scsi/scsi_host.h> | 364 | #include <scsi/scsi_host.h> |
364 | #include <scsi/scsi_tcq.h> | 365 | #include <scsi/scsi_tcq.h> |
365 | #else | ||
366 | #include <linux/blk.h> | ||
367 | #include "scsi.h" | ||
368 | #include <scsi/scsi_host.h> | ||
369 | #include "sd.h" | ||
370 | #endif | ||
371 | 366 | ||
372 | #if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2) | 367 | #if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2) |
373 | #include <asm/sn/io.h> | 368 | #include <asm/sn/io.h> |
374 | #endif | 369 | #endif |
375 | 370 | ||
376 | #if LINUX_VERSION_CODE < 0x020407 | 371 | #if LINUX_VERSION_CODE < 0x020600 |
377 | #error "Kernels older than 2.4.7 are no longer supported" | 372 | #error "Kernels older than 2.6.0 are no longer supported" |
378 | #endif | 373 | #endif |
379 | 374 | ||
380 | 375 | ||
@@ -441,52 +436,6 @@ | |||
441 | 436 | ||
442 | #define NVRAM_DELAY() udelay(500) /* 2 microseconds */ | 437 | #define NVRAM_DELAY() udelay(500) /* 2 microseconds */ |
443 | 438 | ||
444 | #if LINUX_VERSION_CODE < 0x020500 | ||
445 | #define HOST_LOCK &io_request_lock | ||
446 | #define irqreturn_t void | ||
447 | #define IRQ_RETVAL(foo) | ||
448 | #define MSG_ORDERED_TAG 1 | ||
449 | |||
450 | #define DMA_BIDIRECTIONAL SCSI_DATA_UNKNOWN | ||
451 | #define DMA_TO_DEVICE SCSI_DATA_WRITE | ||
452 | #define DMA_FROM_DEVICE SCSI_DATA_READ | ||
453 | #define DMA_NONE SCSI_DATA_NONE | ||
454 | |||
455 | #ifndef HAVE_SECTOR_T | ||
456 | typedef unsigned int sector_t; | ||
457 | #endif | ||
458 | |||
459 | static inline void | ||
460 | scsi_adjust_queue_depth(struct scsi_device *device, int tag, int depth) | ||
461 | { | ||
462 | if (tag) { | ||
463 | device->tagged_queue = tag; | ||
464 | device->current_tag = 0; | ||
465 | } | ||
466 | device->queue_depth = depth; | ||
467 | } | ||
468 | static inline struct Scsi_Host *scsi_host_alloc(struct scsi_host_template *t, size_t s) | ||
469 | { | ||
470 | return scsi_register(t, s); | ||
471 | } | ||
472 | static inline void scsi_host_put(struct Scsi_Host *h) | ||
473 | { | ||
474 | scsi_unregister(h); | ||
475 | } | ||
476 | #else | ||
477 | #define HOST_LOCK ha->host->host_lock | ||
478 | #endif | ||
479 | #if LINUX_VERSION_CODE < 0x020600 | ||
480 | #define DEV_SIMPLE_TAGS(device) device->tagged_queue | ||
481 | /* | ||
482 | * Hack around that qla1280_remove_one is called from | ||
483 | * qla1280_release in 2.4 | ||
484 | */ | ||
485 | #undef __devexit | ||
486 | #define __devexit | ||
487 | #else | ||
488 | #define DEV_SIMPLE_TAGS(device) device->simple_tags | ||
489 | #endif | ||
490 | #if defined(__ia64__) && !defined(ia64_platform_is) | 439 | #if defined(__ia64__) && !defined(ia64_platform_is) |
491 | #define ia64_platform_is(foo) (!strcmp(x, platform_name)) | 440 | #define ia64_platform_is(foo) (!strcmp(x, platform_name)) |
492 | #endif | 441 | #endif |
@@ -506,9 +455,6 @@ static void qla1280_remove_one(struct pci_dev *); | |||
506 | * QLogic Driver Support Function Prototypes. | 455 | * QLogic Driver Support Function Prototypes. |
507 | */ | 456 | */ |
508 | static void qla1280_done(struct scsi_qla_host *); | 457 | static void qla1280_done(struct scsi_qla_host *); |
509 | #if LINUX_VERSION_CODE < 0x020545 | ||
510 | static void qla1280_get_target_options(struct scsi_cmnd *, struct scsi_qla_host *); | ||
511 | #endif | ||
512 | static int qla1280_get_token(char *); | 458 | static int qla1280_get_token(char *); |
513 | static int qla1280_setup(char *s) __init; | 459 | static int qla1280_setup(char *s) __init; |
514 | 460 | ||
@@ -610,11 +556,7 @@ __setup("qla1280=", qla1280_setup); | |||
610 | #define CMD_SNSLEN(Cmnd) sizeof(Cmnd->sense_buffer) | 556 | #define CMD_SNSLEN(Cmnd) sizeof(Cmnd->sense_buffer) |
611 | #define CMD_RESULT(Cmnd) Cmnd->result | 557 | #define CMD_RESULT(Cmnd) Cmnd->result |
612 | #define CMD_HANDLE(Cmnd) Cmnd->host_scribble | 558 | #define CMD_HANDLE(Cmnd) Cmnd->host_scribble |
613 | #if LINUX_VERSION_CODE < 0x020545 | ||
614 | #define CMD_REQUEST(Cmnd) Cmnd->request.cmd | ||
615 | #else | ||
616 | #define CMD_REQUEST(Cmnd) Cmnd->request->cmd | 559 | #define CMD_REQUEST(Cmnd) Cmnd->request->cmd |
617 | #endif | ||
618 | 560 | ||
619 | #define CMD_HOST(Cmnd) Cmnd->device->host | 561 | #define CMD_HOST(Cmnd) Cmnd->device->host |
620 | #define SCSI_BUS_32(Cmnd) Cmnd->device->channel | 562 | #define SCSI_BUS_32(Cmnd) Cmnd->device->channel |
@@ -1064,10 +1006,10 @@ qla1280_error_action(struct scsi_cmnd *cmd, enum action action) | |||
1064 | add_timer(&timer); | 1006 | add_timer(&timer); |
1065 | 1007 | ||
1066 | /* wait for the action to complete (or the timer to expire) */ | 1008 | /* wait for the action to complete (or the timer to expire) */ |
1067 | spin_unlock_irq(HOST_LOCK); | 1009 | spin_unlock_irq(ha->host->host_lock); |
1068 | wait_for_completion(&wait); | 1010 | wait_for_completion(&wait); |
1069 | del_timer_sync(&timer); | 1011 | del_timer_sync(&timer); |
1070 | spin_lock_irq(HOST_LOCK); | 1012 | spin_lock_irq(ha->host->host_lock); |
1071 | sp->wait = NULL; | 1013 | sp->wait = NULL; |
1072 | 1014 | ||
1073 | /* the only action we might get a fail for is abort */ | 1015 | /* the only action we might get a fail for is abort */ |
@@ -1173,96 +1115,6 @@ qla1280_biosparam(struct scsi_device *sdev, struct block_device *bdev, | |||
1173 | return 0; | 1115 | return 0; |
1174 | } | 1116 | } |
1175 | 1117 | ||
1176 | #if LINUX_VERSION_CODE < 0x020600 | ||
1177 | static int | ||
1178 | qla1280_detect(struct scsi_host_template *template) | ||
1179 | { | ||
1180 | struct pci_device_id *id = &qla1280_pci_tbl[0]; | ||
1181 | struct pci_dev *pdev = NULL; | ||
1182 | int num_hosts = 0; | ||
1183 | |||
1184 | if (sizeof(struct srb) > sizeof(Scsi_Pointer)) { | ||
1185 | printk(KERN_WARNING | ||
1186 | "qla1280: struct srb too big, aborting\n"); | ||
1187 | return 0; | ||
1188 | } | ||
1189 | |||
1190 | if ((DMA_BIDIRECTIONAL != PCI_DMA_BIDIRECTIONAL) || | ||
1191 | (DMA_TO_DEVICE != PCI_DMA_TODEVICE) || | ||
1192 | (DMA_FROM_DEVICE != PCI_DMA_FROMDEVICE) || | ||
1193 | (DMA_NONE != PCI_DMA_NONE)) { | ||
1194 | printk(KERN_WARNING | ||
1195 | "qla1280: dma direction bits don't match\n"); | ||
1196 | return 0; | ||
1197 | } | ||
1198 | |||
1199 | #ifdef MODULE | ||
1200 | /* | ||
1201 | * If we are called as a module, the qla1280 pointer may not be null | ||
1202 | * and it would point to our bootup string, just like on the lilo | ||
1203 | * command line. IF not NULL, then process this config string with | ||
1204 | * qla1280_setup | ||
1205 | * | ||
1206 | * Boot time Options | ||
1207 | * To add options at boot time add a line to your lilo.conf file like: | ||
1208 | * append="qla1280=verbose,max_tags:{{255,255,255,255},{255,255,255,255}}" | ||
1209 | * which will result in the first four devices on the first two | ||
1210 | * controllers being set to a tagged queue depth of 32. | ||
1211 | */ | ||
1212 | if (qla1280) | ||
1213 | qla1280_setup(qla1280); | ||
1214 | #endif | ||
1215 | |||
1216 | /* First Initialize QLA12160 on PCI Bus 1 Dev 2 */ | ||
1217 | while ((pdev = pci_find_device(id->vendor, id->device, pdev))) { | ||
1218 | if (pdev->bus->number == 1 && PCI_SLOT(pdev->devfn) == 2) { | ||
1219 | if (!qla1280_probe_one(pdev, id)) | ||
1220 | num_hosts++; | ||
1221 | } | ||
1222 | } | ||
1223 | |||
1224 | pdev = NULL; | ||
1225 | /* Try and find each different type of adapter we support */ | ||
1226 | for (id = &qla1280_pci_tbl[0]; id->device; id++) { | ||
1227 | while ((pdev = pci_find_device(id->vendor, id->device, pdev))) { | ||
1228 | /* | ||
1229 | * skip QLA12160 already initialized on | ||
1230 | * PCI Bus 1 Dev 2 since we already initialized | ||
1231 | * and presented it | ||
1232 | */ | ||
1233 | if (id->device == PCI_DEVICE_ID_QLOGIC_ISP12160 && | ||
1234 | pdev->bus->number == 1 && | ||
1235 | PCI_SLOT(pdev->devfn) == 2) | ||
1236 | continue; | ||
1237 | |||
1238 | if (!qla1280_probe_one(pdev, id)) | ||
1239 | num_hosts++; | ||
1240 | } | ||
1241 | } | ||
1242 | |||
1243 | return num_hosts; | ||
1244 | } | ||
1245 | |||
1246 | /* | ||
1247 | * This looks a bit ugly as we could just pass down host to | ||
1248 | * qla1280_remove_one, but I want to keep qla1280_release purely a wrapper | ||
1249 | * around pci_driver::remove as used from 2.6 onwards. | ||
1250 | */ | ||
1251 | static int | ||
1252 | qla1280_release(struct Scsi_Host *host) | ||
1253 | { | ||
1254 | struct scsi_qla_host *ha = (struct scsi_qla_host *)host->hostdata; | ||
1255 | |||
1256 | qla1280_remove_one(ha->pdev); | ||
1257 | return 0; | ||
1258 | } | ||
1259 | |||
1260 | static int | ||
1261 | qla1280_biosparam_old(Disk * disk, kdev_t dev, int geom[]) | ||
1262 | { | ||
1263 | return qla1280_biosparam(disk->device, NULL, disk->capacity, geom); | ||
1264 | } | ||
1265 | #endif | ||
1266 | 1118 | ||
1267 | /* disable risc and host interrupts */ | 1119 | /* disable risc and host interrupts */ |
1268 | static inline void | 1120 | static inline void |
@@ -1295,7 +1147,7 @@ qla1280_intr_handler(int irq, void *dev_id, struct pt_regs *regs) | |||
1295 | ENTER_INTR ("qla1280_intr_handler"); | 1147 | ENTER_INTR ("qla1280_intr_handler"); |
1296 | ha = (struct scsi_qla_host *)dev_id; | 1148 | ha = (struct scsi_qla_host *)dev_id; |
1297 | 1149 | ||
1298 | spin_lock(HOST_LOCK); | 1150 | spin_lock(ha->host->host_lock); |
1299 | 1151 | ||
1300 | ha->isr_count++; | 1152 | ha->isr_count++; |
1301 | reg = ha->iobase; | 1153 | reg = ha->iobase; |
@@ -1311,7 +1163,7 @@ qla1280_intr_handler(int irq, void *dev_id, struct pt_regs *regs) | |||
1311 | if (!list_empty(&ha->done_q)) | 1163 | if (!list_empty(&ha->done_q)) |
1312 | qla1280_done(ha); | 1164 | qla1280_done(ha); |
1313 | 1165 | ||
1314 | spin_unlock(HOST_LOCK); | 1166 | spin_unlock(ha->host->host_lock); |
1315 | 1167 | ||
1316 | qla1280_enable_intrs(ha); | 1168 | qla1280_enable_intrs(ha); |
1317 | 1169 | ||
@@ -1411,11 +1263,9 @@ qla1280_slave_configure(struct scsi_device *device) | |||
1411 | scsi_adjust_queue_depth(device, 0, default_depth); | 1263 | scsi_adjust_queue_depth(device, 0, default_depth); |
1412 | } | 1264 | } |
1413 | 1265 | ||
1414 | #if LINUX_VERSION_CODE > 0x020500 | ||
1415 | nv->bus[bus].target[target].parameter.enable_sync = device->sdtr; | 1266 | nv->bus[bus].target[target].parameter.enable_sync = device->sdtr; |
1416 | nv->bus[bus].target[target].parameter.enable_wide = device->wdtr; | 1267 | nv->bus[bus].target[target].parameter.enable_wide = device->wdtr; |
1417 | nv->bus[bus].target[target].ppr_1x160.flags.enable_ppr = device->ppr; | 1268 | nv->bus[bus].target[target].ppr_1x160.flags.enable_ppr = device->ppr; |
1418 | #endif | ||
1419 | 1269 | ||
1420 | if (driver_setup.no_sync || | 1270 | if (driver_setup.no_sync || |
1421 | (driver_setup.sync_mask && | 1271 | (driver_setup.sync_mask && |
@@ -1432,38 +1282,14 @@ qla1280_slave_configure(struct scsi_device *device) | |||
1432 | nv->bus[bus].target[target].ppr_1x160.flags.enable_ppr = 0; | 1282 | nv->bus[bus].target[target].ppr_1x160.flags.enable_ppr = 0; |
1433 | } | 1283 | } |
1434 | 1284 | ||
1435 | spin_lock_irqsave(HOST_LOCK, flags); | 1285 | spin_lock_irqsave(ha->host->host_lock, flags); |
1436 | if (nv->bus[bus].target[target].parameter.enable_sync) | 1286 | if (nv->bus[bus].target[target].parameter.enable_sync) |
1437 | status = qla1280_set_target_parameters(ha, bus, target); | 1287 | status = qla1280_set_target_parameters(ha, bus, target); |
1438 | qla1280_get_target_parameters(ha, device); | 1288 | qla1280_get_target_parameters(ha, device); |
1439 | spin_unlock_irqrestore(HOST_LOCK, flags); | 1289 | spin_unlock_irqrestore(ha->host->host_lock, flags); |
1440 | return status; | 1290 | return status; |
1441 | } | 1291 | } |
1442 | 1292 | ||
1443 | #if LINUX_VERSION_CODE < 0x020545 | ||
1444 | /************************************************************************** | ||
1445 | * qla1280_select_queue_depth | ||
1446 | * | ||
1447 | * Sets the queue depth for each SCSI device hanging off the input | ||
1448 | * host adapter. We use a queue depth of 2 for devices that do not | ||
1449 | * support tagged queueing. | ||
1450 | **************************************************************************/ | ||
1451 | static void | ||
1452 | qla1280_select_queue_depth(struct Scsi_Host *host, struct scsi_device *sdev_q) | ||
1453 | { | ||
1454 | struct scsi_qla_host *ha = (struct scsi_qla_host *)host->hostdata; | ||
1455 | struct scsi_device *sdev; | ||
1456 | |||
1457 | ENTER("qla1280_select_queue_depth"); | ||
1458 | for (sdev = sdev_q; sdev; sdev = sdev->next) | ||
1459 | if (sdev->host == host) | ||
1460 | qla1280_slave_configure(sdev); | ||
1461 | |||
1462 | if (sdev_q) | ||
1463 | qla1280_check_for_dead_scsi_bus(ha, sdev_q->channel); | ||
1464 | LEAVE("qla1280_select_queue_depth"); | ||
1465 | } | ||
1466 | #endif | ||
1467 | 1293 | ||
1468 | /* | 1294 | /* |
1469 | * qla1280_done | 1295 | * qla1280_done |
@@ -1523,10 +1349,6 @@ qla1280_done(struct scsi_qla_host *ha) | |||
1523 | CMD_HANDLE(sp->cmd) = (unsigned char *)INVALID_HANDLE; | 1349 | CMD_HANDLE(sp->cmd) = (unsigned char *)INVALID_HANDLE; |
1524 | ha->actthreads--; | 1350 | ha->actthreads--; |
1525 | 1351 | ||
1526 | #if LINUX_VERSION_CODE < 0x020500 | ||
1527 | if (cmd->cmnd[0] == INQUIRY) | ||
1528 | qla1280_get_target_options(cmd, ha); | ||
1529 | #endif | ||
1530 | (*(cmd)->scsi_done)(cmd); | 1352 | (*(cmd)->scsi_done)(cmd); |
1531 | 1353 | ||
1532 | if(sp->wait != NULL) | 1354 | if(sp->wait != NULL) |
@@ -1655,9 +1477,7 @@ qla1280_initialize_adapter(struct scsi_qla_host *ha) | |||
1655 | struct device_reg __iomem *reg; | 1477 | struct device_reg __iomem *reg; |
1656 | int status; | 1478 | int status; |
1657 | int bus; | 1479 | int bus; |
1658 | #if LINUX_VERSION_CODE > 0x020500 | ||
1659 | unsigned long flags; | 1480 | unsigned long flags; |
1660 | #endif | ||
1661 | 1481 | ||
1662 | ENTER("qla1280_initialize_adapter"); | 1482 | ENTER("qla1280_initialize_adapter"); |
1663 | 1483 | ||
@@ -1695,15 +1515,12 @@ qla1280_initialize_adapter(struct scsi_qla_host *ha) | |||
1695 | "NVRAM\n"); | 1515 | "NVRAM\n"); |
1696 | } | 1516 | } |
1697 | 1517 | ||
1698 | #if LINUX_VERSION_CODE >= 0x020500 | ||
1699 | /* | 1518 | /* |
1700 | * It's necessary to grab the spin here as qla1280_mailbox_command | 1519 | * It's necessary to grab the spin here as qla1280_mailbox_command |
1701 | * needs to be able to drop the lock unconditionally to wait | 1520 | * needs to be able to drop the lock unconditionally to wait |
1702 | * for completion. | 1521 | * for completion. |
1703 | * In 2.4 ->detect is called with the io_request_lock held. | ||
1704 | */ | 1522 | */ |
1705 | spin_lock_irqsave(HOST_LOCK, flags); | 1523 | spin_lock_irqsave(ha->host->host_lock, flags); |
1706 | #endif | ||
1707 | 1524 | ||
1708 | status = qla1280_load_firmware(ha); | 1525 | status = qla1280_load_firmware(ha); |
1709 | if (status) { | 1526 | if (status) { |
@@ -1735,9 +1552,8 @@ qla1280_initialize_adapter(struct scsi_qla_host *ha) | |||
1735 | 1552 | ||
1736 | ha->flags.online = 1; | 1553 | ha->flags.online = 1; |
1737 | out: | 1554 | out: |
1738 | #if LINUX_VERSION_CODE >= 0x020500 | 1555 | spin_unlock_irqrestore(ha->host->host_lock, flags); |
1739 | spin_unlock_irqrestore(HOST_LOCK, flags); | 1556 | |
1740 | #endif | ||
1741 | if (status) | 1557 | if (status) |
1742 | dprintk(2, "qla1280_initialize_adapter: **** FAILED ****\n"); | 1558 | dprintk(2, "qla1280_initialize_adapter: **** FAILED ****\n"); |
1743 | 1559 | ||
@@ -2650,14 +2466,14 @@ qla1280_mailbox_command(struct scsi_qla_host *ha, uint8_t mr, uint16_t *mb) | |||
2650 | timer.function = qla1280_mailbox_timeout; | 2466 | timer.function = qla1280_mailbox_timeout; |
2651 | add_timer(&timer); | 2467 | add_timer(&timer); |
2652 | 2468 | ||
2653 | spin_unlock_irq(HOST_LOCK); | 2469 | spin_unlock_irq(ha->host->host_lock); |
2654 | WRT_REG_WORD(®->host_cmd, HC_SET_HOST_INT); | 2470 | WRT_REG_WORD(®->host_cmd, HC_SET_HOST_INT); |
2655 | data = qla1280_debounce_register(®->istatus); | 2471 | data = qla1280_debounce_register(®->istatus); |
2656 | 2472 | ||
2657 | wait_for_completion(&wait); | 2473 | wait_for_completion(&wait); |
2658 | del_timer_sync(&timer); | 2474 | del_timer_sync(&timer); |
2659 | 2475 | ||
2660 | spin_lock_irq(HOST_LOCK); | 2476 | spin_lock_irq(ha->host->host_lock); |
2661 | 2477 | ||
2662 | ha->mailbox_wait = NULL; | 2478 | ha->mailbox_wait = NULL; |
2663 | 2479 | ||
@@ -2770,9 +2586,9 @@ qla1280_bus_reset(struct scsi_qla_host *ha, int bus) | |||
2770 | ha->bus_settings[bus].scsi_bus_dead = 1; | 2586 | ha->bus_settings[bus].scsi_bus_dead = 1; |
2771 | ha->bus_settings[bus].failed_reset_count++; | 2587 | ha->bus_settings[bus].failed_reset_count++; |
2772 | } else { | 2588 | } else { |
2773 | spin_unlock_irq(HOST_LOCK); | 2589 | spin_unlock_irq(ha->host->host_lock); |
2774 | ssleep(reset_delay); | 2590 | ssleep(reset_delay); |
2775 | spin_lock_irq(HOST_LOCK); | 2591 | spin_lock_irq(ha->host->host_lock); |
2776 | 2592 | ||
2777 | ha->bus_settings[bus].scsi_bus_dead = 0; | 2593 | ha->bus_settings[bus].scsi_bus_dead = 0; |
2778 | ha->bus_settings[bus].failed_reset_count = 0; | 2594 | ha->bus_settings[bus].failed_reset_count = 0; |
@@ -3078,7 +2894,7 @@ qla1280_64bit_start_scsi(struct scsi_qla_host *ha, struct srb * sp) | |||
3078 | (SCSI_TCN_32(cmd) | BIT_7) : SCSI_TCN_32(cmd); | 2894 | (SCSI_TCN_32(cmd) | BIT_7) : SCSI_TCN_32(cmd); |
3079 | 2895 | ||
3080 | /* Enable simple tag queuing if device supports it. */ | 2896 | /* Enable simple tag queuing if device supports it. */ |
3081 | if (DEV_SIMPLE_TAGS(cmd->device)) | 2897 | if (cmd->device->simple_tags) |
3082 | pkt->control_flags |= cpu_to_le16(BIT_3); | 2898 | pkt->control_flags |= cpu_to_le16(BIT_3); |
3083 | 2899 | ||
3084 | /* Load SCSI command packet. */ | 2900 | /* Load SCSI command packet. */ |
@@ -3377,7 +3193,7 @@ qla1280_32bit_start_scsi(struct scsi_qla_host *ha, struct srb * sp) | |||
3377 | (SCSI_TCN_32(cmd) | BIT_7) : SCSI_TCN_32(cmd); | 3193 | (SCSI_TCN_32(cmd) | BIT_7) : SCSI_TCN_32(cmd); |
3378 | 3194 | ||
3379 | /* Enable simple tag queuing if device supports it. */ | 3195 | /* Enable simple tag queuing if device supports it. */ |
3380 | if (DEV_SIMPLE_TAGS(cmd->device)) | 3196 | if (cmd->device->simple_tags) |
3381 | pkt->control_flags |= cpu_to_le16(BIT_3); | 3197 | pkt->control_flags |= cpu_to_le16(BIT_3); |
3382 | 3198 | ||
3383 | /* Load SCSI command packet. */ | 3199 | /* Load SCSI command packet. */ |
@@ -3889,50 +3705,6 @@ qla1280_rst_aen(struct scsi_qla_host *ha) | |||
3889 | } | 3705 | } |
3890 | 3706 | ||
3891 | 3707 | ||
3892 | #if LINUX_VERSION_CODE < 0x020500 | ||
3893 | /* | ||
3894 | * | ||
3895 | */ | ||
3896 | static void | ||
3897 | qla1280_get_target_options(struct scsi_cmnd *cmd, struct scsi_qla_host *ha) | ||
3898 | { | ||
3899 | unsigned char *result; | ||
3900 | struct nvram *n; | ||
3901 | int bus, target, lun; | ||
3902 | |||
3903 | bus = SCSI_BUS_32(cmd); | ||
3904 | target = SCSI_TCN_32(cmd); | ||
3905 | lun = SCSI_LUN_32(cmd); | ||
3906 | |||
3907 | /* | ||
3908 | * Make sure to not touch anything if someone is using the | ||
3909 | * sg interface. | ||
3910 | */ | ||
3911 | if (cmd->use_sg || (CMD_RESULT(cmd) >> 16) != DID_OK || lun) | ||
3912 | return; | ||
3913 | |||
3914 | result = cmd->request_buffer; | ||
3915 | n = &ha->nvram; | ||
3916 | |||
3917 | n->bus[bus].target[target].parameter.enable_wide = 0; | ||
3918 | n->bus[bus].target[target].parameter.enable_sync = 0; | ||
3919 | n->bus[bus].target[target].ppr_1x160.flags.enable_ppr = 0; | ||
3920 | |||
3921 | if (result[7] & 0x60) | ||
3922 | n->bus[bus].target[target].parameter.enable_wide = 1; | ||
3923 | if (result[7] & 0x10) | ||
3924 | n->bus[bus].target[target].parameter.enable_sync = 1; | ||
3925 | if ((result[2] >= 3) && (result[4] + 5 > 56) && | ||
3926 | (result[56] & 0x4)) | ||
3927 | n->bus[bus].target[target].ppr_1x160.flags.enable_ppr = 1; | ||
3928 | |||
3929 | dprintk(2, "get_target_options(): wide %i, sync %i, ppr %i\n", | ||
3930 | n->bus[bus].target[target].parameter.enable_wide, | ||
3931 | n->bus[bus].target[target].parameter.enable_sync, | ||
3932 | n->bus[bus].target[target].ppr_1x160.flags.enable_ppr); | ||
3933 | } | ||
3934 | #endif | ||
3935 | |||
3936 | /* | 3708 | /* |
3937 | * qla1280_status_entry | 3709 | * qla1280_status_entry |
3938 | * Processes received ISP status entry. | 3710 | * Processes received ISP status entry. |
@@ -4271,7 +4043,7 @@ qla1280_get_target_parameters(struct scsi_qla_host *ha, | |||
4271 | } else | 4043 | } else |
4272 | printk(" Async"); | 4044 | printk(" Async"); |
4273 | 4045 | ||
4274 | if (DEV_SIMPLE_TAGS(device)) | 4046 | if (device->simple_tags) |
4275 | printk(", Tagged queuing: depth %d", device->queue_depth); | 4047 | printk(", Tagged queuing: depth %d", device->queue_depth); |
4276 | printk("\n"); | 4048 | printk("\n"); |
4277 | } | 4049 | } |
@@ -4485,7 +4257,7 @@ qla1280_get_token(char *str) | |||
4485 | return ret; | 4257 | return ret; |
4486 | } | 4258 | } |
4487 | 4259 | ||
4488 | #if LINUX_VERSION_CODE >= 0x020600 | 4260 | |
4489 | static struct scsi_host_template qla1280_driver_template = { | 4261 | static struct scsi_host_template qla1280_driver_template = { |
4490 | .module = THIS_MODULE, | 4262 | .module = THIS_MODULE, |
4491 | .proc_name = "qla1280", | 4263 | .proc_name = "qla1280", |
@@ -4504,27 +4276,7 @@ static struct scsi_host_template qla1280_driver_template = { | |||
4504 | .cmd_per_lun = 1, | 4276 | .cmd_per_lun = 1, |
4505 | .use_clustering = ENABLE_CLUSTERING, | 4277 | .use_clustering = ENABLE_CLUSTERING, |
4506 | }; | 4278 | }; |
4507 | #else | 4279 | |
4508 | static struct scsi_host_template qla1280_driver_template = { | ||
4509 | .proc_name = "qla1280", | ||
4510 | .name = "Qlogic ISP 1280/12160", | ||
4511 | .detect = qla1280_detect, | ||
4512 | .release = qla1280_release, | ||
4513 | .info = qla1280_info, | ||
4514 | .queuecommand = qla1280_queuecommand, | ||
4515 | .eh_abort_handler = qla1280_eh_abort, | ||
4516 | .eh_device_reset_handler= qla1280_eh_device_reset, | ||
4517 | .eh_bus_reset_handler = qla1280_eh_bus_reset, | ||
4518 | .eh_host_reset_handler = qla1280_eh_adapter_reset, | ||
4519 | .bios_param = qla1280_biosparam_old, | ||
4520 | .can_queue = 0xfffff, | ||
4521 | .this_id = -1, | ||
4522 | .sg_tablesize = SG_ALL, | ||
4523 | .cmd_per_lun = 1, | ||
4524 | .use_clustering = ENABLE_CLUSTERING, | ||
4525 | .use_new_eh_code = 1, | ||
4526 | }; | ||
4527 | #endif | ||
4528 | 4280 | ||
4529 | static int __devinit | 4281 | static int __devinit |
4530 | qla1280_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | 4282 | qla1280_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) |
@@ -4615,10 +4367,6 @@ qla1280_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
4615 | host->max_sectors = 1024; | 4367 | host->max_sectors = 1024; |
4616 | host->unique_id = host->host_no; | 4368 | host->unique_id = host->host_no; |
4617 | 4369 | ||
4618 | #if LINUX_VERSION_CODE < 0x020545 | ||
4619 | host->select_queue_depths = qla1280_select_queue_depth; | ||
4620 | #endif | ||
4621 | |||
4622 | error = -ENODEV; | 4370 | error = -ENODEV; |
4623 | 4371 | ||
4624 | #if MEMORY_MAPPED_IO | 4372 | #if MEMORY_MAPPED_IO |
@@ -4666,21 +4414,15 @@ qla1280_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
4666 | 4414 | ||
4667 | pci_set_drvdata(pdev, host); | 4415 | pci_set_drvdata(pdev, host); |
4668 | 4416 | ||
4669 | #if LINUX_VERSION_CODE >= 0x020600 | ||
4670 | error = scsi_add_host(host, &pdev->dev); | 4417 | error = scsi_add_host(host, &pdev->dev); |
4671 | if (error) | 4418 | if (error) |
4672 | goto error_disable_adapter; | 4419 | goto error_disable_adapter; |
4673 | scsi_scan_host(host); | 4420 | scsi_scan_host(host); |
4674 | #else | ||
4675 | scsi_set_pci_device(host, pdev); | ||
4676 | #endif | ||
4677 | 4421 | ||
4678 | return 0; | 4422 | return 0; |
4679 | 4423 | ||
4680 | #if LINUX_VERSION_CODE >= 0x020600 | ||
4681 | error_disable_adapter: | 4424 | error_disable_adapter: |
4682 | qla1280_disable_intrs(ha); | 4425 | qla1280_disable_intrs(ha); |
4683 | #endif | ||
4684 | error_free_irq: | 4426 | error_free_irq: |
4685 | free_irq(pdev->irq, ha); | 4427 | free_irq(pdev->irq, ha); |
4686 | error_release_region: | 4428 | error_release_region: |
@@ -4712,9 +4454,7 @@ qla1280_remove_one(struct pci_dev *pdev) | |||
4712 | struct Scsi_Host *host = pci_get_drvdata(pdev); | 4454 | struct Scsi_Host *host = pci_get_drvdata(pdev); |
4713 | struct scsi_qla_host *ha = (struct scsi_qla_host *)host->hostdata; | 4455 | struct scsi_qla_host *ha = (struct scsi_qla_host *)host->hostdata; |
4714 | 4456 | ||
4715 | #if LINUX_VERSION_CODE >= 0x020600 | ||
4716 | scsi_remove_host(host); | 4457 | scsi_remove_host(host); |
4717 | #endif | ||
4718 | 4458 | ||
4719 | qla1280_disable_intrs(ha); | 4459 | qla1280_disable_intrs(ha); |
4720 | 4460 | ||
@@ -4738,7 +4478,6 @@ qla1280_remove_one(struct pci_dev *pdev) | |||
4738 | scsi_host_put(host); | 4478 | scsi_host_put(host); |
4739 | } | 4479 | } |
4740 | 4480 | ||
4741 | #if LINUX_VERSION_CODE >= 0x020600 | ||
4742 | static struct pci_driver qla1280_pci_driver = { | 4481 | static struct pci_driver qla1280_pci_driver = { |
4743 | .name = "qla1280", | 4482 | .name = "qla1280", |
4744 | .id_table = qla1280_pci_tbl, | 4483 | .id_table = qla1280_pci_tbl, |
@@ -4784,10 +4523,6 @@ qla1280_exit(void) | |||
4784 | module_init(qla1280_init); | 4523 | module_init(qla1280_init); |
4785 | module_exit(qla1280_exit); | 4524 | module_exit(qla1280_exit); |
4786 | 4525 | ||
4787 | #else | ||
4788 | # define driver_template qla1280_driver_template | ||
4789 | # include "scsi_module.c" | ||
4790 | #endif | ||
4791 | 4526 | ||
4792 | MODULE_AUTHOR("Qlogic & Jes Sorensen"); | 4527 | MODULE_AUTHOR("Qlogic & Jes Sorensen"); |
4793 | MODULE_DESCRIPTION("Qlogic ISP SCSI (qla1x80/qla1x160) driver"); | 4528 | MODULE_DESCRIPTION("Qlogic ISP SCSI (qla1x80/qla1x160) driver"); |
diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c index b17ee62dd1a9..92b3e13e9061 100644 --- a/drivers/scsi/qla2xxx/qla_attr.c +++ b/drivers/scsi/qla2xxx/qla_attr.c | |||
@@ -7,7 +7,6 @@ | |||
7 | #include "qla_def.h" | 7 | #include "qla_def.h" |
8 | 8 | ||
9 | #include <linux/vmalloc.h> | 9 | #include <linux/vmalloc.h> |
10 | #include <scsi/scsi_transport_fc.h> | ||
11 | 10 | ||
12 | /* SYSFS attributes --------------------------------------------------------- */ | 11 | /* SYSFS attributes --------------------------------------------------------- */ |
13 | 12 | ||
@@ -114,7 +113,7 @@ qla2x00_sysfs_read_nvram(struct kobject *kobj, char *buf, loff_t off, | |||
114 | struct device, kobj))); | 113 | struct device, kobj))); |
115 | unsigned long flags; | 114 | unsigned long flags; |
116 | 115 | ||
117 | if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size) | 116 | if (!capable(CAP_SYS_ADMIN) || off != 0) |
118 | return 0; | 117 | return 0; |
119 | 118 | ||
120 | /* Read NVRAM. */ | 119 | /* Read NVRAM. */ |
@@ -123,7 +122,7 @@ qla2x00_sysfs_read_nvram(struct kobject *kobj, char *buf, loff_t off, | |||
123 | ha->nvram_size); | 122 | ha->nvram_size); |
124 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | 123 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
125 | 124 | ||
126 | return (count); | 125 | return ha->nvram_size; |
127 | } | 126 | } |
128 | 127 | ||
129 | static ssize_t | 128 | static ssize_t |
@@ -175,19 +174,150 @@ static struct bin_attribute sysfs_nvram_attr = { | |||
175 | .mode = S_IRUSR | S_IWUSR, | 174 | .mode = S_IRUSR | S_IWUSR, |
176 | .owner = THIS_MODULE, | 175 | .owner = THIS_MODULE, |
177 | }, | 176 | }, |
178 | .size = 0, | 177 | .size = 512, |
179 | .read = qla2x00_sysfs_read_nvram, | 178 | .read = qla2x00_sysfs_read_nvram, |
180 | .write = qla2x00_sysfs_write_nvram, | 179 | .write = qla2x00_sysfs_write_nvram, |
181 | }; | 180 | }; |
182 | 181 | ||
182 | static ssize_t | ||
183 | qla2x00_sysfs_read_optrom(struct kobject *kobj, char *buf, loff_t off, | ||
184 | size_t count) | ||
185 | { | ||
186 | struct scsi_qla_host *ha = to_qla_host(dev_to_shost(container_of(kobj, | ||
187 | struct device, kobj))); | ||
188 | |||
189 | if (ha->optrom_state != QLA_SREADING) | ||
190 | return 0; | ||
191 | if (off > ha->optrom_size) | ||
192 | return 0; | ||
193 | if (off + count > ha->optrom_size) | ||
194 | count = ha->optrom_size - off; | ||
195 | |||
196 | memcpy(buf, &ha->optrom_buffer[off], count); | ||
197 | |||
198 | return count; | ||
199 | } | ||
200 | |||
201 | static ssize_t | ||
202 | qla2x00_sysfs_write_optrom(struct kobject *kobj, char *buf, loff_t off, | ||
203 | size_t count) | ||
204 | { | ||
205 | struct scsi_qla_host *ha = to_qla_host(dev_to_shost(container_of(kobj, | ||
206 | struct device, kobj))); | ||
207 | |||
208 | if (ha->optrom_state != QLA_SWRITING) | ||
209 | return -EINVAL; | ||
210 | if (off > ha->optrom_size) | ||
211 | return -ERANGE; | ||
212 | if (off + count > ha->optrom_size) | ||
213 | count = ha->optrom_size - off; | ||
214 | |||
215 | memcpy(&ha->optrom_buffer[off], buf, count); | ||
216 | |||
217 | return count; | ||
218 | } | ||
219 | |||
220 | static struct bin_attribute sysfs_optrom_attr = { | ||
221 | .attr = { | ||
222 | .name = "optrom", | ||
223 | .mode = S_IRUSR | S_IWUSR, | ||
224 | .owner = THIS_MODULE, | ||
225 | }, | ||
226 | .size = OPTROM_SIZE_24XX, | ||
227 | .read = qla2x00_sysfs_read_optrom, | ||
228 | .write = qla2x00_sysfs_write_optrom, | ||
229 | }; | ||
230 | |||
231 | static ssize_t | ||
232 | qla2x00_sysfs_write_optrom_ctl(struct kobject *kobj, char *buf, loff_t off, | ||
233 | size_t count) | ||
234 | { | ||
235 | struct scsi_qla_host *ha = to_qla_host(dev_to_shost(container_of(kobj, | ||
236 | struct device, kobj))); | ||
237 | int val; | ||
238 | |||
239 | if (off) | ||
240 | return 0; | ||
241 | |||
242 | if (sscanf(buf, "%d", &val) != 1) | ||
243 | return -EINVAL; | ||
244 | |||
245 | switch (val) { | ||
246 | case 0: | ||
247 | if (ha->optrom_state != QLA_SREADING && | ||
248 | ha->optrom_state != QLA_SWRITING) | ||
249 | break; | ||
250 | |||
251 | ha->optrom_state = QLA_SWAITING; | ||
252 | vfree(ha->optrom_buffer); | ||
253 | ha->optrom_buffer = NULL; | ||
254 | break; | ||
255 | case 1: | ||
256 | if (ha->optrom_state != QLA_SWAITING) | ||
257 | break; | ||
258 | |||
259 | ha->optrom_state = QLA_SREADING; | ||
260 | ha->optrom_buffer = (uint8_t *)vmalloc(ha->optrom_size); | ||
261 | if (ha->optrom_buffer == NULL) { | ||
262 | qla_printk(KERN_WARNING, ha, | ||
263 | "Unable to allocate memory for optrom retrieval " | ||
264 | "(%x).\n", ha->optrom_size); | ||
265 | |||
266 | ha->optrom_state = QLA_SWAITING; | ||
267 | return count; | ||
268 | } | ||
269 | |||
270 | memset(ha->optrom_buffer, 0, ha->optrom_size); | ||
271 | ha->isp_ops.read_optrom(ha, ha->optrom_buffer, 0, | ||
272 | ha->optrom_size); | ||
273 | break; | ||
274 | case 2: | ||
275 | if (ha->optrom_state != QLA_SWAITING) | ||
276 | break; | ||
277 | |||
278 | ha->optrom_state = QLA_SWRITING; | ||
279 | ha->optrom_buffer = (uint8_t *)vmalloc(ha->optrom_size); | ||
280 | if (ha->optrom_buffer == NULL) { | ||
281 | qla_printk(KERN_WARNING, ha, | ||
282 | "Unable to allocate memory for optrom update " | ||
283 | "(%x).\n", ha->optrom_size); | ||
284 | |||
285 | ha->optrom_state = QLA_SWAITING; | ||
286 | return count; | ||
287 | } | ||
288 | memset(ha->optrom_buffer, 0, ha->optrom_size); | ||
289 | break; | ||
290 | case 3: | ||
291 | if (ha->optrom_state != QLA_SWRITING) | ||
292 | break; | ||
293 | |||
294 | ha->isp_ops.write_optrom(ha, ha->optrom_buffer, 0, | ||
295 | ha->optrom_size); | ||
296 | break; | ||
297 | } | ||
298 | return count; | ||
299 | } | ||
300 | |||
301 | static struct bin_attribute sysfs_optrom_ctl_attr = { | ||
302 | .attr = { | ||
303 | .name = "optrom_ctl", | ||
304 | .mode = S_IWUSR, | ||
305 | .owner = THIS_MODULE, | ||
306 | }, | ||
307 | .size = 0, | ||
308 | .write = qla2x00_sysfs_write_optrom_ctl, | ||
309 | }; | ||
310 | |||
183 | void | 311 | void |
184 | qla2x00_alloc_sysfs_attr(scsi_qla_host_t *ha) | 312 | qla2x00_alloc_sysfs_attr(scsi_qla_host_t *ha) |
185 | { | 313 | { |
186 | struct Scsi_Host *host = ha->host; | 314 | struct Scsi_Host *host = ha->host; |
187 | 315 | ||
188 | sysfs_create_bin_file(&host->shost_gendev.kobj, &sysfs_fw_dump_attr); | 316 | sysfs_create_bin_file(&host->shost_gendev.kobj, &sysfs_fw_dump_attr); |
189 | sysfs_nvram_attr.size = ha->nvram_size; | ||
190 | sysfs_create_bin_file(&host->shost_gendev.kobj, &sysfs_nvram_attr); | 317 | sysfs_create_bin_file(&host->shost_gendev.kobj, &sysfs_nvram_attr); |
318 | sysfs_create_bin_file(&host->shost_gendev.kobj, &sysfs_optrom_attr); | ||
319 | sysfs_create_bin_file(&host->shost_gendev.kobj, | ||
320 | &sysfs_optrom_ctl_attr); | ||
191 | } | 321 | } |
192 | 322 | ||
193 | void | 323 | void |
@@ -197,6 +327,12 @@ qla2x00_free_sysfs_attr(scsi_qla_host_t *ha) | |||
197 | 327 | ||
198 | sysfs_remove_bin_file(&host->shost_gendev.kobj, &sysfs_fw_dump_attr); | 328 | sysfs_remove_bin_file(&host->shost_gendev.kobj, &sysfs_fw_dump_attr); |
199 | sysfs_remove_bin_file(&host->shost_gendev.kobj, &sysfs_nvram_attr); | 329 | sysfs_remove_bin_file(&host->shost_gendev.kobj, &sysfs_nvram_attr); |
330 | sysfs_remove_bin_file(&host->shost_gendev.kobj, &sysfs_optrom_attr); | ||
331 | sysfs_remove_bin_file(&host->shost_gendev.kobj, | ||
332 | &sysfs_optrom_ctl_attr); | ||
333 | |||
334 | if (ha->beacon_blink_led == 1) | ||
335 | ha->isp_ops.beacon_off(ha); | ||
200 | } | 336 | } |
201 | 337 | ||
202 | /* Scsi_Host attributes. */ | 338 | /* Scsi_Host attributes. */ |
@@ -384,6 +520,50 @@ qla2x00_zio_timer_store(struct class_device *cdev, const char *buf, | |||
384 | return strlen(buf); | 520 | return strlen(buf); |
385 | } | 521 | } |
386 | 522 | ||
523 | static ssize_t | ||
524 | qla2x00_beacon_show(struct class_device *cdev, char *buf) | ||
525 | { | ||
526 | scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev)); | ||
527 | int len = 0; | ||
528 | |||
529 | if (ha->beacon_blink_led) | ||
530 | len += snprintf(buf + len, PAGE_SIZE-len, "Enabled\n"); | ||
531 | else | ||
532 | len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n"); | ||
533 | return len; | ||
534 | } | ||
535 | |||
536 | static ssize_t | ||
537 | qla2x00_beacon_store(struct class_device *cdev, const char *buf, | ||
538 | size_t count) | ||
539 | { | ||
540 | scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev)); | ||
541 | int val = 0; | ||
542 | int rval; | ||
543 | |||
544 | if (IS_QLA2100(ha) || IS_QLA2200(ha)) | ||
545 | return -EPERM; | ||
546 | |||
547 | if (test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)) { | ||
548 | qla_printk(KERN_WARNING, ha, | ||
549 | "Abort ISP active -- ignoring beacon request.\n"); | ||
550 | return -EBUSY; | ||
551 | } | ||
552 | |||
553 | if (sscanf(buf, "%d", &val) != 1) | ||
554 | return -EINVAL; | ||
555 | |||
556 | if (val) | ||
557 | rval = ha->isp_ops.beacon_on(ha); | ||
558 | else | ||
559 | rval = ha->isp_ops.beacon_off(ha); | ||
560 | |||
561 | if (rval != QLA_SUCCESS) | ||
562 | count = 0; | ||
563 | |||
564 | return count; | ||
565 | } | ||
566 | |||
387 | static CLASS_DEVICE_ATTR(driver_version, S_IRUGO, qla2x00_drvr_version_show, | 567 | static CLASS_DEVICE_ATTR(driver_version, S_IRUGO, qla2x00_drvr_version_show, |
388 | NULL); | 568 | NULL); |
389 | static CLASS_DEVICE_ATTR(fw_version, S_IRUGO, qla2x00_fw_version_show, NULL); | 569 | static CLASS_DEVICE_ATTR(fw_version, S_IRUGO, qla2x00_fw_version_show, NULL); |
@@ -398,6 +578,8 @@ static CLASS_DEVICE_ATTR(zio, S_IRUGO | S_IWUSR, qla2x00_zio_show, | |||
398 | qla2x00_zio_store); | 578 | qla2x00_zio_store); |
399 | static CLASS_DEVICE_ATTR(zio_timer, S_IRUGO | S_IWUSR, qla2x00_zio_timer_show, | 579 | static CLASS_DEVICE_ATTR(zio_timer, S_IRUGO | S_IWUSR, qla2x00_zio_timer_show, |
400 | qla2x00_zio_timer_store); | 580 | qla2x00_zio_timer_store); |
581 | static CLASS_DEVICE_ATTR(beacon, S_IRUGO | S_IWUSR, qla2x00_beacon_show, | ||
582 | qla2x00_beacon_store); | ||
401 | 583 | ||
402 | struct class_device_attribute *qla2x00_host_attrs[] = { | 584 | struct class_device_attribute *qla2x00_host_attrs[] = { |
403 | &class_device_attr_driver_version, | 585 | &class_device_attr_driver_version, |
@@ -411,6 +593,7 @@ struct class_device_attribute *qla2x00_host_attrs[] = { | |||
411 | &class_device_attr_state, | 593 | &class_device_attr_state, |
412 | &class_device_attr_zio, | 594 | &class_device_attr_zio, |
413 | &class_device_attr_zio_timer, | 595 | &class_device_attr_zio_timer, |
596 | &class_device_attr_beacon, | ||
414 | NULL, | 597 | NULL, |
415 | }; | 598 | }; |
416 | 599 | ||
@@ -426,6 +609,49 @@ qla2x00_get_host_port_id(struct Scsi_Host *shost) | |||
426 | } | 609 | } |
427 | 610 | ||
428 | static void | 611 | static void |
612 | qla2x00_get_host_speed(struct Scsi_Host *shost) | ||
613 | { | ||
614 | scsi_qla_host_t *ha = to_qla_host(shost); | ||
615 | uint32_t speed = 0; | ||
616 | |||
617 | switch (ha->link_data_rate) { | ||
618 | case LDR_1GB: | ||
619 | speed = 1; | ||
620 | break; | ||
621 | case LDR_2GB: | ||
622 | speed = 2; | ||
623 | break; | ||
624 | case LDR_4GB: | ||
625 | speed = 4; | ||
626 | break; | ||
627 | } | ||
628 | fc_host_speed(shost) = speed; | ||
629 | } | ||
630 | |||
631 | static void | ||
632 | qla2x00_get_host_port_type(struct Scsi_Host *shost) | ||
633 | { | ||
634 | scsi_qla_host_t *ha = to_qla_host(shost); | ||
635 | uint32_t port_type = FC_PORTTYPE_UNKNOWN; | ||
636 | |||
637 | switch (ha->current_topology) { | ||
638 | case ISP_CFG_NL: | ||
639 | port_type = FC_PORTTYPE_LPORT; | ||
640 | break; | ||
641 | case ISP_CFG_FL: | ||
642 | port_type = FC_PORTTYPE_NLPORT; | ||
643 | break; | ||
644 | case ISP_CFG_N: | ||
645 | port_type = FC_PORTTYPE_PTP; | ||
646 | break; | ||
647 | case ISP_CFG_F: | ||
648 | port_type = FC_PORTTYPE_NPORT; | ||
649 | break; | ||
650 | } | ||
651 | fc_host_port_type(shost) = port_type; | ||
652 | } | ||
653 | |||
654 | static void | ||
429 | qla2x00_get_starget_node_name(struct scsi_target *starget) | 655 | qla2x00_get_starget_node_name(struct scsi_target *starget) |
430 | { | 656 | { |
431 | struct Scsi_Host *host = dev_to_shost(starget->dev.parent); | 657 | struct Scsi_Host *host = dev_to_shost(starget->dev.parent); |
@@ -512,6 +738,41 @@ qla2x00_issue_lip(struct Scsi_Host *shost) | |||
512 | return 0; | 738 | return 0; |
513 | } | 739 | } |
514 | 740 | ||
741 | static struct fc_host_statistics * | ||
742 | qla2x00_get_fc_host_stats(struct Scsi_Host *shost) | ||
743 | { | ||
744 | scsi_qla_host_t *ha = to_qla_host(shost); | ||
745 | int rval; | ||
746 | uint16_t mb_stat[1]; | ||
747 | link_stat_t stat_buf; | ||
748 | struct fc_host_statistics *pfc_host_stat; | ||
749 | |||
750 | pfc_host_stat = &ha->fc_host_stat; | ||
751 | memset(pfc_host_stat, -1, sizeof(struct fc_host_statistics)); | ||
752 | |||
753 | if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) { | ||
754 | rval = qla24xx_get_isp_stats(ha, (uint32_t *)&stat_buf, | ||
755 | sizeof(stat_buf) / 4, mb_stat); | ||
756 | } else { | ||
757 | rval = qla2x00_get_link_status(ha, ha->loop_id, &stat_buf, | ||
758 | mb_stat); | ||
759 | } | ||
760 | if (rval != 0) { | ||
761 | qla_printk(KERN_WARNING, ha, | ||
762 | "Unable to retrieve host statistics (%d).\n", mb_stat[0]); | ||
763 | return pfc_host_stat; | ||
764 | } | ||
765 | |||
766 | pfc_host_stat->link_failure_count = stat_buf.link_fail_cnt; | ||
767 | pfc_host_stat->loss_of_sync_count = stat_buf.loss_sync_cnt; | ||
768 | pfc_host_stat->loss_of_signal_count = stat_buf.loss_sig_cnt; | ||
769 | pfc_host_stat->prim_seq_protocol_err_count = stat_buf.prim_seq_err_cnt; | ||
770 | pfc_host_stat->invalid_tx_word_count = stat_buf.inval_xmit_word_cnt; | ||
771 | pfc_host_stat->invalid_crc_count = stat_buf.inval_crc_cnt; | ||
772 | |||
773 | return pfc_host_stat; | ||
774 | } | ||
775 | |||
515 | struct fc_function_template qla2xxx_transport_functions = { | 776 | struct fc_function_template qla2xxx_transport_functions = { |
516 | 777 | ||
517 | .show_host_node_name = 1, | 778 | .show_host_node_name = 1, |
@@ -520,6 +781,10 @@ struct fc_function_template qla2xxx_transport_functions = { | |||
520 | 781 | ||
521 | .get_host_port_id = qla2x00_get_host_port_id, | 782 | .get_host_port_id = qla2x00_get_host_port_id, |
522 | .show_host_port_id = 1, | 783 | .show_host_port_id = 1, |
784 | .get_host_speed = qla2x00_get_host_speed, | ||
785 | .show_host_speed = 1, | ||
786 | .get_host_port_type = qla2x00_get_host_port_type, | ||
787 | .show_host_port_type = 1, | ||
523 | 788 | ||
524 | .dd_fcrport_size = sizeof(struct fc_port *), | 789 | .dd_fcrport_size = sizeof(struct fc_port *), |
525 | .show_rport_supported_classes = 1, | 790 | .show_rport_supported_classes = 1, |
@@ -536,6 +801,7 @@ struct fc_function_template qla2xxx_transport_functions = { | |||
536 | .show_rport_dev_loss_tmo = 1, | 801 | .show_rport_dev_loss_tmo = 1, |
537 | 802 | ||
538 | .issue_fc_host_lip = qla2x00_issue_lip, | 803 | .issue_fc_host_lip = qla2x00_issue_lip, |
804 | .get_fc_host_stats = qla2x00_get_fc_host_stats, | ||
539 | }; | 805 | }; |
540 | 806 | ||
541 | void | 807 | void |
diff --git a/drivers/scsi/qla2xxx/qla_def.h b/drivers/scsi/qla2xxx/qla_def.h index 79d8a914f9d0..b31a03bbd14f 100644 --- a/drivers/scsi/qla2xxx/qla_def.h +++ b/drivers/scsi/qla2xxx/qla_def.h | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <scsi/scsi_host.h> | 29 | #include <scsi/scsi_host.h> |
30 | #include <scsi/scsi_device.h> | 30 | #include <scsi/scsi_device.h> |
31 | #include <scsi/scsi_cmnd.h> | 31 | #include <scsi/scsi_cmnd.h> |
32 | #include <scsi/scsi_transport_fc.h> | ||
32 | 33 | ||
33 | #if defined(CONFIG_SCSI_QLA2XXX_EMBEDDED_FIRMWARE) | 34 | #if defined(CONFIG_SCSI_QLA2XXX_EMBEDDED_FIRMWARE) |
34 | #if defined(CONFIG_SCSI_QLA21XX) || defined(CONFIG_SCSI_QLA21XX_MODULE) | 35 | #if defined(CONFIG_SCSI_QLA21XX) || defined(CONFIG_SCSI_QLA21XX_MODULE) |
@@ -181,6 +182,13 @@ | |||
181 | #define WRT_REG_DWORD(addr, data) writel(data,addr) | 182 | #define WRT_REG_DWORD(addr, data) writel(data,addr) |
182 | 183 | ||
183 | /* | 184 | /* |
185 | * The ISP2312 v2 chip cannot access the FLASH/GPIO registers via MMIO in an | ||
186 | * 133Mhz slot. | ||
187 | */ | ||
188 | #define RD_REG_WORD_PIO(addr) (inw((unsigned long)addr)) | ||
189 | #define WRT_REG_WORD_PIO(addr, data) (outw(data,(unsigned long)addr)) | ||
190 | |||
191 | /* | ||
184 | * Fibre Channel device definitions. | 192 | * Fibre Channel device definitions. |
185 | */ | 193 | */ |
186 | #define WWN_SIZE 8 /* Size of WWPN, WWN & WWNN */ | 194 | #define WWN_SIZE 8 /* Size of WWPN, WWN & WWNN */ |
@@ -432,6 +440,9 @@ struct device_reg_2xxx { | |||
432 | #define GPIO_LED_GREEN_ON_AMBER_OFF 0x0040 | 440 | #define GPIO_LED_GREEN_ON_AMBER_OFF 0x0040 |
433 | #define GPIO_LED_GREEN_OFF_AMBER_ON 0x0080 | 441 | #define GPIO_LED_GREEN_OFF_AMBER_ON 0x0080 |
434 | #define GPIO_LED_GREEN_ON_AMBER_ON 0x00C0 | 442 | #define GPIO_LED_GREEN_ON_AMBER_ON 0x00C0 |
443 | #define GPIO_LED_ALL_OFF 0x0000 | ||
444 | #define GPIO_LED_RED_ON_OTHER_OFF 0x0001 /* isp2322 */ | ||
445 | #define GPIO_LED_RGA_ON 0x00C1 /* isp2322: red green amber */ | ||
435 | 446 | ||
436 | union { | 447 | union { |
437 | struct { | 448 | struct { |
@@ -1680,7 +1691,8 @@ typedef struct fc_port { | |||
1680 | uint8_t mp_byte; /* multi-path byte (not used) */ | 1691 | uint8_t mp_byte; /* multi-path byte (not used) */ |
1681 | uint8_t cur_path; /* current path id */ | 1692 | uint8_t cur_path; /* current path id */ |
1682 | 1693 | ||
1683 | struct fc_rport *rport; | 1694 | spinlock_t rport_lock; |
1695 | struct fc_rport *rport, *drport; | ||
1684 | u32 supported_classes; | 1696 | u32 supported_classes; |
1685 | struct work_struct rport_add_work; | 1697 | struct work_struct rport_add_work; |
1686 | struct work_struct rport_del_work; | 1698 | struct work_struct rport_del_work; |
@@ -2198,6 +2210,15 @@ struct isp_operations { | |||
2198 | 2210 | ||
2199 | void (*fw_dump) (struct scsi_qla_host *, int); | 2211 | void (*fw_dump) (struct scsi_qla_host *, int); |
2200 | void (*ascii_fw_dump) (struct scsi_qla_host *); | 2212 | void (*ascii_fw_dump) (struct scsi_qla_host *); |
2213 | |||
2214 | int (*beacon_on) (struct scsi_qla_host *); | ||
2215 | int (*beacon_off) (struct scsi_qla_host *); | ||
2216 | void (*beacon_blink) (struct scsi_qla_host *); | ||
2217 | |||
2218 | uint8_t * (*read_optrom) (struct scsi_qla_host *, uint8_t *, | ||
2219 | uint32_t, uint32_t); | ||
2220 | int (*write_optrom) (struct scsi_qla_host *, uint8_t *, uint32_t, | ||
2221 | uint32_t); | ||
2201 | }; | 2222 | }; |
2202 | 2223 | ||
2203 | /* | 2224 | /* |
@@ -2270,6 +2291,7 @@ typedef struct scsi_qla_host { | |||
2270 | #define LOOP_RESET_NEEDED 24 | 2291 | #define LOOP_RESET_NEEDED 24 |
2271 | #define BEACON_BLINK_NEEDED 25 | 2292 | #define BEACON_BLINK_NEEDED 25 |
2272 | #define REGISTER_FDMI_NEEDED 26 | 2293 | #define REGISTER_FDMI_NEEDED 26 |
2294 | #define FCPORT_UPDATE_NEEDED 27 | ||
2273 | 2295 | ||
2274 | uint32_t device_flags; | 2296 | uint32_t device_flags; |
2275 | #define DFLG_LOCAL_DEVICES BIT_0 | 2297 | #define DFLG_LOCAL_DEVICES BIT_0 |
@@ -2329,6 +2351,10 @@ typedef struct scsi_qla_host { | |||
2329 | uint16_t min_external_loopid; /* First external loop Id */ | 2351 | uint16_t min_external_loopid; /* First external loop Id */ |
2330 | 2352 | ||
2331 | uint16_t link_data_rate; /* F/W operating speed */ | 2353 | uint16_t link_data_rate; /* F/W operating speed */ |
2354 | #define LDR_1GB 0 | ||
2355 | #define LDR_2GB 1 | ||
2356 | #define LDR_4GB 3 | ||
2357 | #define LDR_UNKNOWN 0xFFFF | ||
2332 | 2358 | ||
2333 | uint8_t current_topology; | 2359 | uint8_t current_topology; |
2334 | uint8_t prev_topology; | 2360 | uint8_t prev_topology; |
@@ -2484,12 +2510,26 @@ typedef struct scsi_qla_host { | |||
2484 | uint8_t *port_name; | 2510 | uint8_t *port_name; |
2485 | uint32_t isp_abort_cnt; | 2511 | uint32_t isp_abort_cnt; |
2486 | 2512 | ||
2513 | /* Option ROM information. */ | ||
2514 | char *optrom_buffer; | ||
2515 | uint32_t optrom_size; | ||
2516 | int optrom_state; | ||
2517 | #define QLA_SWAITING 0 | ||
2518 | #define QLA_SREADING 1 | ||
2519 | #define QLA_SWRITING 2 | ||
2520 | |||
2487 | /* Needed for BEACON */ | 2521 | /* Needed for BEACON */ |
2488 | uint16_t beacon_blink_led; | 2522 | uint16_t beacon_blink_led; |
2489 | uint16_t beacon_green_on; | 2523 | uint8_t beacon_color_state; |
2524 | #define QLA_LED_GRN_ON 0x01 | ||
2525 | #define QLA_LED_YLW_ON 0x02 | ||
2526 | #define QLA_LED_ABR_ON 0x04 | ||
2527 | #define QLA_LED_ALL_ON 0x07 /* yellow, green, amber. */ | ||
2528 | /* ISP2322: red, green, amber. */ | ||
2490 | 2529 | ||
2491 | uint16_t zio_mode; | 2530 | uint16_t zio_mode; |
2492 | uint16_t zio_timer; | 2531 | uint16_t zio_timer; |
2532 | struct fc_host_statistics fc_host_stat; | ||
2493 | } scsi_qla_host_t; | 2533 | } scsi_qla_host_t; |
2494 | 2534 | ||
2495 | 2535 | ||
@@ -2555,7 +2595,9 @@ struct _qla2x00stats { | |||
2555 | /* | 2595 | /* |
2556 | * Flash support definitions | 2596 | * Flash support definitions |
2557 | */ | 2597 | */ |
2558 | #define FLASH_IMAGE_SIZE 131072 | 2598 | #define OPTROM_SIZE_2300 0x20000 |
2599 | #define OPTROM_SIZE_2322 0x100000 | ||
2600 | #define OPTROM_SIZE_24XX 0x100000 | ||
2559 | 2601 | ||
2560 | #include "qla_gbl.h" | 2602 | #include "qla_gbl.h" |
2561 | #include "qla_dbg.h" | 2603 | #include "qla_dbg.h" |
diff --git a/drivers/scsi/qla2xxx/qla_gbl.h b/drivers/scsi/qla2xxx/qla_gbl.h index 32be4c14cccb..ffdc2680f049 100644 --- a/drivers/scsi/qla2xxx/qla_gbl.h +++ b/drivers/scsi/qla2xxx/qla_gbl.h | |||
@@ -47,9 +47,11 @@ extern int qla2x00_local_device_login(scsi_qla_host_t *, uint16_t); | |||
47 | extern void qla2x00_restart_queues(scsi_qla_host_t *, uint8_t); | 47 | extern void qla2x00_restart_queues(scsi_qla_host_t *, uint8_t); |
48 | 48 | ||
49 | extern void qla2x00_rescan_fcports(scsi_qla_host_t *); | 49 | extern void qla2x00_rescan_fcports(scsi_qla_host_t *); |
50 | extern void qla2x00_update_fcports(scsi_qla_host_t *); | ||
50 | 51 | ||
51 | extern int qla2x00_abort_isp(scsi_qla_host_t *); | 52 | extern int qla2x00_abort_isp(scsi_qla_host_t *); |
52 | 53 | ||
54 | extern void qla2x00_update_fcport(scsi_qla_host_t *, fc_port_t *); | ||
53 | extern void qla2x00_reg_remote_port(scsi_qla_host_t *, fc_port_t *); | 55 | extern void qla2x00_reg_remote_port(scsi_qla_host_t *, fc_port_t *); |
54 | 56 | ||
55 | /* | 57 | /* |
@@ -70,15 +72,15 @@ extern char *qla2x00_get_fw_version_str(struct scsi_qla_host *, char *); | |||
70 | 72 | ||
71 | extern void qla2x00_cmd_timeout(srb_t *); | 73 | extern void qla2x00_cmd_timeout(srb_t *); |
72 | 74 | ||
73 | extern void qla2x00_mark_device_lost(scsi_qla_host_t *, fc_port_t *, int); | 75 | extern void qla2x00_mark_device_lost(scsi_qla_host_t *, fc_port_t *, int, int); |
74 | extern void qla2x00_mark_all_devices_lost(scsi_qla_host_t *); | 76 | extern void qla2x00_mark_all_devices_lost(scsi_qla_host_t *, int); |
75 | |||
76 | extern void qla2x00_blink_led(scsi_qla_host_t *); | ||
77 | 77 | ||
78 | extern int qla2x00_down_timeout(struct semaphore *, unsigned long); | 78 | extern int qla2x00_down_timeout(struct semaphore *, unsigned long); |
79 | 79 | ||
80 | extern struct fw_blob *qla2x00_request_firmware(scsi_qla_host_t *); | 80 | extern struct fw_blob *qla2x00_request_firmware(scsi_qla_host_t *); |
81 | 81 | ||
82 | extern int qla2x00_wait_for_hba_online(scsi_qla_host_t *); | ||
83 | |||
82 | /* | 84 | /* |
83 | * Global Function Prototypes in qla_iocb.c source file. | 85 | * Global Function Prototypes in qla_iocb.c source file. |
84 | */ | 86 | */ |
@@ -183,6 +185,13 @@ qla2x00_get_resource_cnts(scsi_qla_host_t *, uint16_t *, uint16_t *, uint16_t *, | |||
183 | extern int | 185 | extern int |
184 | qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map); | 186 | qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map); |
185 | 187 | ||
188 | extern int | ||
189 | qla2x00_get_link_status(scsi_qla_host_t *, uint16_t, link_stat_t *, | ||
190 | uint16_t *); | ||
191 | |||
192 | extern int | ||
193 | qla24xx_get_isp_stats(scsi_qla_host_t *, uint32_t *, uint32_t, uint16_t *); | ||
194 | |||
186 | extern int qla24xx_abort_command(scsi_qla_host_t *, srb_t *); | 195 | extern int qla24xx_abort_command(scsi_qla_host_t *, srb_t *); |
187 | extern int qla24xx_abort_target(fc_port_t *); | 196 | extern int qla24xx_abort_target(fc_port_t *); |
188 | 197 | ||
@@ -226,6 +235,22 @@ extern int qla2x00_write_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, | |||
226 | extern int qla24xx_write_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, | 235 | extern int qla24xx_write_nvram_data(scsi_qla_host_t *, uint8_t *, uint32_t, |
227 | uint32_t); | 236 | uint32_t); |
228 | 237 | ||
238 | extern int qla2x00_beacon_on(struct scsi_qla_host *); | ||
239 | extern int qla2x00_beacon_off(struct scsi_qla_host *); | ||
240 | extern void qla2x00_beacon_blink(struct scsi_qla_host *); | ||
241 | extern int qla24xx_beacon_on(struct scsi_qla_host *); | ||
242 | extern int qla24xx_beacon_off(struct scsi_qla_host *); | ||
243 | extern void qla24xx_beacon_blink(struct scsi_qla_host *); | ||
244 | |||
245 | extern uint8_t *qla2x00_read_optrom_data(struct scsi_qla_host *, uint8_t *, | ||
246 | uint32_t, uint32_t); | ||
247 | extern int qla2x00_write_optrom_data(struct scsi_qla_host *, uint8_t *, | ||
248 | uint32_t, uint32_t); | ||
249 | extern uint8_t *qla24xx_read_optrom_data(struct scsi_qla_host *, uint8_t *, | ||
250 | uint32_t, uint32_t); | ||
251 | extern int qla24xx_write_optrom_data(struct scsi_qla_host *, uint8_t *, | ||
252 | uint32_t, uint32_t); | ||
253 | |||
229 | /* | 254 | /* |
230 | * Global Function Prototypes in qla_dbg.c source file. | 255 | * Global Function Prototypes in qla_dbg.c source file. |
231 | */ | 256 | */ |
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index a91fea69ad63..634ee174bff2 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c | |||
@@ -8,7 +8,6 @@ | |||
8 | 8 | ||
9 | #include <linux/delay.h> | 9 | #include <linux/delay.h> |
10 | #include <linux/vmalloc.h> | 10 | #include <linux/vmalloc.h> |
11 | #include <scsi/scsi_transport_fc.h> | ||
12 | 11 | ||
13 | #include "qla_devtbl.h" | 12 | #include "qla_devtbl.h" |
14 | 13 | ||
@@ -32,7 +31,6 @@ static int qla2x00_fw_ready(scsi_qla_host_t *); | |||
32 | static int qla2x00_configure_hba(scsi_qla_host_t *); | 31 | static int qla2x00_configure_hba(scsi_qla_host_t *); |
33 | static int qla2x00_configure_loop(scsi_qla_host_t *); | 32 | static int qla2x00_configure_loop(scsi_qla_host_t *); |
34 | static int qla2x00_configure_local_loop(scsi_qla_host_t *); | 33 | static int qla2x00_configure_local_loop(scsi_qla_host_t *); |
35 | static void qla2x00_update_fcport(scsi_qla_host_t *, fc_port_t *); | ||
36 | static int qla2x00_configure_fabric(scsi_qla_host_t *); | 34 | static int qla2x00_configure_fabric(scsi_qla_host_t *); |
37 | static int qla2x00_find_all_fabric_devs(scsi_qla_host_t *, struct list_head *); | 35 | static int qla2x00_find_all_fabric_devs(scsi_qla_host_t *, struct list_head *); |
38 | static int qla2x00_device_resync(scsi_qla_host_t *); | 36 | static int qla2x00_device_resync(scsi_qla_host_t *); |
@@ -1688,10 +1686,16 @@ static void | |||
1688 | qla2x00_rport_del(void *data) | 1686 | qla2x00_rport_del(void *data) |
1689 | { | 1687 | { |
1690 | fc_port_t *fcport = data; | 1688 | fc_port_t *fcport = data; |
1689 | struct fc_rport *rport; | ||
1690 | unsigned long flags; | ||
1691 | |||
1692 | spin_lock_irqsave(&fcport->rport_lock, flags); | ||
1693 | rport = fcport->drport; | ||
1694 | fcport->drport = NULL; | ||
1695 | spin_unlock_irqrestore(&fcport->rport_lock, flags); | ||
1696 | if (rport) | ||
1697 | fc_remote_port_delete(rport); | ||
1691 | 1698 | ||
1692 | if (fcport->rport) | ||
1693 | fc_remote_port_delete(fcport->rport); | ||
1694 | fcport->rport = NULL; | ||
1695 | } | 1699 | } |
1696 | 1700 | ||
1697 | /** | 1701 | /** |
@@ -1719,6 +1723,7 @@ qla2x00_alloc_fcport(scsi_qla_host_t *ha, gfp_t flags) | |||
1719 | atomic_set(&fcport->state, FCS_UNCONFIGURED); | 1723 | atomic_set(&fcport->state, FCS_UNCONFIGURED); |
1720 | fcport->flags = FCF_RLC_SUPPORT; | 1724 | fcport->flags = FCF_RLC_SUPPORT; |
1721 | fcport->supported_classes = FC_COS_UNSPECIFIED; | 1725 | fcport->supported_classes = FC_COS_UNSPECIFIED; |
1726 | spin_lock_init(&fcport->rport_lock); | ||
1722 | INIT_WORK(&fcport->rport_add_work, qla2x00_rport_add, fcport); | 1727 | INIT_WORK(&fcport->rport_add_work, qla2x00_rport_add, fcport); |
1723 | INIT_WORK(&fcport->rport_del_work, qla2x00_rport_del, fcport); | 1728 | INIT_WORK(&fcport->rport_del_work, qla2x00_rport_del, fcport); |
1724 | 1729 | ||
@@ -2008,7 +2013,7 @@ qla2x00_probe_for_all_luns(scsi_qla_host_t *ha) | |||
2008 | { | 2013 | { |
2009 | fc_port_t *fcport; | 2014 | fc_port_t *fcport; |
2010 | 2015 | ||
2011 | qla2x00_mark_all_devices_lost(ha); | 2016 | qla2x00_mark_all_devices_lost(ha, 0); |
2012 | list_for_each_entry(fcport, &ha->fcports, list) { | 2017 | list_for_each_entry(fcport, &ha->fcports, list) { |
2013 | if (fcport->port_type != FCT_TARGET) | 2018 | if (fcport->port_type != FCT_TARGET) |
2014 | continue; | 2019 | continue; |
@@ -2032,13 +2037,9 @@ qla2x00_probe_for_all_luns(scsi_qla_host_t *ha) | |||
2032 | * Context: | 2037 | * Context: |
2033 | * Kernel context. | 2038 | * Kernel context. |
2034 | */ | 2039 | */ |
2035 | static void | 2040 | void |
2036 | qla2x00_update_fcport(scsi_qla_host_t *ha, fc_port_t *fcport) | 2041 | qla2x00_update_fcport(scsi_qla_host_t *ha, fc_port_t *fcport) |
2037 | { | 2042 | { |
2038 | uint16_t index; | ||
2039 | unsigned long flags; | ||
2040 | srb_t *sp; | ||
2041 | |||
2042 | fcport->ha = ha; | 2043 | fcport->ha = ha; |
2043 | fcport->login_retry = 0; | 2044 | fcport->login_retry = 0; |
2044 | fcport->port_login_retry_count = ha->port_down_retry_count * | 2045 | fcport->port_login_retry_count = ha->port_down_retry_count * |
@@ -2047,28 +2048,6 @@ qla2x00_update_fcport(scsi_qla_host_t *ha, fc_port_t *fcport) | |||
2047 | PORT_RETRY_TIME); | 2048 | PORT_RETRY_TIME); |
2048 | fcport->flags &= ~FCF_LOGIN_NEEDED; | 2049 | fcport->flags &= ~FCF_LOGIN_NEEDED; |
2049 | 2050 | ||
2050 | /* | ||
2051 | * Check for outstanding cmd on tape Bypass LUN discovery if active | ||
2052 | * command on tape. | ||
2053 | */ | ||
2054 | if (fcport->flags & FCF_TAPE_PRESENT) { | ||
2055 | spin_lock_irqsave(&ha->hardware_lock, flags); | ||
2056 | for (index = 1; index < MAX_OUTSTANDING_COMMANDS; index++) { | ||
2057 | fc_port_t *sfcp; | ||
2058 | |||
2059 | if ((sp = ha->outstanding_cmds[index]) != 0) { | ||
2060 | sfcp = sp->fcport; | ||
2061 | if (sfcp == fcport) { | ||
2062 | atomic_set(&fcport->state, FCS_ONLINE); | ||
2063 | spin_unlock_irqrestore( | ||
2064 | &ha->hardware_lock, flags); | ||
2065 | return; | ||
2066 | } | ||
2067 | } | ||
2068 | } | ||
2069 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | ||
2070 | } | ||
2071 | |||
2072 | if (fcport->port_type == FCT_INITIATOR || | 2051 | if (fcport->port_type == FCT_INITIATOR || |
2073 | fcport->port_type == FCT_BROADCAST) | 2052 | fcport->port_type == FCT_BROADCAST) |
2074 | fcport->device_type = TYPE_PROCESSOR; | 2053 | fcport->device_type = TYPE_PROCESSOR; |
@@ -2084,24 +2063,29 @@ qla2x00_reg_remote_port(scsi_qla_host_t *ha, fc_port_t *fcport) | |||
2084 | { | 2063 | { |
2085 | struct fc_rport_identifiers rport_ids; | 2064 | struct fc_rport_identifiers rport_ids; |
2086 | struct fc_rport *rport; | 2065 | struct fc_rport *rport; |
2066 | unsigned long flags; | ||
2087 | 2067 | ||
2088 | if (fcport->rport) { | 2068 | if (fcport->drport) |
2089 | fc_remote_port_delete(fcport->rport); | 2069 | qla2x00_rport_del(fcport); |
2090 | fcport->rport = NULL; | 2070 | if (fcport->rport) |
2091 | } | 2071 | return; |
2092 | 2072 | ||
2093 | rport_ids.node_name = wwn_to_u64(fcport->node_name); | 2073 | rport_ids.node_name = wwn_to_u64(fcport->node_name); |
2094 | rport_ids.port_name = wwn_to_u64(fcport->port_name); | 2074 | rport_ids.port_name = wwn_to_u64(fcport->port_name); |
2095 | rport_ids.port_id = fcport->d_id.b.domain << 16 | | 2075 | rport_ids.port_id = fcport->d_id.b.domain << 16 | |
2096 | fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa; | 2076 | fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa; |
2097 | rport_ids.roles = FC_RPORT_ROLE_UNKNOWN; | 2077 | rport_ids.roles = FC_RPORT_ROLE_UNKNOWN; |
2098 | fcport->rport = rport = fc_remote_port_add(ha->host, 0, &rport_ids); | 2078 | rport = fc_remote_port_add(ha->host, 0, &rport_ids); |
2099 | if (!rport) { | 2079 | if (!rport) { |
2100 | qla_printk(KERN_WARNING, ha, | 2080 | qla_printk(KERN_WARNING, ha, |
2101 | "Unable to allocate fc remote port!\n"); | 2081 | "Unable to allocate fc remote port!\n"); |
2102 | return; | 2082 | return; |
2103 | } | 2083 | } |
2084 | spin_lock_irqsave(&fcport->rport_lock, flags); | ||
2085 | fcport->rport = rport; | ||
2104 | *((fc_port_t **)rport->dd_data) = fcport; | 2086 | *((fc_port_t **)rport->dd_data) = fcport; |
2087 | spin_unlock_irqrestore(&fcport->rport_lock, flags); | ||
2088 | |||
2105 | rport->supported_classes = fcport->supported_classes; | 2089 | rport->supported_classes = fcport->supported_classes; |
2106 | 2090 | ||
2107 | rport_ids.roles = FC_RPORT_ROLE_UNKNOWN; | 2091 | rport_ids.roles = FC_RPORT_ROLE_UNKNOWN; |
@@ -2217,12 +2201,11 @@ qla2x00_configure_fabric(scsi_qla_host_t *ha) | |||
2217 | 2201 | ||
2218 | if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) { | 2202 | if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) { |
2219 | qla2x00_mark_device_lost(ha, fcport, | 2203 | qla2x00_mark_device_lost(ha, fcport, |
2220 | ql2xplogiabsentdevice); | 2204 | ql2xplogiabsentdevice, 0); |
2221 | if (fcport->loop_id != FC_NO_LOOP_ID && | 2205 | if (fcport->loop_id != FC_NO_LOOP_ID && |
2222 | (fcport->flags & FCF_TAPE_PRESENT) == 0 && | 2206 | (fcport->flags & FCF_TAPE_PRESENT) == 0 && |
2223 | fcport->port_type != FCT_INITIATOR && | 2207 | fcport->port_type != FCT_INITIATOR && |
2224 | fcport->port_type != FCT_BROADCAST) { | 2208 | fcport->port_type != FCT_BROADCAST) { |
2225 | |||
2226 | ha->isp_ops.fabric_logout(ha, | 2209 | ha->isp_ops.fabric_logout(ha, |
2227 | fcport->loop_id, | 2210 | fcport->loop_id, |
2228 | fcport->d_id.b.domain, | 2211 | fcport->d_id.b.domain, |
@@ -2694,7 +2677,8 @@ qla2x00_device_resync(scsi_qla_host_t *ha) | |||
2694 | if (atomic_read(&fcport->state) == FCS_ONLINE) { | 2677 | if (atomic_read(&fcport->state) == FCS_ONLINE) { |
2695 | if (format != 3 || | 2678 | if (format != 3 || |
2696 | fcport->port_type != FCT_INITIATOR) { | 2679 | fcport->port_type != FCT_INITIATOR) { |
2697 | qla2x00_mark_device_lost(ha, fcport, 0); | 2680 | qla2x00_mark_device_lost(ha, fcport, |
2681 | 0, 0); | ||
2698 | } | 2682 | } |
2699 | } | 2683 | } |
2700 | fcport->flags &= ~FCF_FARP_DONE; | 2684 | fcport->flags &= ~FCF_FARP_DONE; |
@@ -2741,8 +2725,7 @@ qla2x00_fabric_dev_login(scsi_qla_host_t *ha, fc_port_t *fcport, | |||
2741 | ha->isp_ops.fabric_logout(ha, fcport->loop_id, | 2725 | ha->isp_ops.fabric_logout(ha, fcport->loop_id, |
2742 | fcport->d_id.b.domain, fcport->d_id.b.area, | 2726 | fcport->d_id.b.domain, fcport->d_id.b.area, |
2743 | fcport->d_id.b.al_pa); | 2727 | fcport->d_id.b.al_pa); |
2744 | qla2x00_mark_device_lost(ha, fcport, 1); | 2728 | qla2x00_mark_device_lost(ha, fcport, 1, 0); |
2745 | |||
2746 | } else { | 2729 | } else { |
2747 | qla2x00_update_fcport(ha, fcport); | 2730 | qla2x00_update_fcport(ha, fcport); |
2748 | } | 2731 | } |
@@ -2855,7 +2838,7 @@ qla2x00_fabric_login(scsi_qla_host_t *ha, fc_port_t *fcport, | |||
2855 | ha->isp_ops.fabric_logout(ha, fcport->loop_id, | 2838 | ha->isp_ops.fabric_logout(ha, fcport->loop_id, |
2856 | fcport->d_id.b.domain, fcport->d_id.b.area, | 2839 | fcport->d_id.b.domain, fcport->d_id.b.area, |
2857 | fcport->d_id.b.al_pa); | 2840 | fcport->d_id.b.al_pa); |
2858 | qla2x00_mark_device_lost(ha, fcport, 1); | 2841 | qla2x00_mark_device_lost(ha, fcport, 1, 0); |
2859 | 2842 | ||
2860 | rval = 1; | 2843 | rval = 1; |
2861 | break; | 2844 | break; |
@@ -2990,6 +2973,17 @@ qla2x00_rescan_fcports(scsi_qla_host_t *ha) | |||
2990 | qla2x00_probe_for_all_luns(ha); | 2973 | qla2x00_probe_for_all_luns(ha); |
2991 | } | 2974 | } |
2992 | 2975 | ||
2976 | void | ||
2977 | qla2x00_update_fcports(scsi_qla_host_t *ha) | ||
2978 | { | ||
2979 | fc_port_t *fcport; | ||
2980 | |||
2981 | /* Go with deferred removal of rport references. */ | ||
2982 | list_for_each_entry(fcport, &ha->fcports, list) | ||
2983 | if (fcport->drport) | ||
2984 | qla2x00_rport_del(fcport); | ||
2985 | } | ||
2986 | |||
2993 | /* | 2987 | /* |
2994 | * qla2x00_abort_isp | 2988 | * qla2x00_abort_isp |
2995 | * Resets ISP and aborts all outstanding commands. | 2989 | * Resets ISP and aborts all outstanding commands. |
@@ -3019,7 +3013,7 @@ qla2x00_abort_isp(scsi_qla_host_t *ha) | |||
3019 | atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME); | 3013 | atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME); |
3020 | if (atomic_read(&ha->loop_state) != LOOP_DOWN) { | 3014 | if (atomic_read(&ha->loop_state) != LOOP_DOWN) { |
3021 | atomic_set(&ha->loop_state, LOOP_DOWN); | 3015 | atomic_set(&ha->loop_state, LOOP_DOWN); |
3022 | qla2x00_mark_all_devices_lost(ha); | 3016 | qla2x00_mark_all_devices_lost(ha, 0); |
3023 | } else { | 3017 | } else { |
3024 | if (!atomic_read(&ha->loop_down_timer)) | 3018 | if (!atomic_read(&ha->loop_down_timer)) |
3025 | atomic_set(&ha->loop_down_timer, | 3019 | atomic_set(&ha->loop_down_timer, |
diff --git a/drivers/scsi/qla2xxx/qla_iocb.c b/drivers/scsi/qla2xxx/qla_iocb.c index 7ec0b8d6f07b..6544b6d0891d 100644 --- a/drivers/scsi/qla2xxx/qla_iocb.c +++ b/drivers/scsi/qla2xxx/qla_iocb.c | |||
@@ -814,6 +814,7 @@ qla24xx_start_scsi(srb_t *sp) | |||
814 | cmd_pkt->port_id[2] = sp->fcport->d_id.b.domain; | 814 | cmd_pkt->port_id[2] = sp->fcport->d_id.b.domain; |
815 | 815 | ||
816 | int_to_scsilun(sp->cmd->device->lun, &cmd_pkt->lun); | 816 | int_to_scsilun(sp->cmd->device->lun, &cmd_pkt->lun); |
817 | host_to_fcp_swap((uint8_t *)&cmd_pkt->lun, sizeof(cmd_pkt->lun)); | ||
817 | 818 | ||
818 | /* Load SCSI command packet. */ | 819 | /* Load SCSI command packet. */ |
819 | memcpy(cmd_pkt->fcp_cdb, cmd->cmnd, cmd->cmd_len); | 820 | memcpy(cmd_pkt->fcp_cdb, cmd->cmnd, cmd->cmd_len); |
diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c index f63af081d4ff..42aa7a7c1a73 100644 --- a/drivers/scsi/qla2xxx/qla_isr.c +++ b/drivers/scsi/qla2xxx/qla_isr.c | |||
@@ -389,7 +389,7 @@ qla2x00_async_event(scsi_qla_host_t *ha, uint16_t *mb) | |||
389 | if (atomic_read(&ha->loop_state) != LOOP_DOWN) { | 389 | if (atomic_read(&ha->loop_state) != LOOP_DOWN) { |
390 | atomic_set(&ha->loop_state, LOOP_DOWN); | 390 | atomic_set(&ha->loop_state, LOOP_DOWN); |
391 | atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME); | 391 | atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME); |
392 | qla2x00_mark_all_devices_lost(ha); | 392 | qla2x00_mark_all_devices_lost(ha, 1); |
393 | } | 393 | } |
394 | 394 | ||
395 | set_bit(REGISTER_FC4_NEEDED, &ha->dpc_flags); | 395 | set_bit(REGISTER_FC4_NEEDED, &ha->dpc_flags); |
@@ -402,9 +402,9 @@ qla2x00_async_event(scsi_qla_host_t *ha, uint16_t *mb) | |||
402 | break; | 402 | break; |
403 | 403 | ||
404 | case MBA_LOOP_UP: /* Loop Up Event */ | 404 | case MBA_LOOP_UP: /* Loop Up Event */ |
405 | ha->link_data_rate = 0; | ||
406 | if (IS_QLA2100(ha) || IS_QLA2200(ha)) { | 405 | if (IS_QLA2100(ha) || IS_QLA2200(ha)) { |
407 | link_speed = link_speeds[0]; | 406 | link_speed = link_speeds[0]; |
407 | ha->link_data_rate = LDR_1GB; | ||
408 | } else { | 408 | } else { |
409 | link_speed = link_speeds[LS_UNKNOWN]; | 409 | link_speed = link_speeds[LS_UNKNOWN]; |
410 | if (mb[1] < 5) | 410 | if (mb[1] < 5) |
@@ -432,11 +432,11 @@ qla2x00_async_event(scsi_qla_host_t *ha, uint16_t *mb) | |||
432 | atomic_set(&ha->loop_state, LOOP_DOWN); | 432 | atomic_set(&ha->loop_state, LOOP_DOWN); |
433 | atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME); | 433 | atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME); |
434 | ha->device_flags |= DFLG_NO_CABLE; | 434 | ha->device_flags |= DFLG_NO_CABLE; |
435 | qla2x00_mark_all_devices_lost(ha); | 435 | qla2x00_mark_all_devices_lost(ha, 1); |
436 | } | 436 | } |
437 | 437 | ||
438 | ha->flags.management_server_logged_in = 0; | 438 | ha->flags.management_server_logged_in = 0; |
439 | ha->link_data_rate = 0; | 439 | ha->link_data_rate = LDR_UNKNOWN; |
440 | if (ql2xfdmienable) | 440 | if (ql2xfdmienable) |
441 | set_bit(REGISTER_FDMI_NEEDED, &ha->dpc_flags); | 441 | set_bit(REGISTER_FDMI_NEEDED, &ha->dpc_flags); |
442 | 442 | ||
@@ -453,7 +453,7 @@ qla2x00_async_event(scsi_qla_host_t *ha, uint16_t *mb) | |||
453 | if (atomic_read(&ha->loop_state) != LOOP_DOWN) { | 453 | if (atomic_read(&ha->loop_state) != LOOP_DOWN) { |
454 | atomic_set(&ha->loop_state, LOOP_DOWN); | 454 | atomic_set(&ha->loop_state, LOOP_DOWN); |
455 | atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME); | 455 | atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME); |
456 | qla2x00_mark_all_devices_lost(ha); | 456 | qla2x00_mark_all_devices_lost(ha, 1); |
457 | } | 457 | } |
458 | 458 | ||
459 | set_bit(RESET_MARKER_NEEDED, &ha->dpc_flags); | 459 | set_bit(RESET_MARKER_NEEDED, &ha->dpc_flags); |
@@ -482,7 +482,7 @@ qla2x00_async_event(scsi_qla_host_t *ha, uint16_t *mb) | |||
482 | if (!atomic_read(&ha->loop_down_timer)) | 482 | if (!atomic_read(&ha->loop_down_timer)) |
483 | atomic_set(&ha->loop_down_timer, | 483 | atomic_set(&ha->loop_down_timer, |
484 | LOOP_DOWN_TIME); | 484 | LOOP_DOWN_TIME); |
485 | qla2x00_mark_all_devices_lost(ha); | 485 | qla2x00_mark_all_devices_lost(ha, 1); |
486 | } | 486 | } |
487 | 487 | ||
488 | if (!(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags))) { | 488 | if (!(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags))) { |
@@ -506,7 +506,7 @@ qla2x00_async_event(scsi_qla_host_t *ha, uint16_t *mb) | |||
506 | if (!atomic_read(&ha->loop_down_timer)) | 506 | if (!atomic_read(&ha->loop_down_timer)) |
507 | atomic_set(&ha->loop_down_timer, | 507 | atomic_set(&ha->loop_down_timer, |
508 | LOOP_DOWN_TIME); | 508 | LOOP_DOWN_TIME); |
509 | qla2x00_mark_all_devices_lost(ha); | 509 | qla2x00_mark_all_devices_lost(ha, 1); |
510 | } | 510 | } |
511 | 511 | ||
512 | set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags); | 512 | set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags); |
@@ -580,7 +580,7 @@ qla2x00_async_event(scsi_qla_host_t *ha, uint16_t *mb) | |||
580 | */ | 580 | */ |
581 | atomic_set(&ha->loop_state, LOOP_UP); | 581 | atomic_set(&ha->loop_state, LOOP_UP); |
582 | 582 | ||
583 | qla2x00_mark_all_devices_lost(ha); | 583 | qla2x00_mark_all_devices_lost(ha, 1); |
584 | 584 | ||
585 | ha->flags.rscn_queue_overflow = 1; | 585 | ha->flags.rscn_queue_overflow = 1; |
586 | 586 | ||
@@ -1091,7 +1091,7 @@ qla2x00_status_entry(scsi_qla_host_t *ha, void *pkt) | |||
1091 | 1091 | ||
1092 | cp->result = DID_BUS_BUSY << 16; | 1092 | cp->result = DID_BUS_BUSY << 16; |
1093 | if (atomic_read(&fcport->state) == FCS_ONLINE) { | 1093 | if (atomic_read(&fcport->state) == FCS_ONLINE) { |
1094 | qla2x00_mark_device_lost(ha, fcport, 1); | 1094 | qla2x00_mark_device_lost(ha, fcport, 1, 1); |
1095 | } | 1095 | } |
1096 | break; | 1096 | break; |
1097 | 1097 | ||
@@ -1135,7 +1135,7 @@ qla2x00_status_entry(scsi_qla_host_t *ha, void *pkt) | |||
1135 | 1135 | ||
1136 | /* Check to see if logout occurred. */ | 1136 | /* Check to see if logout occurred. */ |
1137 | if ((le16_to_cpu(sts->status_flags) & SF_LOGOUT_SENT)) | 1137 | if ((le16_to_cpu(sts->status_flags) & SF_LOGOUT_SENT)) |
1138 | qla2x00_mark_device_lost(ha, fcport, 1); | 1138 | qla2x00_mark_device_lost(ha, fcport, 1, 1); |
1139 | break; | 1139 | break; |
1140 | 1140 | ||
1141 | case CS_QUEUE_FULL: | 1141 | case CS_QUEUE_FULL: |
diff --git a/drivers/scsi/qla2xxx/qla_mbx.c b/drivers/scsi/qla2xxx/qla_mbx.c index 3099b379de9d..363dfdd042b0 100644 --- a/drivers/scsi/qla2xxx/qla_mbx.c +++ b/drivers/scsi/qla2xxx/qla_mbx.c | |||
@@ -7,7 +7,6 @@ | |||
7 | #include "qla_def.h" | 7 | #include "qla_def.h" |
8 | 8 | ||
9 | #include <linux/delay.h> | 9 | #include <linux/delay.h> |
10 | #include <scsi/scsi_transport_fc.h> | ||
11 | 10 | ||
12 | static void | 11 | static void |
13 | qla2x00_mbx_sem_timeout(unsigned long data) | 12 | qla2x00_mbx_sem_timeout(unsigned long data) |
@@ -1874,7 +1873,8 @@ qla2x00_get_id_list(scsi_qla_host_t *ha, void *id_list, dma_addr_t id_list_dma, | |||
1874 | mcp->mb[3] = LSW(id_list_dma); | 1873 | mcp->mb[3] = LSW(id_list_dma); |
1875 | mcp->mb[6] = MSW(MSD(id_list_dma)); | 1874 | mcp->mb[6] = MSW(MSD(id_list_dma)); |
1876 | mcp->mb[7] = LSW(MSD(id_list_dma)); | 1875 | mcp->mb[7] = LSW(MSD(id_list_dma)); |
1877 | mcp->out_mb |= MBX_7|MBX_6|MBX_3|MBX_2; | 1876 | mcp->mb[8] = 0; |
1877 | mcp->out_mb |= MBX_8|MBX_7|MBX_6|MBX_3|MBX_2; | ||
1878 | } else { | 1878 | } else { |
1879 | mcp->mb[1] = MSW(id_list_dma); | 1879 | mcp->mb[1] = MSW(id_list_dma); |
1880 | mcp->mb[2] = LSW(id_list_dma); | 1880 | mcp->mb[2] = LSW(id_list_dma); |
@@ -2017,8 +2017,109 @@ qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map) | |||
2017 | 2017 | ||
2018 | return rval; | 2018 | return rval; |
2019 | } | 2019 | } |
2020 | #endif | ||
2021 | |||
2022 | /* | ||
2023 | * qla2x00_get_link_status | ||
2024 | * | ||
2025 | * Input: | ||
2026 | * ha = adapter block pointer. | ||
2027 | * loop_id = device loop ID. | ||
2028 | * ret_buf = pointer to link status return buffer. | ||
2029 | * | ||
2030 | * Returns: | ||
2031 | * 0 = success. | ||
2032 | * BIT_0 = mem alloc error. | ||
2033 | * BIT_1 = mailbox error. | ||
2034 | */ | ||
2035 | int | ||
2036 | qla2x00_get_link_status(scsi_qla_host_t *ha, uint16_t loop_id, | ||
2037 | link_stat_t *ret_buf, uint16_t *status) | ||
2038 | { | ||
2039 | int rval; | ||
2040 | mbx_cmd_t mc; | ||
2041 | mbx_cmd_t *mcp = &mc; | ||
2042 | link_stat_t *stat_buf; | ||
2043 | dma_addr_t stat_buf_dma; | ||
2044 | |||
2045 | DEBUG11(printk("%s(%ld): entered.\n", __func__, ha->host_no);) | ||
2046 | |||
2047 | stat_buf = dma_pool_alloc(ha->s_dma_pool, GFP_ATOMIC, &stat_buf_dma); | ||
2048 | if (stat_buf == NULL) { | ||
2049 | DEBUG2_3_11(printk("%s(%ld): Failed to allocate memory.\n", | ||
2050 | __func__, ha->host_no)); | ||
2051 | return BIT_0; | ||
2052 | } | ||
2053 | memset(stat_buf, 0, sizeof(link_stat_t)); | ||
2054 | |||
2055 | mcp->mb[0] = MBC_GET_LINK_STATUS; | ||
2056 | mcp->mb[2] = MSW(stat_buf_dma); | ||
2057 | mcp->mb[3] = LSW(stat_buf_dma); | ||
2058 | mcp->mb[6] = MSW(MSD(stat_buf_dma)); | ||
2059 | mcp->mb[7] = LSW(MSD(stat_buf_dma)); | ||
2060 | mcp->out_mb = MBX_7|MBX_6|MBX_3|MBX_2|MBX_0; | ||
2061 | mcp->in_mb = MBX_0; | ||
2062 | if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) { | ||
2063 | mcp->mb[1] = loop_id; | ||
2064 | mcp->mb[4] = 0; | ||
2065 | mcp->mb[10] = 0; | ||
2066 | mcp->out_mb |= MBX_10|MBX_4|MBX_1; | ||
2067 | mcp->in_mb |= MBX_1; | ||
2068 | } else if (HAS_EXTENDED_IDS(ha)) { | ||
2069 | mcp->mb[1] = loop_id; | ||
2070 | mcp->mb[10] = 0; | ||
2071 | mcp->out_mb |= MBX_10|MBX_1; | ||
2072 | } else { | ||
2073 | mcp->mb[1] = loop_id << 8; | ||
2074 | mcp->out_mb |= MBX_1; | ||
2075 | } | ||
2076 | mcp->tov = 30; | ||
2077 | mcp->flags = IOCTL_CMD; | ||
2078 | rval = qla2x00_mailbox_command(ha, mcp); | ||
2079 | |||
2080 | if (rval == QLA_SUCCESS) { | ||
2081 | if (mcp->mb[0] != MBS_COMMAND_COMPLETE) { | ||
2082 | DEBUG2_3_11(printk("%s(%ld): cmd failed. mbx0=%x.\n", | ||
2083 | __func__, ha->host_no, mcp->mb[0]);) | ||
2084 | status[0] = mcp->mb[0]; | ||
2085 | rval = BIT_1; | ||
2086 | } else { | ||
2087 | /* copy over data -- firmware data is LE. */ | ||
2088 | ret_buf->link_fail_cnt = | ||
2089 | le32_to_cpu(stat_buf->link_fail_cnt); | ||
2090 | ret_buf->loss_sync_cnt = | ||
2091 | le32_to_cpu(stat_buf->loss_sync_cnt); | ||
2092 | ret_buf->loss_sig_cnt = | ||
2093 | le32_to_cpu(stat_buf->loss_sig_cnt); | ||
2094 | ret_buf->prim_seq_err_cnt = | ||
2095 | le32_to_cpu(stat_buf->prim_seq_err_cnt); | ||
2096 | ret_buf->inval_xmit_word_cnt = | ||
2097 | le32_to_cpu(stat_buf->inval_xmit_word_cnt); | ||
2098 | ret_buf->inval_crc_cnt = | ||
2099 | le32_to_cpu(stat_buf->inval_crc_cnt); | ||
2100 | |||
2101 | DEBUG11(printk("%s(%ld): stat dump: fail_cnt=%d " | ||
2102 | "loss_sync=%d loss_sig=%d seq_err=%d " | ||
2103 | "inval_xmt_word=%d inval_crc=%d.\n", __func__, | ||
2104 | ha->host_no, stat_buf->link_fail_cnt, | ||
2105 | stat_buf->loss_sync_cnt, stat_buf->loss_sig_cnt, | ||
2106 | stat_buf->prim_seq_err_cnt, | ||
2107 | stat_buf->inval_xmit_word_cnt, | ||
2108 | stat_buf->inval_crc_cnt);) | ||
2109 | } | ||
2110 | } else { | ||
2111 | /* Failed. */ | ||
2112 | DEBUG2_3_11(printk("%s(%ld): failed=%x.\n", __func__, | ||
2113 | ha->host_no, rval);) | ||
2114 | rval = BIT_1; | ||
2115 | } | ||
2116 | |||
2117 | dma_pool_free(ha->s_dma_pool, stat_buf, stat_buf_dma); | ||
2020 | 2118 | ||
2021 | uint8_t | 2119 | return rval; |
2120 | } | ||
2121 | |||
2122 | int | ||
2022 | qla24xx_get_isp_stats(scsi_qla_host_t *ha, uint32_t *dwbuf, uint32_t dwords, | 2123 | qla24xx_get_isp_stats(scsi_qla_host_t *ha, uint32_t *dwbuf, uint32_t dwords, |
2023 | uint16_t *status) | 2124 | uint16_t *status) |
2024 | { | 2125 | { |
@@ -2080,7 +2181,6 @@ qla24xx_get_isp_stats(scsi_qla_host_t *ha, uint32_t *dwbuf, uint32_t dwords, | |||
2080 | 2181 | ||
2081 | return rval; | 2182 | return rval; |
2082 | } | 2183 | } |
2083 | #endif | ||
2084 | 2184 | ||
2085 | int | 2185 | int |
2086 | qla24xx_abort_command(scsi_qla_host_t *ha, srb_t *sp) | 2186 | qla24xx_abort_command(scsi_qla_host_t *ha, srb_t *sp) |
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index 4916847d84ec..9f91f1a20542 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c | |||
@@ -366,6 +366,12 @@ qla2x00_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *)) | |||
366 | goto qc_fail_command; | 366 | goto qc_fail_command; |
367 | } | 367 | } |
368 | 368 | ||
369 | /* Close window on fcport/rport state-transitioning. */ | ||
370 | if (!*(fc_port_t **)rport->dd_data) { | ||
371 | cmd->result = DID_IMM_RETRY << 16; | ||
372 | goto qc_fail_command; | ||
373 | } | ||
374 | |||
369 | if (atomic_read(&fcport->state) != FCS_ONLINE) { | 375 | if (atomic_read(&fcport->state) != FCS_ONLINE) { |
370 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD || | 376 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD || |
371 | atomic_read(&ha->loop_state) == LOOP_DEAD) { | 377 | atomic_read(&ha->loop_state) == LOOP_DEAD) { |
@@ -421,6 +427,12 @@ qla24xx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *)) | |||
421 | goto qc24_fail_command; | 427 | goto qc24_fail_command; |
422 | } | 428 | } |
423 | 429 | ||
430 | /* Close window on fcport/rport state-transitioning. */ | ||
431 | if (!*(fc_port_t **)rport->dd_data) { | ||
432 | cmd->result = DID_IMM_RETRY << 16; | ||
433 | goto qc24_fail_command; | ||
434 | } | ||
435 | |||
424 | if (atomic_read(&fcport->state) != FCS_ONLINE) { | 436 | if (atomic_read(&fcport->state) != FCS_ONLINE) { |
425 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD || | 437 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD || |
426 | atomic_read(&ha->loop_state) == LOOP_DEAD) { | 438 | atomic_read(&ha->loop_state) == LOOP_DEAD) { |
@@ -513,7 +525,7 @@ qla2x00_eh_wait_on_command(scsi_qla_host_t *ha, struct scsi_cmnd *cmd) | |||
513 | * Success (Adapter is online) : 0 | 525 | * Success (Adapter is online) : 0 |
514 | * Failed (Adapter is offline/disabled) : 1 | 526 | * Failed (Adapter is offline/disabled) : 1 |
515 | */ | 527 | */ |
516 | static int | 528 | int |
517 | qla2x00_wait_for_hba_online(scsi_qla_host_t *ha) | 529 | qla2x00_wait_for_hba_online(scsi_qla_host_t *ha) |
518 | { | 530 | { |
519 | int return_status; | 531 | int return_status; |
@@ -756,7 +768,7 @@ qla2xxx_eh_device_reset(struct scsi_cmnd *cmd) | |||
756 | if (ret == SUCCESS) { | 768 | if (ret == SUCCESS) { |
757 | if (fcport->flags & FC_FABRIC_DEVICE) { | 769 | if (fcport->flags & FC_FABRIC_DEVICE) { |
758 | ha->isp_ops.fabric_logout(ha, fcport->loop_id); | 770 | ha->isp_ops.fabric_logout(ha, fcport->loop_id); |
759 | qla2x00_mark_device_lost(ha, fcport); | 771 | qla2x00_mark_device_lost(ha, fcport, 0, 0); |
760 | } | 772 | } |
761 | } | 773 | } |
762 | #endif | 774 | #endif |
@@ -1312,6 +1324,8 @@ int qla2x00_probe_one(struct pci_dev *pdev, struct qla_board_info *brd_info) | |||
1312 | ha->ports = MAX_BUSES; | 1324 | ha->ports = MAX_BUSES; |
1313 | ha->init_cb_size = sizeof(init_cb_t); | 1325 | ha->init_cb_size = sizeof(init_cb_t); |
1314 | ha->mgmt_svr_loop_id = MANAGEMENT_SERVER; | 1326 | ha->mgmt_svr_loop_id = MANAGEMENT_SERVER; |
1327 | ha->link_data_rate = LDR_UNKNOWN; | ||
1328 | ha->optrom_size = OPTROM_SIZE_2300; | ||
1315 | 1329 | ||
1316 | /* Assign ISP specific operations. */ | 1330 | /* Assign ISP specific operations. */ |
1317 | ha->isp_ops.pci_config = qla2100_pci_config; | 1331 | ha->isp_ops.pci_config = qla2100_pci_config; |
@@ -1339,6 +1353,8 @@ int qla2x00_probe_one(struct pci_dev *pdev, struct qla_board_info *brd_info) | |||
1339 | ha->isp_ops.write_nvram = qla2x00_write_nvram_data; | 1353 | ha->isp_ops.write_nvram = qla2x00_write_nvram_data; |
1340 | ha->isp_ops.fw_dump = qla2100_fw_dump; | 1354 | ha->isp_ops.fw_dump = qla2100_fw_dump; |
1341 | ha->isp_ops.ascii_fw_dump = qla2100_ascii_fw_dump; | 1355 | ha->isp_ops.ascii_fw_dump = qla2100_ascii_fw_dump; |
1356 | ha->isp_ops.read_optrom = qla2x00_read_optrom_data; | ||
1357 | ha->isp_ops.write_optrom = qla2x00_write_optrom_data; | ||
1342 | if (IS_QLA2100(ha)) { | 1358 | if (IS_QLA2100(ha)) { |
1343 | host->max_id = MAX_TARGETS_2100; | 1359 | host->max_id = MAX_TARGETS_2100; |
1344 | ha->mbx_count = MAILBOX_REGISTER_COUNT_2100; | 1360 | ha->mbx_count = MAILBOX_REGISTER_COUNT_2100; |
@@ -1364,7 +1380,12 @@ int qla2x00_probe_one(struct pci_dev *pdev, struct qla_board_info *brd_info) | |||
1364 | ha->isp_ops.intr_handler = qla2300_intr_handler; | 1380 | ha->isp_ops.intr_handler = qla2300_intr_handler; |
1365 | ha->isp_ops.fw_dump = qla2300_fw_dump; | 1381 | ha->isp_ops.fw_dump = qla2300_fw_dump; |
1366 | ha->isp_ops.ascii_fw_dump = qla2300_ascii_fw_dump; | 1382 | ha->isp_ops.ascii_fw_dump = qla2300_ascii_fw_dump; |
1383 | ha->isp_ops.beacon_on = qla2x00_beacon_on; | ||
1384 | ha->isp_ops.beacon_off = qla2x00_beacon_off; | ||
1385 | ha->isp_ops.beacon_blink = qla2x00_beacon_blink; | ||
1367 | ha->gid_list_info_size = 6; | 1386 | ha->gid_list_info_size = 6; |
1387 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) | ||
1388 | ha->optrom_size = OPTROM_SIZE_2322; | ||
1368 | } else if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) { | 1389 | } else if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) { |
1369 | host->max_id = MAX_TARGETS_2200; | 1390 | host->max_id = MAX_TARGETS_2200; |
1370 | ha->mbx_count = MAILBOX_REGISTER_COUNT; | 1391 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
@@ -1400,7 +1421,13 @@ int qla2x00_probe_one(struct pci_dev *pdev, struct qla_board_info *brd_info) | |||
1400 | ha->isp_ops.write_nvram = qla24xx_write_nvram_data; | 1421 | ha->isp_ops.write_nvram = qla24xx_write_nvram_data; |
1401 | ha->isp_ops.fw_dump = qla24xx_fw_dump; | 1422 | ha->isp_ops.fw_dump = qla24xx_fw_dump; |
1402 | ha->isp_ops.ascii_fw_dump = qla24xx_ascii_fw_dump; | 1423 | ha->isp_ops.ascii_fw_dump = qla24xx_ascii_fw_dump; |
1424 | ha->isp_ops.read_optrom = qla24xx_read_optrom_data; | ||
1425 | ha->isp_ops.write_optrom = qla24xx_write_optrom_data; | ||
1426 | ha->isp_ops.beacon_on = qla24xx_beacon_on; | ||
1427 | ha->isp_ops.beacon_off = qla24xx_beacon_off; | ||
1428 | ha->isp_ops.beacon_blink = qla24xx_beacon_blink; | ||
1403 | ha->gid_list_info_size = 8; | 1429 | ha->gid_list_info_size = 8; |
1430 | ha->optrom_size = OPTROM_SIZE_24XX; | ||
1404 | } | 1431 | } |
1405 | host->can_queue = ha->request_q_length + 128; | 1432 | host->can_queue = ha->request_q_length + 128; |
1406 | 1433 | ||
@@ -1642,6 +1669,33 @@ qla2x00_free_device(scsi_qla_host_t *ha) | |||
1642 | pci_disable_device(ha->pdev); | 1669 | pci_disable_device(ha->pdev); |
1643 | } | 1670 | } |
1644 | 1671 | ||
1672 | static inline void | ||
1673 | qla2x00_schedule_rport_del(struct scsi_qla_host *ha, fc_port_t *fcport, | ||
1674 | int defer) | ||
1675 | { | ||
1676 | unsigned long flags; | ||
1677 | struct fc_rport *rport; | ||
1678 | |||
1679 | if (!fcport->rport) | ||
1680 | return; | ||
1681 | |||
1682 | rport = fcport->rport; | ||
1683 | if (defer) { | ||
1684 | spin_lock_irqsave(&fcport->rport_lock, flags); | ||
1685 | fcport->drport = rport; | ||
1686 | fcport->rport = NULL; | ||
1687 | *(fc_port_t **)rport->dd_data = NULL; | ||
1688 | spin_unlock_irqrestore(&fcport->rport_lock, flags); | ||
1689 | set_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags); | ||
1690 | } else { | ||
1691 | spin_lock_irqsave(&fcport->rport_lock, flags); | ||
1692 | fcport->rport = NULL; | ||
1693 | *(fc_port_t **)rport->dd_data = NULL; | ||
1694 | spin_unlock_irqrestore(&fcport->rport_lock, flags); | ||
1695 | fc_remote_port_delete(rport); | ||
1696 | } | ||
1697 | } | ||
1698 | |||
1645 | /* | 1699 | /* |
1646 | * qla2x00_mark_device_lost Updates fcport state when device goes offline. | 1700 | * qla2x00_mark_device_lost Updates fcport state when device goes offline. |
1647 | * | 1701 | * |
@@ -1652,10 +1706,10 @@ qla2x00_free_device(scsi_qla_host_t *ha) | |||
1652 | * Context: | 1706 | * Context: |
1653 | */ | 1707 | */ |
1654 | void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport, | 1708 | void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport, |
1655 | int do_login) | 1709 | int do_login, int defer) |
1656 | { | 1710 | { |
1657 | if (atomic_read(&fcport->state) == FCS_ONLINE && fcport->rport) | 1711 | if (atomic_read(&fcport->state) == FCS_ONLINE) |
1658 | schedule_work(&fcport->rport_del_work); | 1712 | qla2x00_schedule_rport_del(ha, fcport, defer); |
1659 | 1713 | ||
1660 | /* | 1714 | /* |
1661 | * We may need to retry the login, so don't change the state of the | 1715 | * We may need to retry the login, so don't change the state of the |
@@ -1702,7 +1756,7 @@ void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport, | |||
1702 | * Context: | 1756 | * Context: |
1703 | */ | 1757 | */ |
1704 | void | 1758 | void |
1705 | qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha) | 1759 | qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha, int defer) |
1706 | { | 1760 | { |
1707 | fc_port_t *fcport; | 1761 | fc_port_t *fcport; |
1708 | 1762 | ||
@@ -1716,10 +1770,13 @@ qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha) | |||
1716 | */ | 1770 | */ |
1717 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD) | 1771 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD) |
1718 | continue; | 1772 | continue; |
1719 | if (atomic_read(&fcport->state) == FCS_ONLINE && fcport->rport) | 1773 | if (atomic_read(&fcport->state) == FCS_ONLINE) |
1720 | schedule_work(&fcport->rport_del_work); | 1774 | qla2x00_schedule_rport_del(ha, fcport, defer); |
1721 | atomic_set(&fcport->state, FCS_DEVICE_LOST); | 1775 | atomic_set(&fcport->state, FCS_DEVICE_LOST); |
1722 | } | 1776 | } |
1777 | |||
1778 | if (defer && ha->dpc_wait && !ha->dpc_active) | ||
1779 | up(ha->dpc_wait); | ||
1723 | } | 1780 | } |
1724 | 1781 | ||
1725 | /* | 1782 | /* |
@@ -2038,6 +2095,8 @@ qla2x00_mem_free(scsi_qla_host_t *ha) | |||
2038 | ha->fw_dumped = 0; | 2095 | ha->fw_dumped = 0; |
2039 | ha->fw_dump_reading = 0; | 2096 | ha->fw_dump_reading = 0; |
2040 | ha->fw_dump_buffer = NULL; | 2097 | ha->fw_dump_buffer = NULL; |
2098 | |||
2099 | vfree(ha->optrom_buffer); | ||
2041 | } | 2100 | } |
2042 | 2101 | ||
2043 | /* | 2102 | /* |
@@ -2161,6 +2220,9 @@ qla2x00_do_dpc(void *data) | |||
2161 | ha->host_no)); | 2220 | ha->host_no)); |
2162 | } | 2221 | } |
2163 | 2222 | ||
2223 | if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags)) | ||
2224 | qla2x00_update_fcports(ha); | ||
2225 | |||
2164 | if (test_and_clear_bit(LOOP_RESET_NEEDED, &ha->dpc_flags)) { | 2226 | if (test_and_clear_bit(LOOP_RESET_NEEDED, &ha->dpc_flags)) { |
2165 | DEBUG(printk("scsi(%ld): dpc: sched loop_reset()\n", | 2227 | DEBUG(printk("scsi(%ld): dpc: sched loop_reset()\n", |
2166 | ha->host_no)); | 2228 | ha->host_no)); |
@@ -2219,13 +2281,8 @@ qla2x00_do_dpc(void *data) | |||
2219 | DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n", | 2281 | DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n", |
2220 | ha->host_no, fcport->loop_id)); | 2282 | ha->host_no, fcport->loop_id)); |
2221 | 2283 | ||
2222 | fcport->port_login_retry_count = | 2284 | qla2x00_update_fcport(ha, |
2223 | ha->port_down_retry_count * PORT_RETRY_TIME; | 2285 | fcport); |
2224 | atomic_set(&fcport->state, FCS_ONLINE); | ||
2225 | atomic_set(&fcport->port_down_timer, | ||
2226 | ha->port_down_retry_count * PORT_RETRY_TIME); | ||
2227 | |||
2228 | fcport->login_retry = 0; | ||
2229 | } else if (status == 1) { | 2286 | } else if (status == 1) { |
2230 | set_bit(RELOGIN_NEEDED, &ha->dpc_flags); | 2287 | set_bit(RELOGIN_NEEDED, &ha->dpc_flags); |
2231 | /* retry the login again */ | 2288 | /* retry the login again */ |
@@ -2288,6 +2345,9 @@ qla2x00_do_dpc(void *data) | |||
2288 | if (!ha->interrupts_on) | 2345 | if (!ha->interrupts_on) |
2289 | ha->isp_ops.enable_intrs(ha); | 2346 | ha->isp_ops.enable_intrs(ha); |
2290 | 2347 | ||
2348 | if (test_and_clear_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags)) | ||
2349 | ha->isp_ops.beacon_blink(ha); | ||
2350 | |||
2291 | ha->dpc_active = 0; | 2351 | ha->dpc_active = 0; |
2292 | } /* End of while(1) */ | 2352 | } /* End of while(1) */ |
2293 | 2353 | ||
@@ -2465,13 +2525,21 @@ qla2x00_timer(scsi_qla_host_t *ha) | |||
2465 | atomic_read(&ha->loop_down_timer))); | 2525 | atomic_read(&ha->loop_down_timer))); |
2466 | } | 2526 | } |
2467 | 2527 | ||
2528 | /* Check if beacon LED needs to be blinked */ | ||
2529 | if (ha->beacon_blink_led == 1) { | ||
2530 | set_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags); | ||
2531 | start_dpc++; | ||
2532 | } | ||
2533 | |||
2468 | /* Schedule the DPC routine if needed */ | 2534 | /* Schedule the DPC routine if needed */ |
2469 | if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) || | 2535 | if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) || |
2470 | test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) || | 2536 | test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) || |
2471 | test_bit(LOOP_RESET_NEEDED, &ha->dpc_flags) || | 2537 | test_bit(LOOP_RESET_NEEDED, &ha->dpc_flags) || |
2538 | test_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags) || | ||
2472 | start_dpc || | 2539 | start_dpc || |
2473 | test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags) || | 2540 | test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags) || |
2474 | test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) || | 2541 | test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) || |
2542 | test_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags) || | ||
2475 | test_bit(RELOGIN_NEEDED, &ha->dpc_flags)) && | 2543 | test_bit(RELOGIN_NEEDED, &ha->dpc_flags)) && |
2476 | ha->dpc_wait && !ha->dpc_active) { | 2544 | ha->dpc_wait && !ha->dpc_active) { |
2477 | 2545 | ||
diff --git a/drivers/scsi/qla2xxx/qla_rscn.c b/drivers/scsi/qla2xxx/qla_rscn.c index 2c3342108dd8..b70bebe18c01 100644 --- a/drivers/scsi/qla2xxx/qla_rscn.c +++ b/drivers/scsi/qla2xxx/qla_rscn.c | |||
@@ -6,8 +6,6 @@ | |||
6 | */ | 6 | */ |
7 | #include "qla_def.h" | 7 | #include "qla_def.h" |
8 | 8 | ||
9 | #include <scsi/scsi_transport_fc.h> | ||
10 | |||
11 | /** | 9 | /** |
12 | * IO descriptor handle definitions. | 10 | * IO descriptor handle definitions. |
13 | * | 11 | * |
diff --git a/drivers/scsi/qla2xxx/qla_sup.c b/drivers/scsi/qla2xxx/qla_sup.c index f4d755a643e4..3866a5760f15 100644 --- a/drivers/scsi/qla2xxx/qla_sup.c +++ b/drivers/scsi/qla2xxx/qla_sup.c | |||
@@ -695,3 +695,966 @@ qla24xx_write_nvram_data(scsi_qla_host_t *ha, uint8_t *buf, uint32_t naddr, | |||
695 | 695 | ||
696 | return ret; | 696 | return ret; |
697 | } | 697 | } |
698 | |||
699 | |||
700 | static inline void | ||
701 | qla2x00_flip_colors(scsi_qla_host_t *ha, uint16_t *pflags) | ||
702 | { | ||
703 | if (IS_QLA2322(ha)) { | ||
704 | /* Flip all colors. */ | ||
705 | if (ha->beacon_color_state == QLA_LED_ALL_ON) { | ||
706 | /* Turn off. */ | ||
707 | ha->beacon_color_state = 0; | ||
708 | *pflags = GPIO_LED_ALL_OFF; | ||
709 | } else { | ||
710 | /* Turn on. */ | ||
711 | ha->beacon_color_state = QLA_LED_ALL_ON; | ||
712 | *pflags = GPIO_LED_RGA_ON; | ||
713 | } | ||
714 | } else { | ||
715 | /* Flip green led only. */ | ||
716 | if (ha->beacon_color_state == QLA_LED_GRN_ON) { | ||
717 | /* Turn off. */ | ||
718 | ha->beacon_color_state = 0; | ||
719 | *pflags = GPIO_LED_GREEN_OFF_AMBER_OFF; | ||
720 | } else { | ||
721 | /* Turn on. */ | ||
722 | ha->beacon_color_state = QLA_LED_GRN_ON; | ||
723 | *pflags = GPIO_LED_GREEN_ON_AMBER_OFF; | ||
724 | } | ||
725 | } | ||
726 | } | ||
727 | |||
728 | void | ||
729 | qla2x00_beacon_blink(struct scsi_qla_host *ha) | ||
730 | { | ||
731 | uint16_t gpio_enable; | ||
732 | uint16_t gpio_data; | ||
733 | uint16_t led_color = 0; | ||
734 | unsigned long flags; | ||
735 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; | ||
736 | |||
737 | if (ha->pio_address) | ||
738 | reg = (struct device_reg_2xxx __iomem *)ha->pio_address; | ||
739 | |||
740 | spin_lock_irqsave(&ha->hardware_lock, flags); | ||
741 | |||
742 | /* Save the Original GPIOE. */ | ||
743 | if (ha->pio_address) { | ||
744 | gpio_enable = RD_REG_WORD_PIO(®->gpioe); | ||
745 | gpio_data = RD_REG_WORD_PIO(®->gpiod); | ||
746 | } else { | ||
747 | gpio_enable = RD_REG_WORD(®->gpioe); | ||
748 | gpio_data = RD_REG_WORD(®->gpiod); | ||
749 | } | ||
750 | |||
751 | /* Set the modified gpio_enable values */ | ||
752 | gpio_enable |= GPIO_LED_MASK; | ||
753 | |||
754 | if (ha->pio_address) { | ||
755 | WRT_REG_WORD_PIO(®->gpioe, gpio_enable); | ||
756 | } else { | ||
757 | WRT_REG_WORD(®->gpioe, gpio_enable); | ||
758 | RD_REG_WORD(®->gpioe); | ||
759 | } | ||
760 | |||
761 | qla2x00_flip_colors(ha, &led_color); | ||
762 | |||
763 | /* Clear out any previously set LED color. */ | ||
764 | gpio_data &= ~GPIO_LED_MASK; | ||
765 | |||
766 | /* Set the new input LED color to GPIOD. */ | ||
767 | gpio_data |= led_color; | ||
768 | |||
769 | /* Set the modified gpio_data values */ | ||
770 | if (ha->pio_address) { | ||
771 | WRT_REG_WORD_PIO(®->gpiod, gpio_data); | ||
772 | } else { | ||
773 | WRT_REG_WORD(®->gpiod, gpio_data); | ||
774 | RD_REG_WORD(®->gpiod); | ||
775 | } | ||
776 | |||
777 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | ||
778 | } | ||
779 | |||
780 | int | ||
781 | qla2x00_beacon_on(struct scsi_qla_host *ha) | ||
782 | { | ||
783 | uint16_t gpio_enable; | ||
784 | uint16_t gpio_data; | ||
785 | unsigned long flags; | ||
786 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; | ||
787 | |||
788 | ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING; | ||
789 | ha->fw_options[1] |= FO1_DISABLE_GPIO6_7; | ||
790 | |||
791 | if (qla2x00_set_fw_options(ha, ha->fw_options) != QLA_SUCCESS) { | ||
792 | qla_printk(KERN_WARNING, ha, | ||
793 | "Unable to update fw options (beacon on).\n"); | ||
794 | return QLA_FUNCTION_FAILED; | ||
795 | } | ||
796 | |||
797 | if (ha->pio_address) | ||
798 | reg = (struct device_reg_2xxx __iomem *)ha->pio_address; | ||
799 | |||
800 | /* Turn off LEDs. */ | ||
801 | spin_lock_irqsave(&ha->hardware_lock, flags); | ||
802 | if (ha->pio_address) { | ||
803 | gpio_enable = RD_REG_WORD_PIO(®->gpioe); | ||
804 | gpio_data = RD_REG_WORD_PIO(®->gpiod); | ||
805 | } else { | ||
806 | gpio_enable = RD_REG_WORD(®->gpioe); | ||
807 | gpio_data = RD_REG_WORD(®->gpiod); | ||
808 | } | ||
809 | gpio_enable |= GPIO_LED_MASK; | ||
810 | |||
811 | /* Set the modified gpio_enable values. */ | ||
812 | if (ha->pio_address) { | ||
813 | WRT_REG_WORD_PIO(®->gpioe, gpio_enable); | ||
814 | } else { | ||
815 | WRT_REG_WORD(®->gpioe, gpio_enable); | ||
816 | RD_REG_WORD(®->gpioe); | ||
817 | } | ||
818 | |||
819 | /* Clear out previously set LED colour. */ | ||
820 | gpio_data &= ~GPIO_LED_MASK; | ||
821 | if (ha->pio_address) { | ||
822 | WRT_REG_WORD_PIO(®->gpiod, gpio_data); | ||
823 | } else { | ||
824 | WRT_REG_WORD(®->gpiod, gpio_data); | ||
825 | RD_REG_WORD(®->gpiod); | ||
826 | } | ||
827 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | ||
828 | |||
829 | /* | ||
830 | * Let the per HBA timer kick off the blinking process based on | ||
831 | * the following flags. No need to do anything else now. | ||
832 | */ | ||
833 | ha->beacon_blink_led = 1; | ||
834 | ha->beacon_color_state = 0; | ||
835 | |||
836 | return QLA_SUCCESS; | ||
837 | } | ||
838 | |||
839 | int | ||
840 | qla2x00_beacon_off(struct scsi_qla_host *ha) | ||
841 | { | ||
842 | int rval = QLA_SUCCESS; | ||
843 | |||
844 | ha->beacon_blink_led = 0; | ||
845 | |||
846 | /* Set the on flag so when it gets flipped it will be off. */ | ||
847 | if (IS_QLA2322(ha)) | ||
848 | ha->beacon_color_state = QLA_LED_ALL_ON; | ||
849 | else | ||
850 | ha->beacon_color_state = QLA_LED_GRN_ON; | ||
851 | |||
852 | ha->isp_ops.beacon_blink(ha); /* This turns green LED off */ | ||
853 | |||
854 | ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING; | ||
855 | ha->fw_options[1] &= ~FO1_DISABLE_GPIO6_7; | ||
856 | |||
857 | rval = qla2x00_set_fw_options(ha, ha->fw_options); | ||
858 | if (rval != QLA_SUCCESS) | ||
859 | qla_printk(KERN_WARNING, ha, | ||
860 | "Unable to update fw options (beacon off).\n"); | ||
861 | return rval; | ||
862 | } | ||
863 | |||
864 | |||
865 | static inline void | ||
866 | qla24xx_flip_colors(scsi_qla_host_t *ha, uint16_t *pflags) | ||
867 | { | ||
868 | /* Flip all colors. */ | ||
869 | if (ha->beacon_color_state == QLA_LED_ALL_ON) { | ||
870 | /* Turn off. */ | ||
871 | ha->beacon_color_state = 0; | ||
872 | *pflags = 0; | ||
873 | } else { | ||
874 | /* Turn on. */ | ||
875 | ha->beacon_color_state = QLA_LED_ALL_ON; | ||
876 | *pflags = GPDX_LED_YELLOW_ON | GPDX_LED_AMBER_ON; | ||
877 | } | ||
878 | } | ||
879 | |||
880 | void | ||
881 | qla24xx_beacon_blink(struct scsi_qla_host *ha) | ||
882 | { | ||
883 | uint16_t led_color = 0; | ||
884 | uint32_t gpio_data; | ||
885 | unsigned long flags; | ||
886 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; | ||
887 | |||
888 | /* Save the Original GPIOD. */ | ||
889 | spin_lock_irqsave(&ha->hardware_lock, flags); | ||
890 | gpio_data = RD_REG_DWORD(®->gpiod); | ||
891 | |||
892 | /* Enable the gpio_data reg for update. */ | ||
893 | gpio_data |= GPDX_LED_UPDATE_MASK; | ||
894 | |||
895 | WRT_REG_DWORD(®->gpiod, gpio_data); | ||
896 | gpio_data = RD_REG_DWORD(®->gpiod); | ||
897 | |||
898 | /* Set the color bits. */ | ||
899 | qla24xx_flip_colors(ha, &led_color); | ||
900 | |||
901 | /* Clear out any previously set LED color. */ | ||
902 | gpio_data &= ~GPDX_LED_COLOR_MASK; | ||
903 | |||
904 | /* Set the new input LED color to GPIOD. */ | ||
905 | gpio_data |= led_color; | ||
906 | |||
907 | /* Set the modified gpio_data values. */ | ||
908 | WRT_REG_DWORD(®->gpiod, gpio_data); | ||
909 | gpio_data = RD_REG_DWORD(®->gpiod); | ||
910 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | ||
911 | } | ||
912 | |||
913 | int | ||
914 | qla24xx_beacon_on(struct scsi_qla_host *ha) | ||
915 | { | ||
916 | uint32_t gpio_data; | ||
917 | unsigned long flags; | ||
918 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; | ||
919 | |||
920 | if (ha->beacon_blink_led == 0) { | ||
921 | /* Enable firmware for update */ | ||
922 | ha->fw_options[1] |= ADD_FO1_DISABLE_GPIO_LED_CTRL; | ||
923 | |||
924 | if (qla2x00_set_fw_options(ha, ha->fw_options) != QLA_SUCCESS) | ||
925 | return QLA_FUNCTION_FAILED; | ||
926 | |||
927 | if (qla2x00_get_fw_options(ha, ha->fw_options) != | ||
928 | QLA_SUCCESS) { | ||
929 | qla_printk(KERN_WARNING, ha, | ||
930 | "Unable to update fw options (beacon on).\n"); | ||
931 | return QLA_FUNCTION_FAILED; | ||
932 | } | ||
933 | |||
934 | spin_lock_irqsave(&ha->hardware_lock, flags); | ||
935 | gpio_data = RD_REG_DWORD(®->gpiod); | ||
936 | |||
937 | /* Enable the gpio_data reg for update. */ | ||
938 | gpio_data |= GPDX_LED_UPDATE_MASK; | ||
939 | WRT_REG_DWORD(®->gpiod, gpio_data); | ||
940 | RD_REG_DWORD(®->gpiod); | ||
941 | |||
942 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | ||
943 | } | ||
944 | |||
945 | /* So all colors blink together. */ | ||
946 | ha->beacon_color_state = 0; | ||
947 | |||
948 | /* Let the per HBA timer kick off the blinking process. */ | ||
949 | ha->beacon_blink_led = 1; | ||
950 | |||
951 | return QLA_SUCCESS; | ||
952 | } | ||
953 | |||
954 | int | ||
955 | qla24xx_beacon_off(struct scsi_qla_host *ha) | ||
956 | { | ||
957 | uint32_t gpio_data; | ||
958 | unsigned long flags; | ||
959 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; | ||
960 | |||
961 | ha->beacon_blink_led = 0; | ||
962 | ha->beacon_color_state = QLA_LED_ALL_ON; | ||
963 | |||
964 | ha->isp_ops.beacon_blink(ha); /* Will flip to all off. */ | ||
965 | |||
966 | /* Give control back to firmware. */ | ||
967 | spin_lock_irqsave(&ha->hardware_lock, flags); | ||
968 | gpio_data = RD_REG_DWORD(®->gpiod); | ||
969 | |||
970 | /* Disable the gpio_data reg for update. */ | ||
971 | gpio_data &= ~GPDX_LED_UPDATE_MASK; | ||
972 | WRT_REG_DWORD(®->gpiod, gpio_data); | ||
973 | RD_REG_DWORD(®->gpiod); | ||
974 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | ||
975 | |||
976 | ha->fw_options[1] &= ~ADD_FO1_DISABLE_GPIO_LED_CTRL; | ||
977 | |||
978 | if (qla2x00_set_fw_options(ha, ha->fw_options) != QLA_SUCCESS) { | ||
979 | qla_printk(KERN_WARNING, ha, | ||
980 | "Unable to update fw options (beacon off).\n"); | ||
981 | return QLA_FUNCTION_FAILED; | ||
982 | } | ||
983 | |||
984 | if (qla2x00_get_fw_options(ha, ha->fw_options) != QLA_SUCCESS) { | ||
985 | qla_printk(KERN_WARNING, ha, | ||
986 | "Unable to get fw options (beacon off).\n"); | ||
987 | return QLA_FUNCTION_FAILED; | ||
988 | } | ||
989 | |||
990 | return QLA_SUCCESS; | ||
991 | } | ||
992 | |||
993 | |||
994 | /* | ||
995 | * Flash support routines | ||
996 | */ | ||
997 | |||
998 | /** | ||
999 | * qla2x00_flash_enable() - Setup flash for reading and writing. | ||
1000 | * @ha: HA context | ||
1001 | */ | ||
1002 | static void | ||
1003 | qla2x00_flash_enable(scsi_qla_host_t *ha) | ||
1004 | { | ||
1005 | uint16_t data; | ||
1006 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; | ||
1007 | |||
1008 | data = RD_REG_WORD(®->ctrl_status); | ||
1009 | data |= CSR_FLASH_ENABLE; | ||
1010 | WRT_REG_WORD(®->ctrl_status, data); | ||
1011 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1012 | } | ||
1013 | |||
1014 | /** | ||
1015 | * qla2x00_flash_disable() - Disable flash and allow RISC to run. | ||
1016 | * @ha: HA context | ||
1017 | */ | ||
1018 | static void | ||
1019 | qla2x00_flash_disable(scsi_qla_host_t *ha) | ||
1020 | { | ||
1021 | uint16_t data; | ||
1022 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; | ||
1023 | |||
1024 | data = RD_REG_WORD(®->ctrl_status); | ||
1025 | data &= ~(CSR_FLASH_ENABLE); | ||
1026 | WRT_REG_WORD(®->ctrl_status, data); | ||
1027 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1028 | } | ||
1029 | |||
1030 | /** | ||
1031 | * qla2x00_read_flash_byte() - Reads a byte from flash | ||
1032 | * @ha: HA context | ||
1033 | * @addr: Address in flash to read | ||
1034 | * | ||
1035 | * A word is read from the chip, but, only the lower byte is valid. | ||
1036 | * | ||
1037 | * Returns the byte read from flash @addr. | ||
1038 | */ | ||
1039 | static uint8_t | ||
1040 | qla2x00_read_flash_byte(scsi_qla_host_t *ha, uint32_t addr) | ||
1041 | { | ||
1042 | uint16_t data; | ||
1043 | uint16_t bank_select; | ||
1044 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; | ||
1045 | |||
1046 | bank_select = RD_REG_WORD(®->ctrl_status); | ||
1047 | |||
1048 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) { | ||
1049 | /* Specify 64K address range: */ | ||
1050 | /* clear out Module Select and Flash Address bits [19:16]. */ | ||
1051 | bank_select &= ~0xf8; | ||
1052 | bank_select |= addr >> 12 & 0xf0; | ||
1053 | bank_select |= CSR_FLASH_64K_BANK; | ||
1054 | WRT_REG_WORD(®->ctrl_status, bank_select); | ||
1055 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1056 | |||
1057 | WRT_REG_WORD(®->flash_address, (uint16_t)addr); | ||
1058 | data = RD_REG_WORD(®->flash_data); | ||
1059 | |||
1060 | return (uint8_t)data; | ||
1061 | } | ||
1062 | |||
1063 | /* Setup bit 16 of flash address. */ | ||
1064 | if ((addr & BIT_16) && ((bank_select & CSR_FLASH_64K_BANK) == 0)) { | ||
1065 | bank_select |= CSR_FLASH_64K_BANK; | ||
1066 | WRT_REG_WORD(®->ctrl_status, bank_select); | ||
1067 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1068 | } else if (((addr & BIT_16) == 0) && | ||
1069 | (bank_select & CSR_FLASH_64K_BANK)) { | ||
1070 | bank_select &= ~(CSR_FLASH_64K_BANK); | ||
1071 | WRT_REG_WORD(®->ctrl_status, bank_select); | ||
1072 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1073 | } | ||
1074 | |||
1075 | /* Always perform IO mapped accesses to the FLASH registers. */ | ||
1076 | if (ha->pio_address) { | ||
1077 | uint16_t data2; | ||
1078 | |||
1079 | reg = (struct device_reg_2xxx __iomem *)ha->pio_address; | ||
1080 | WRT_REG_WORD_PIO(®->flash_address, (uint16_t)addr); | ||
1081 | do { | ||
1082 | data = RD_REG_WORD_PIO(®->flash_data); | ||
1083 | barrier(); | ||
1084 | cpu_relax(); | ||
1085 | data2 = RD_REG_WORD_PIO(®->flash_data); | ||
1086 | } while (data != data2); | ||
1087 | } else { | ||
1088 | WRT_REG_WORD(®->flash_address, (uint16_t)addr); | ||
1089 | data = qla2x00_debounce_register(®->flash_data); | ||
1090 | } | ||
1091 | |||
1092 | return (uint8_t)data; | ||
1093 | } | ||
1094 | |||
1095 | /** | ||
1096 | * qla2x00_write_flash_byte() - Write a byte to flash | ||
1097 | * @ha: HA context | ||
1098 | * @addr: Address in flash to write | ||
1099 | * @data: Data to write | ||
1100 | */ | ||
1101 | static void | ||
1102 | qla2x00_write_flash_byte(scsi_qla_host_t *ha, uint32_t addr, uint8_t data) | ||
1103 | { | ||
1104 | uint16_t bank_select; | ||
1105 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; | ||
1106 | |||
1107 | bank_select = RD_REG_WORD(®->ctrl_status); | ||
1108 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) { | ||
1109 | /* Specify 64K address range: */ | ||
1110 | /* clear out Module Select and Flash Address bits [19:16]. */ | ||
1111 | bank_select &= ~0xf8; | ||
1112 | bank_select |= addr >> 12 & 0xf0; | ||
1113 | bank_select |= CSR_FLASH_64K_BANK; | ||
1114 | WRT_REG_WORD(®->ctrl_status, bank_select); | ||
1115 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1116 | |||
1117 | WRT_REG_WORD(®->flash_address, (uint16_t)addr); | ||
1118 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1119 | WRT_REG_WORD(®->flash_data, (uint16_t)data); | ||
1120 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1121 | |||
1122 | return; | ||
1123 | } | ||
1124 | |||
1125 | /* Setup bit 16 of flash address. */ | ||
1126 | if ((addr & BIT_16) && ((bank_select & CSR_FLASH_64K_BANK) == 0)) { | ||
1127 | bank_select |= CSR_FLASH_64K_BANK; | ||
1128 | WRT_REG_WORD(®->ctrl_status, bank_select); | ||
1129 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1130 | } else if (((addr & BIT_16) == 0) && | ||
1131 | (bank_select & CSR_FLASH_64K_BANK)) { | ||
1132 | bank_select &= ~(CSR_FLASH_64K_BANK); | ||
1133 | WRT_REG_WORD(®->ctrl_status, bank_select); | ||
1134 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1135 | } | ||
1136 | |||
1137 | /* Always perform IO mapped accesses to the FLASH registers. */ | ||
1138 | if (ha->pio_address) { | ||
1139 | reg = (struct device_reg_2xxx __iomem *)ha->pio_address; | ||
1140 | WRT_REG_WORD_PIO(®->flash_address, (uint16_t)addr); | ||
1141 | WRT_REG_WORD_PIO(®->flash_data, (uint16_t)data); | ||
1142 | } else { | ||
1143 | WRT_REG_WORD(®->flash_address, (uint16_t)addr); | ||
1144 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1145 | WRT_REG_WORD(®->flash_data, (uint16_t)data); | ||
1146 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ | ||
1147 | } | ||
1148 | } | ||
1149 | |||
1150 | /** | ||
1151 | * qla2x00_poll_flash() - Polls flash for completion. | ||
1152 | * @ha: HA context | ||
1153 | * @addr: Address in flash to poll | ||
1154 | * @poll_data: Data to be polled | ||
1155 | * @man_id: Flash manufacturer ID | ||
1156 | * @flash_id: Flash ID | ||
1157 | * | ||
1158 | * This function polls the device until bit 7 of what is read matches data | ||
1159 | * bit 7 or until data bit 5 becomes a 1. If that hapens, the flash ROM timed | ||
1160 | * out (a fatal error). The flash book recommeds reading bit 7 again after | ||
1161 | * reading bit 5 as a 1. | ||
1162 | * | ||
1163 | * Returns 0 on success, else non-zero. | ||
1164 | */ | ||
1165 | static int | ||
1166 | qla2x00_poll_flash(scsi_qla_host_t *ha, uint32_t addr, uint8_t poll_data, | ||
1167 | uint8_t man_id, uint8_t flash_id) | ||
1168 | { | ||
1169 | int status; | ||
1170 | uint8_t flash_data; | ||
1171 | uint32_t cnt; | ||
1172 | |||
1173 | status = 1; | ||
1174 | |||
1175 | /* Wait for 30 seconds for command to finish. */ | ||
1176 | poll_data &= BIT_7; | ||
1177 | for (cnt = 3000000; cnt; cnt--) { | ||
1178 | flash_data = qla2x00_read_flash_byte(ha, addr); | ||
1179 | if ((flash_data & BIT_7) == poll_data) { | ||
1180 | status = 0; | ||
1181 | break; | ||
1182 | } | ||
1183 | |||
1184 | if (man_id != 0x40 && man_id != 0xda) { | ||
1185 | if ((flash_data & BIT_5) && cnt > 2) | ||
1186 | cnt = 2; | ||
1187 | } | ||
1188 | udelay(10); | ||
1189 | barrier(); | ||
1190 | } | ||
1191 | return status; | ||
1192 | } | ||
1193 | |||
1194 | #define IS_OEM_001(ha) \ | ||
1195 | ((ha)->pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2322 && \ | ||
1196 | (ha)->pdev->subsystem_vendor == 0x1028 && \ | ||
1197 | (ha)->pdev->subsystem_device == 0x0170) | ||
1198 | |||
1199 | /** | ||
1200 | * qla2x00_program_flash_address() - Programs a flash address | ||
1201 | * @ha: HA context | ||
1202 | * @addr: Address in flash to program | ||
1203 | * @data: Data to be written in flash | ||
1204 | * @man_id: Flash manufacturer ID | ||
1205 | * @flash_id: Flash ID | ||
1206 | * | ||
1207 | * Returns 0 on success, else non-zero. | ||
1208 | */ | ||
1209 | static int | ||
1210 | qla2x00_program_flash_address(scsi_qla_host_t *ha, uint32_t addr, uint8_t data, | ||
1211 | uint8_t man_id, uint8_t flash_id) | ||
1212 | { | ||
1213 | /* Write Program Command Sequence. */ | ||
1214 | if (IS_OEM_001(ha)) { | ||
1215 | qla2x00_write_flash_byte(ha, 0xaaa, 0xaa); | ||
1216 | qla2x00_write_flash_byte(ha, 0x555, 0x55); | ||
1217 | qla2x00_write_flash_byte(ha, 0xaaa, 0xa0); | ||
1218 | qla2x00_write_flash_byte(ha, addr, data); | ||
1219 | } else { | ||
1220 | if (man_id == 0xda && flash_id == 0xc1) { | ||
1221 | qla2x00_write_flash_byte(ha, addr, data); | ||
1222 | if (addr & 0x7e) | ||
1223 | return 0; | ||
1224 | } else { | ||
1225 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); | ||
1226 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); | ||
1227 | qla2x00_write_flash_byte(ha, 0x5555, 0xa0); | ||
1228 | qla2x00_write_flash_byte(ha, addr, data); | ||
1229 | } | ||
1230 | } | ||
1231 | |||
1232 | udelay(150); | ||
1233 | |||
1234 | /* Wait for write to complete. */ | ||
1235 | return qla2x00_poll_flash(ha, addr, data, man_id, flash_id); | ||
1236 | } | ||
1237 | |||
1238 | /** | ||
1239 | * qla2x00_erase_flash() - Erase the flash. | ||
1240 | * @ha: HA context | ||
1241 | * @man_id: Flash manufacturer ID | ||
1242 | * @flash_id: Flash ID | ||
1243 | * | ||
1244 | * Returns 0 on success, else non-zero. | ||
1245 | */ | ||
1246 | static int | ||
1247 | qla2x00_erase_flash(scsi_qla_host_t *ha, uint8_t man_id, uint8_t flash_id) | ||
1248 | { | ||
1249 | /* Individual Sector Erase Command Sequence */ | ||
1250 | if (IS_OEM_001(ha)) { | ||
1251 | qla2x00_write_flash_byte(ha, 0xaaa, 0xaa); | ||
1252 | qla2x00_write_flash_byte(ha, 0x555, 0x55); | ||
1253 | qla2x00_write_flash_byte(ha, 0xaaa, 0x80); | ||
1254 | qla2x00_write_flash_byte(ha, 0xaaa, 0xaa); | ||
1255 | qla2x00_write_flash_byte(ha, 0x555, 0x55); | ||
1256 | qla2x00_write_flash_byte(ha, 0xaaa, 0x10); | ||
1257 | } else { | ||
1258 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); | ||
1259 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); | ||
1260 | qla2x00_write_flash_byte(ha, 0x5555, 0x80); | ||
1261 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); | ||
1262 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); | ||
1263 | qla2x00_write_flash_byte(ha, 0x5555, 0x10); | ||
1264 | } | ||
1265 | |||
1266 | udelay(150); | ||
1267 | |||
1268 | /* Wait for erase to complete. */ | ||
1269 | return qla2x00_poll_flash(ha, 0x00, 0x80, man_id, flash_id); | ||
1270 | } | ||
1271 | |||
1272 | /** | ||
1273 | * qla2x00_erase_flash_sector() - Erase a flash sector. | ||
1274 | * @ha: HA context | ||
1275 | * @addr: Flash sector to erase | ||
1276 | * @sec_mask: Sector address mask | ||
1277 | * @man_id: Flash manufacturer ID | ||
1278 | * @flash_id: Flash ID | ||
1279 | * | ||
1280 | * Returns 0 on success, else non-zero. | ||
1281 | */ | ||
1282 | static int | ||
1283 | qla2x00_erase_flash_sector(scsi_qla_host_t *ha, uint32_t addr, | ||
1284 | uint32_t sec_mask, uint8_t man_id, uint8_t flash_id) | ||
1285 | { | ||
1286 | /* Individual Sector Erase Command Sequence */ | ||
1287 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); | ||
1288 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); | ||
1289 | qla2x00_write_flash_byte(ha, 0x5555, 0x80); | ||
1290 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); | ||
1291 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); | ||
1292 | if (man_id == 0x1f && flash_id == 0x13) | ||
1293 | qla2x00_write_flash_byte(ha, addr & sec_mask, 0x10); | ||
1294 | else | ||
1295 | qla2x00_write_flash_byte(ha, addr & sec_mask, 0x30); | ||
1296 | |||
1297 | udelay(150); | ||
1298 | |||
1299 | /* Wait for erase to complete. */ | ||
1300 | return qla2x00_poll_flash(ha, addr, 0x80, man_id, flash_id); | ||
1301 | } | ||
1302 | |||
1303 | /** | ||
1304 | * qla2x00_get_flash_manufacturer() - Read manufacturer ID from flash chip. | ||
1305 | * @man_id: Flash manufacturer ID | ||
1306 | * @flash_id: Flash ID | ||
1307 | */ | ||
1308 | static void | ||
1309 | qla2x00_get_flash_manufacturer(scsi_qla_host_t *ha, uint8_t *man_id, | ||
1310 | uint8_t *flash_id) | ||
1311 | { | ||
1312 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); | ||
1313 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); | ||
1314 | qla2x00_write_flash_byte(ha, 0x5555, 0x90); | ||
1315 | *man_id = qla2x00_read_flash_byte(ha, 0x0000); | ||
1316 | *flash_id = qla2x00_read_flash_byte(ha, 0x0001); | ||
1317 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); | ||
1318 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); | ||
1319 | qla2x00_write_flash_byte(ha, 0x5555, 0xf0); | ||
1320 | } | ||
1321 | |||
1322 | |||
1323 | static inline void | ||
1324 | qla2x00_suspend_hba(struct scsi_qla_host *ha) | ||
1325 | { | ||
1326 | int cnt; | ||
1327 | unsigned long flags; | ||
1328 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; | ||
1329 | |||
1330 | /* Suspend HBA. */ | ||
1331 | scsi_block_requests(ha->host); | ||
1332 | ha->isp_ops.disable_intrs(ha); | ||
1333 | set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); | ||
1334 | |||
1335 | /* Pause RISC. */ | ||
1336 | spin_lock_irqsave(&ha->hardware_lock, flags); | ||
1337 | WRT_REG_WORD(®->hccr, HCCR_PAUSE_RISC); | ||
1338 | RD_REG_WORD(®->hccr); | ||
1339 | if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) { | ||
1340 | for (cnt = 0; cnt < 30000; cnt++) { | ||
1341 | if ((RD_REG_WORD(®->hccr) & HCCR_RISC_PAUSE) != 0) | ||
1342 | break; | ||
1343 | udelay(100); | ||
1344 | } | ||
1345 | } else { | ||
1346 | udelay(10); | ||
1347 | } | ||
1348 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | ||
1349 | } | ||
1350 | |||
1351 | static inline void | ||
1352 | qla2x00_resume_hba(struct scsi_qla_host *ha) | ||
1353 | { | ||
1354 | /* Resume HBA. */ | ||
1355 | clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); | ||
1356 | set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags); | ||
1357 | up(ha->dpc_wait); | ||
1358 | qla2x00_wait_for_hba_online(ha); | ||
1359 | scsi_unblock_requests(ha->host); | ||
1360 | } | ||
1361 | |||
1362 | uint8_t * | ||
1363 | qla2x00_read_optrom_data(struct scsi_qla_host *ha, uint8_t *buf, | ||
1364 | uint32_t offset, uint32_t length) | ||
1365 | { | ||
1366 | unsigned long flags; | ||
1367 | uint32_t addr, midpoint; | ||
1368 | uint8_t *data; | ||
1369 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; | ||
1370 | |||
1371 | /* Suspend HBA. */ | ||
1372 | qla2x00_suspend_hba(ha); | ||
1373 | |||
1374 | /* Go with read. */ | ||
1375 | spin_lock_irqsave(&ha->hardware_lock, flags); | ||
1376 | midpoint = ha->optrom_size / 2; | ||
1377 | |||
1378 | qla2x00_flash_enable(ha); | ||
1379 | WRT_REG_WORD(®->nvram, 0); | ||
1380 | RD_REG_WORD(®->nvram); /* PCI Posting. */ | ||
1381 | for (addr = offset, data = buf; addr < length; addr++, data++) { | ||
1382 | if (addr == midpoint) { | ||
1383 | WRT_REG_WORD(®->nvram, NVR_SELECT); | ||
1384 | RD_REG_WORD(®->nvram); /* PCI Posting. */ | ||
1385 | } | ||
1386 | |||
1387 | *data = qla2x00_read_flash_byte(ha, addr); | ||
1388 | } | ||
1389 | qla2x00_flash_disable(ha); | ||
1390 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | ||
1391 | |||
1392 | /* Resume HBA. */ | ||
1393 | qla2x00_resume_hba(ha); | ||
1394 | |||
1395 | return buf; | ||
1396 | } | ||
1397 | |||
1398 | int | ||
1399 | qla2x00_write_optrom_data(struct scsi_qla_host *ha, uint8_t *buf, | ||
1400 | uint32_t offset, uint32_t length) | ||
1401 | { | ||
1402 | |||
1403 | int rval; | ||
1404 | unsigned long flags; | ||
1405 | uint8_t man_id, flash_id, sec_number, data; | ||
1406 | uint16_t wd; | ||
1407 | uint32_t addr, liter, sec_mask, rest_addr; | ||
1408 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; | ||
1409 | |||
1410 | /* Suspend HBA. */ | ||
1411 | qla2x00_suspend_hba(ha); | ||
1412 | |||
1413 | rval = QLA_SUCCESS; | ||
1414 | sec_number = 0; | ||
1415 | |||
1416 | /* Reset ISP chip. */ | ||
1417 | spin_lock_irqsave(&ha->hardware_lock, flags); | ||
1418 | WRT_REG_WORD(®->ctrl_status, CSR_ISP_SOFT_RESET); | ||
1419 | pci_read_config_word(ha->pdev, PCI_COMMAND, &wd); | ||
1420 | |||
1421 | /* Go with write. */ | ||
1422 | qla2x00_flash_enable(ha); | ||
1423 | do { /* Loop once to provide quick error exit */ | ||
1424 | /* Structure of flash memory based on manufacturer */ | ||
1425 | if (IS_OEM_001(ha)) { | ||
1426 | /* OEM variant with special flash part. */ | ||
1427 | man_id = flash_id = 0; | ||
1428 | rest_addr = 0xffff; | ||
1429 | sec_mask = 0x10000; | ||
1430 | goto update_flash; | ||
1431 | } | ||
1432 | qla2x00_get_flash_manufacturer(ha, &man_id, &flash_id); | ||
1433 | switch (man_id) { | ||
1434 | case 0x20: /* ST flash. */ | ||
1435 | if (flash_id == 0xd2 || flash_id == 0xe3) { | ||
1436 | /* | ||
1437 | * ST m29w008at part - 64kb sector size with | ||
1438 | * 32kb,8kb,8kb,16kb sectors at memory address | ||
1439 | * 0xf0000. | ||
1440 | */ | ||
1441 | rest_addr = 0xffff; | ||
1442 | sec_mask = 0x10000; | ||
1443 | break; | ||
1444 | } | ||
1445 | /* | ||
1446 | * ST m29w010b part - 16kb sector size | ||
1447 | * Default to 16kb sectors | ||
1448 | */ | ||
1449 | rest_addr = 0x3fff; | ||
1450 | sec_mask = 0x1c000; | ||
1451 | break; | ||
1452 | case 0x40: /* Mostel flash. */ | ||
1453 | /* Mostel v29c51001 part - 512 byte sector size. */ | ||
1454 | rest_addr = 0x1ff; | ||
1455 | sec_mask = 0x1fe00; | ||
1456 | break; | ||
1457 | case 0xbf: /* SST flash. */ | ||
1458 | /* SST39sf10 part - 4kb sector size. */ | ||
1459 | rest_addr = 0xfff; | ||
1460 | sec_mask = 0x1f000; | ||
1461 | break; | ||
1462 | case 0xda: /* Winbond flash. */ | ||
1463 | /* Winbond W29EE011 part - 256 byte sector size. */ | ||
1464 | rest_addr = 0x7f; | ||
1465 | sec_mask = 0x1ff80; | ||
1466 | break; | ||
1467 | case 0xc2: /* Macronix flash. */ | ||
1468 | /* 64k sector size. */ | ||
1469 | if (flash_id == 0x38 || flash_id == 0x4f) { | ||
1470 | rest_addr = 0xffff; | ||
1471 | sec_mask = 0x10000; | ||
1472 | break; | ||
1473 | } | ||
1474 | /* Fall through... */ | ||
1475 | |||
1476 | case 0x1f: /* Atmel flash. */ | ||
1477 | /* 512k sector size. */ | ||
1478 | if (flash_id == 0x13) { | ||
1479 | rest_addr = 0x7fffffff; | ||
1480 | sec_mask = 0x80000000; | ||
1481 | break; | ||
1482 | } | ||
1483 | /* Fall through... */ | ||
1484 | |||
1485 | case 0x01: /* AMD flash. */ | ||
1486 | if (flash_id == 0x38 || flash_id == 0x40 || | ||
1487 | flash_id == 0x4f) { | ||
1488 | /* Am29LV081 part - 64kb sector size. */ | ||
1489 | /* Am29LV002BT part - 64kb sector size. */ | ||
1490 | rest_addr = 0xffff; | ||
1491 | sec_mask = 0x10000; | ||
1492 | break; | ||
1493 | } else if (flash_id == 0x3e) { | ||
1494 | /* | ||
1495 | * Am29LV008b part - 64kb sector size with | ||
1496 | * 32kb,8kb,8kb,16kb sector at memory address | ||
1497 | * h0xf0000. | ||
1498 | */ | ||
1499 | rest_addr = 0xffff; | ||
1500 | sec_mask = 0x10000; | ||
1501 | break; | ||
1502 | } else if (flash_id == 0x20 || flash_id == 0x6e) { | ||
1503 | /* | ||
1504 | * Am29LV010 part or AM29f010 - 16kb sector | ||
1505 | * size. | ||
1506 | */ | ||
1507 | rest_addr = 0x3fff; | ||
1508 | sec_mask = 0x1c000; | ||
1509 | break; | ||
1510 | } else if (flash_id == 0x6d) { | ||
1511 | /* Am29LV001 part - 8kb sector size. */ | ||
1512 | rest_addr = 0x1fff; | ||
1513 | sec_mask = 0x1e000; | ||
1514 | break; | ||
1515 | } | ||
1516 | default: | ||
1517 | /* Default to 16 kb sector size. */ | ||
1518 | rest_addr = 0x3fff; | ||
1519 | sec_mask = 0x1c000; | ||
1520 | break; | ||
1521 | } | ||
1522 | |||
1523 | update_flash: | ||
1524 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) { | ||
1525 | if (qla2x00_erase_flash(ha, man_id, flash_id)) { | ||
1526 | rval = QLA_FUNCTION_FAILED; | ||
1527 | break; | ||
1528 | } | ||
1529 | } | ||
1530 | |||
1531 | for (addr = offset, liter = 0; liter < length; liter++, | ||
1532 | addr++) { | ||
1533 | data = buf[liter]; | ||
1534 | /* Are we at the beginning of a sector? */ | ||
1535 | if ((addr & rest_addr) == 0) { | ||
1536 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) { | ||
1537 | if (addr >= 0x10000UL) { | ||
1538 | if (((addr >> 12) & 0xf0) && | ||
1539 | ((man_id == 0x01 && | ||
1540 | flash_id == 0x3e) || | ||
1541 | (man_id == 0x20 && | ||
1542 | flash_id == 0xd2))) { | ||
1543 | sec_number++; | ||
1544 | if (sec_number == 1) { | ||
1545 | rest_addr = | ||
1546 | 0x7fff; | ||
1547 | sec_mask = | ||
1548 | 0x18000; | ||
1549 | } else if ( | ||
1550 | sec_number == 2 || | ||
1551 | sec_number == 3) { | ||
1552 | rest_addr = | ||
1553 | 0x1fff; | ||
1554 | sec_mask = | ||
1555 | 0x1e000; | ||
1556 | } else if ( | ||
1557 | sec_number == 4) { | ||
1558 | rest_addr = | ||
1559 | 0x3fff; | ||
1560 | sec_mask = | ||
1561 | 0x1c000; | ||
1562 | } | ||
1563 | } | ||
1564 | } | ||
1565 | } else if (addr == ha->optrom_size / 2) { | ||
1566 | WRT_REG_WORD(®->nvram, NVR_SELECT); | ||
1567 | RD_REG_WORD(®->nvram); | ||
1568 | } | ||
1569 | |||
1570 | if (flash_id == 0xda && man_id == 0xc1) { | ||
1571 | qla2x00_write_flash_byte(ha, 0x5555, | ||
1572 | 0xaa); | ||
1573 | qla2x00_write_flash_byte(ha, 0x2aaa, | ||
1574 | 0x55); | ||
1575 | qla2x00_write_flash_byte(ha, 0x5555, | ||
1576 | 0xa0); | ||
1577 | } else if (!IS_QLA2322(ha) && !IS_QLA6322(ha)) { | ||
1578 | /* Then erase it */ | ||
1579 | if (qla2x00_erase_flash_sector(ha, | ||
1580 | addr, sec_mask, man_id, | ||
1581 | flash_id)) { | ||
1582 | rval = QLA_FUNCTION_FAILED; | ||
1583 | break; | ||
1584 | } | ||
1585 | if (man_id == 0x01 && flash_id == 0x6d) | ||
1586 | sec_number++; | ||
1587 | } | ||
1588 | } | ||
1589 | |||
1590 | if (man_id == 0x01 && flash_id == 0x6d) { | ||
1591 | if (sec_number == 1 && | ||
1592 | addr == (rest_addr - 1)) { | ||
1593 | rest_addr = 0x0fff; | ||
1594 | sec_mask = 0x1f000; | ||
1595 | } else if (sec_number == 3 && (addr & 0x7ffe)) { | ||
1596 | rest_addr = 0x3fff; | ||
1597 | sec_mask = 0x1c000; | ||
1598 | } | ||
1599 | } | ||
1600 | |||
1601 | if (qla2x00_program_flash_address(ha, addr, data, | ||
1602 | man_id, flash_id)) { | ||
1603 | rval = QLA_FUNCTION_FAILED; | ||
1604 | break; | ||
1605 | } | ||
1606 | } | ||
1607 | } while (0); | ||
1608 | qla2x00_flash_disable(ha); | ||
1609 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | ||
1610 | |||
1611 | /* Resume HBA. */ | ||
1612 | qla2x00_resume_hba(ha); | ||
1613 | |||
1614 | return rval; | ||
1615 | } | ||
1616 | |||
1617 | uint8_t * | ||
1618 | qla24xx_read_optrom_data(struct scsi_qla_host *ha, uint8_t *buf, | ||
1619 | uint32_t offset, uint32_t length) | ||
1620 | { | ||
1621 | /* Suspend HBA. */ | ||
1622 | scsi_block_requests(ha->host); | ||
1623 | ha->isp_ops.disable_intrs(ha); | ||
1624 | set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); | ||
1625 | |||
1626 | /* Go with read. */ | ||
1627 | qla24xx_read_flash_data(ha, (uint32_t *)buf, offset >> 2, length >> 2); | ||
1628 | |||
1629 | /* Resume HBA. */ | ||
1630 | clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); | ||
1631 | ha->isp_ops.enable_intrs(ha); | ||
1632 | scsi_unblock_requests(ha->host); | ||
1633 | |||
1634 | return buf; | ||
1635 | } | ||
1636 | |||
1637 | int | ||
1638 | qla24xx_write_optrom_data(struct scsi_qla_host *ha, uint8_t *buf, | ||
1639 | uint32_t offset, uint32_t length) | ||
1640 | { | ||
1641 | int rval; | ||
1642 | |||
1643 | /* Suspend HBA. */ | ||
1644 | scsi_block_requests(ha->host); | ||
1645 | ha->isp_ops.disable_intrs(ha); | ||
1646 | set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); | ||
1647 | |||
1648 | /* Go with write. */ | ||
1649 | rval = qla24xx_write_flash_data(ha, (uint32_t *)buf, offset >> 2, | ||
1650 | length >> 2); | ||
1651 | |||
1652 | /* Resume HBA -- RISC reset needed. */ | ||
1653 | clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); | ||
1654 | set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags); | ||
1655 | up(ha->dpc_wait); | ||
1656 | qla2x00_wait_for_hba_online(ha); | ||
1657 | scsi_unblock_requests(ha->host); | ||
1658 | |||
1659 | return rval; | ||
1660 | } | ||
diff --git a/drivers/scsi/sata_mv.c b/drivers/scsi/sata_mv.c index cd54244058b5..2770005324b4 100644 --- a/drivers/scsi/sata_mv.c +++ b/drivers/scsi/sata_mv.c | |||
@@ -510,6 +510,12 @@ static const struct mv_hw_ops mv6xxx_ops = { | |||
510 | }; | 510 | }; |
511 | 511 | ||
512 | /* | 512 | /* |
513 | * module options | ||
514 | */ | ||
515 | static int msi; /* Use PCI msi; either zero (off, default) or non-zero */ | ||
516 | |||
517 | |||
518 | /* | ||
513 | * Functions | 519 | * Functions |
514 | */ | 520 | */ |
515 | 521 | ||
@@ -991,6 +997,7 @@ static void mv_qc_prep(struct ata_queued_cmd *qc) | |||
991 | case ATA_CMD_READ_EXT: | 997 | case ATA_CMD_READ_EXT: |
992 | case ATA_CMD_WRITE: | 998 | case ATA_CMD_WRITE: |
993 | case ATA_CMD_WRITE_EXT: | 999 | case ATA_CMD_WRITE_EXT: |
1000 | case ATA_CMD_WRITE_FUA_EXT: | ||
994 | mv_crqb_pack_cmd(cw++, tf->hob_nsect, ATA_REG_NSECT, 0); | 1001 | mv_crqb_pack_cmd(cw++, tf->hob_nsect, ATA_REG_NSECT, 0); |
995 | break; | 1002 | break; |
996 | #ifdef LIBATA_NCQ /* FIXME: remove this line when NCQ added */ | 1003 | #ifdef LIBATA_NCQ /* FIXME: remove this line when NCQ added */ |
@@ -2191,7 +2198,7 @@ static int mv_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2191 | } | 2198 | } |
2192 | 2199 | ||
2193 | /* Enable interrupts */ | 2200 | /* Enable interrupts */ |
2194 | if (pci_enable_msi(pdev) == 0) { | 2201 | if (msi && pci_enable_msi(pdev) == 0) { |
2195 | hpriv->hp_flags |= MV_HP_FLAG_MSI; | 2202 | hpriv->hp_flags |= MV_HP_FLAG_MSI; |
2196 | } else { | 2203 | } else { |
2197 | pci_intx(pdev, 1); | 2204 | pci_intx(pdev, 1); |
@@ -2246,5 +2253,8 @@ MODULE_LICENSE("GPL"); | |||
2246 | MODULE_DEVICE_TABLE(pci, mv_pci_tbl); | 2253 | MODULE_DEVICE_TABLE(pci, mv_pci_tbl); |
2247 | MODULE_VERSION(DRV_VERSION); | 2254 | MODULE_VERSION(DRV_VERSION); |
2248 | 2255 | ||
2256 | module_param(msi, int, 0444); | ||
2257 | MODULE_PARM_DESC(msi, "Enable use of PCI MSI (0=off, 1=on)"); | ||
2258 | |||
2249 | module_init(mv_init); | 2259 | module_init(mv_init); |
2250 | module_exit(mv_exit); | 2260 | module_exit(mv_exit); |
diff --git a/drivers/scsi/sata_qstor.c b/drivers/scsi/sata_qstor.c index de05e2883f9c..80480f0fb2b8 100644 --- a/drivers/scsi/sata_qstor.c +++ b/drivers/scsi/sata_qstor.c | |||
@@ -277,7 +277,7 @@ static unsigned int qs_fill_sg(struct ata_queued_cmd *qc) | |||
277 | u8 *prd = pp->pkt + QS_CPB_BYTES; | 277 | u8 *prd = pp->pkt + QS_CPB_BYTES; |
278 | 278 | ||
279 | assert(qc->__sg != NULL); | 279 | assert(qc->__sg != NULL); |
280 | assert(qc->n_elem > 0); | 280 | assert(qc->n_elem > 0 || qc->pad_len > 0); |
281 | 281 | ||
282 | nelem = 0; | 282 | nelem = 0; |
283 | ata_for_each_sg(sg, qc) { | 283 | ata_for_each_sg(sg, qc) { |
diff --git a/drivers/scsi/sata_sil.c b/drivers/scsi/sata_sil.c index b017f85e6d6a..9face3c6aa21 100644 --- a/drivers/scsi/sata_sil.c +++ b/drivers/scsi/sata_sil.c | |||
@@ -49,11 +49,13 @@ | |||
49 | #define DRV_VERSION "0.9" | 49 | #define DRV_VERSION "0.9" |
50 | 50 | ||
51 | enum { | 51 | enum { |
52 | SIL_FLAG_RERR_ON_DMA_ACT = (1 << 29), | ||
52 | SIL_FLAG_MOD15WRITE = (1 << 30), | 53 | SIL_FLAG_MOD15WRITE = (1 << 30), |
53 | 54 | ||
54 | sil_3112 = 0, | 55 | sil_3112 = 0, |
55 | sil_3112_m15w = 1, | 56 | sil_3112_m15w = 1, |
56 | sil_3114 = 2, | 57 | sil_3512 = 2, |
58 | sil_3114 = 3, | ||
57 | 59 | ||
58 | SIL_FIFO_R0 = 0x40, | 60 | SIL_FIFO_R0 = 0x40, |
59 | SIL_FIFO_W0 = 0x41, | 61 | SIL_FIFO_W0 = 0x41, |
@@ -90,7 +92,7 @@ static void sil_post_set_mode (struct ata_port *ap); | |||
90 | static const struct pci_device_id sil_pci_tbl[] = { | 92 | static const struct pci_device_id sil_pci_tbl[] = { |
91 | { 0x1095, 0x3112, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112_m15w }, | 93 | { 0x1095, 0x3112, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112_m15w }, |
92 | { 0x1095, 0x0240, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112_m15w }, | 94 | { 0x1095, 0x0240, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112_m15w }, |
93 | { 0x1095, 0x3512, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112 }, | 95 | { 0x1095, 0x3512, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3512 }, |
94 | { 0x1095, 0x3114, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3114 }, | 96 | { 0x1095, 0x3114, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3114 }, |
95 | { 0x1002, 0x436e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112_m15w }, | 97 | { 0x1002, 0x436e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112_m15w }, |
96 | { 0x1002, 0x4379, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112_m15w }, | 98 | { 0x1002, 0x4379, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112_m15w }, |
@@ -185,7 +187,8 @@ static const struct ata_port_info sil_port_info[] = { | |||
185 | .mwdma_mask = 0x07, /* mwdma0-2 */ | 187 | .mwdma_mask = 0x07, /* mwdma0-2 */ |
186 | .udma_mask = 0x3f, /* udma0-5 */ | 188 | .udma_mask = 0x3f, /* udma0-5 */ |
187 | .port_ops = &sil_ops, | 189 | .port_ops = &sil_ops, |
188 | }, /* sil_3112_15w - keep it sync'd w/ sil_3112 */ | 190 | }, |
191 | /* sil_3112_15w - keep it sync'd w/ sil_3112 */ | ||
189 | { | 192 | { |
190 | .sht = &sil_sht, | 193 | .sht = &sil_sht, |
191 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | | 194 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | |
@@ -195,11 +198,24 @@ static const struct ata_port_info sil_port_info[] = { | |||
195 | .mwdma_mask = 0x07, /* mwdma0-2 */ | 198 | .mwdma_mask = 0x07, /* mwdma0-2 */ |
196 | .udma_mask = 0x3f, /* udma0-5 */ | 199 | .udma_mask = 0x3f, /* udma0-5 */ |
197 | .port_ops = &sil_ops, | 200 | .port_ops = &sil_ops, |
198 | }, /* sil_3114 */ | 201 | }, |
202 | /* sil_3512 */ | ||
199 | { | 203 | { |
200 | .sht = &sil_sht, | 204 | .sht = &sil_sht, |
201 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | | 205 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | |
202 | ATA_FLAG_SRST | ATA_FLAG_MMIO, | 206 | ATA_FLAG_SRST | ATA_FLAG_MMIO | |
207 | SIL_FLAG_RERR_ON_DMA_ACT, | ||
208 | .pio_mask = 0x1f, /* pio0-4 */ | ||
209 | .mwdma_mask = 0x07, /* mwdma0-2 */ | ||
210 | .udma_mask = 0x3f, /* udma0-5 */ | ||
211 | .port_ops = &sil_ops, | ||
212 | }, | ||
213 | /* sil_3114 */ | ||
214 | { | ||
215 | .sht = &sil_sht, | ||
216 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | | ||
217 | ATA_FLAG_SRST | ATA_FLAG_MMIO | | ||
218 | SIL_FLAG_RERR_ON_DMA_ACT, | ||
203 | .pio_mask = 0x1f, /* pio0-4 */ | 219 | .pio_mask = 0x1f, /* pio0-4 */ |
204 | .mwdma_mask = 0x07, /* mwdma0-2 */ | 220 | .mwdma_mask = 0x07, /* mwdma0-2 */ |
205 | .udma_mask = 0x3f, /* udma0-5 */ | 221 | .udma_mask = 0x3f, /* udma0-5 */ |
@@ -216,12 +232,13 @@ static const struct { | |||
216 | unsigned long scr; /* SATA control register block */ | 232 | unsigned long scr; /* SATA control register block */ |
217 | unsigned long sien; /* SATA Interrupt Enable register */ | 233 | unsigned long sien; /* SATA Interrupt Enable register */ |
218 | unsigned long xfer_mode;/* data transfer mode register */ | 234 | unsigned long xfer_mode;/* data transfer mode register */ |
235 | unsigned long sfis_cfg; /* SATA FIS reception config register */ | ||
219 | } sil_port[] = { | 236 | } sil_port[] = { |
220 | /* port 0 ... */ | 237 | /* port 0 ... */ |
221 | { 0x80, 0x8A, 0x00, 0x100, 0x148, 0xb4 }, | 238 | { 0x80, 0x8A, 0x00, 0x100, 0x148, 0xb4, 0x14c }, |
222 | { 0xC0, 0xCA, 0x08, 0x180, 0x1c8, 0xf4 }, | 239 | { 0xC0, 0xCA, 0x08, 0x180, 0x1c8, 0xf4, 0x1cc }, |
223 | { 0x280, 0x28A, 0x200, 0x300, 0x348, 0x2b4 }, | 240 | { 0x280, 0x28A, 0x200, 0x300, 0x348, 0x2b4, 0x34c }, |
224 | { 0x2C0, 0x2CA, 0x208, 0x380, 0x3c8, 0x2f4 }, | 241 | { 0x2C0, 0x2CA, 0x208, 0x380, 0x3c8, 0x2f4, 0x3cc }, |
225 | /* ... port 3 */ | 242 | /* ... port 3 */ |
226 | }; | 243 | }; |
227 | 244 | ||
@@ -231,6 +248,10 @@ MODULE_LICENSE("GPL"); | |||
231 | MODULE_DEVICE_TABLE(pci, sil_pci_tbl); | 248 | MODULE_DEVICE_TABLE(pci, sil_pci_tbl); |
232 | MODULE_VERSION(DRV_VERSION); | 249 | MODULE_VERSION(DRV_VERSION); |
233 | 250 | ||
251 | static int slow_down = 0; | ||
252 | module_param(slow_down, int, 0444); | ||
253 | MODULE_PARM_DESC(slow_down, "Sledgehammer used to work around random problems, by limiting commands to 15 sectors (0=off, 1=on)"); | ||
254 | |||
234 | 255 | ||
235 | static unsigned char sil_get_device_cache_line(struct pci_dev *pdev) | 256 | static unsigned char sil_get_device_cache_line(struct pci_dev *pdev) |
236 | { | 257 | { |
@@ -354,8 +375,10 @@ static void sil_dev_config(struct ata_port *ap, struct ata_device *dev) | |||
354 | } | 375 | } |
355 | 376 | ||
356 | /* limit requests to 15 sectors */ | 377 | /* limit requests to 15 sectors */ |
357 | if ((ap->flags & SIL_FLAG_MOD15WRITE) && (quirks & SIL_QUIRK_MOD15WRITE)) { | 378 | if (slow_down || |
358 | printk(KERN_INFO "ata%u(%u): applying Seagate errata fix\n", | 379 | ((ap->flags & SIL_FLAG_MOD15WRITE) && |
380 | (quirks & SIL_QUIRK_MOD15WRITE))) { | ||
381 | printk(KERN_INFO "ata%u(%u): applying Seagate errata fix (mod15write workaround)\n", | ||
359 | ap->id, dev->devno); | 382 | ap->id, dev->devno); |
360 | ap->host->max_sectors = 15; | 383 | ap->host->max_sectors = 15; |
361 | ap->host->hostt->max_sectors = 15; | 384 | ap->host->hostt->max_sectors = 15; |
@@ -465,6 +488,23 @@ static int sil_init_one (struct pci_dev *pdev, const struct pci_device_id *ent) | |||
465 | dev_printk(KERN_WARNING, &pdev->dev, | 488 | dev_printk(KERN_WARNING, &pdev->dev, |
466 | "cache line size not set. Driver may not function\n"); | 489 | "cache line size not set. Driver may not function\n"); |
467 | 490 | ||
491 | /* Apply R_ERR on DMA activate FIS errata workaround */ | ||
492 | if (probe_ent->host_flags & SIL_FLAG_RERR_ON_DMA_ACT) { | ||
493 | int cnt; | ||
494 | |||
495 | for (i = 0, cnt = 0; i < probe_ent->n_ports; i++) { | ||
496 | tmp = readl(mmio_base + sil_port[i].sfis_cfg); | ||
497 | if ((tmp & 0x3) != 0x01) | ||
498 | continue; | ||
499 | if (!cnt) | ||
500 | dev_printk(KERN_INFO, &pdev->dev, | ||
501 | "Applying R_ERR on DMA activate " | ||
502 | "FIS errata fix\n"); | ||
503 | writel(tmp & ~0x3, mmio_base + sil_port[i].sfis_cfg); | ||
504 | cnt++; | ||
505 | } | ||
506 | } | ||
507 | |||
468 | if (ent->driver_data == sil_3114) { | 508 | if (ent->driver_data == sil_3114) { |
469 | irq_mask = SIL_MASK_4PORT; | 509 | irq_mask = SIL_MASK_4PORT; |
470 | 510 | ||
diff --git a/drivers/scsi/sata_vsc.c b/drivers/scsi/sata_vsc.c index 2e2c3b7acb0c..e484e8db6810 100644 --- a/drivers/scsi/sata_vsc.c +++ b/drivers/scsi/sata_vsc.c | |||
@@ -81,6 +81,19 @@ | |||
81 | /* Port stride */ | 81 | /* Port stride */ |
82 | #define VSC_SATA_PORT_OFFSET 0x200 | 82 | #define VSC_SATA_PORT_OFFSET 0x200 |
83 | 83 | ||
84 | /* Error interrupt status bit offsets */ | ||
85 | #define VSC_SATA_INT_ERROR_E_OFFSET 2 | ||
86 | #define VSC_SATA_INT_ERROR_P_OFFSET 4 | ||
87 | #define VSC_SATA_INT_ERROR_T_OFFSET 5 | ||
88 | #define VSC_SATA_INT_ERROR_M_OFFSET 1 | ||
89 | #define is_vsc_sata_int_err(port_idx, int_status) \ | ||
90 | (int_status & ((1 << (VSC_SATA_INT_ERROR_E_OFFSET + (8 * port_idx))) | \ | ||
91 | (1 << (VSC_SATA_INT_ERROR_P_OFFSET + (8 * port_idx))) | \ | ||
92 | (1 << (VSC_SATA_INT_ERROR_T_OFFSET + (8 * port_idx))) | \ | ||
93 | (1 << (VSC_SATA_INT_ERROR_M_OFFSET + (8 * port_idx))) \ | ||
94 | )\ | ||
95 | ) | ||
96 | |||
84 | 97 | ||
85 | static u32 vsc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg) | 98 | static u32 vsc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg) |
86 | { | 99 | { |
@@ -201,13 +214,28 @@ static irqreturn_t vsc_sata_interrupt (int irq, void *dev_instance, | |||
201 | struct ata_port *ap; | 214 | struct ata_port *ap; |
202 | 215 | ||
203 | ap = host_set->ports[i]; | 216 | ap = host_set->ports[i]; |
217 | |||
218 | if (is_vsc_sata_int_err(i, int_status)) { | ||
219 | u32 err_status; | ||
220 | printk(KERN_DEBUG "%s: ignoring interrupt(s)\n", __FUNCTION__); | ||
221 | err_status = ap ? vsc_sata_scr_read(ap, SCR_ERROR) : 0; | ||
222 | vsc_sata_scr_write(ap, SCR_ERROR, err_status); | ||
223 | handled++; | ||
224 | } | ||
225 | |||
204 | if (ap && !(ap->flags & | 226 | if (ap && !(ap->flags & |
205 | (ATA_FLAG_PORT_DISABLED|ATA_FLAG_NOINTR))) { | 227 | (ATA_FLAG_PORT_DISABLED|ATA_FLAG_NOINTR))) { |
206 | struct ata_queued_cmd *qc; | 228 | struct ata_queued_cmd *qc; |
207 | 229 | ||
208 | qc = ata_qc_from_tag(ap, ap->active_tag); | 230 | qc = ata_qc_from_tag(ap, ap->active_tag); |
209 | if (qc && (!(qc->tf.ctl & ATA_NIEN))) | 231 | if (qc && (!(qc->tf.ctl & ATA_NIEN))) { |
210 | handled += ata_host_intr(ap, qc); | 232 | handled += ata_host_intr(ap, qc); |
233 | } else { | ||
234 | printk(KERN_DEBUG "%s: ignoring interrupt(s)\n", __FUNCTION__); | ||
235 | ata_chk_status(ap); | ||
236 | handled++; | ||
237 | } | ||
238 | |||
211 | } | 239 | } |
212 | } | 240 | } |
213 | } | 241 | } |
diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index 245ca99a641e..c551bb84dbfb 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c | |||
@@ -1245,7 +1245,7 @@ static int __init init_scsi(void) | |||
1245 | if (error) | 1245 | if (error) |
1246 | goto cleanup_sysctl; | 1246 | goto cleanup_sysctl; |
1247 | 1247 | ||
1248 | for (i = 0; i < NR_CPUS; i++) | 1248 | for_each_cpu(i) |
1249 | INIT_LIST_HEAD(&per_cpu(scsi_done_q, i)); | 1249 | INIT_LIST_HEAD(&per_cpu(scsi_done_q, i)); |
1250 | 1250 | ||
1251 | devfs_mk_dir("scsi"); | 1251 | devfs_mk_dir("scsi"); |
diff --git a/drivers/scsi/scsi_devinfo.c b/drivers/scsi/scsi_devinfo.c index f01ec0a7c506..84c3937ae8fb 100644 --- a/drivers/scsi/scsi_devinfo.c +++ b/drivers/scsi/scsi_devinfo.c | |||
@@ -126,6 +126,7 @@ static struct { | |||
126 | {"ADAPTEC", "Adaptec 5400S", NULL, BLIST_FORCELUN}, | 126 | {"ADAPTEC", "Adaptec 5400S", NULL, BLIST_FORCELUN}, |
127 | {"AFT PRO", "-IX CF", "0.0>", BLIST_FORCELUN}, | 127 | {"AFT PRO", "-IX CF", "0.0>", BLIST_FORCELUN}, |
128 | {"BELKIN", "USB 2 HS-CF", "1.95", BLIST_FORCELUN | BLIST_INQUIRY_36}, | 128 | {"BELKIN", "USB 2 HS-CF", "1.95", BLIST_FORCELUN | BLIST_INQUIRY_36}, |
129 | {"BROWNIE", "1600U3P", NULL, BLIST_NOREPORTLUN}, | ||
129 | {"CANON", "IPUBJD", NULL, BLIST_SPARSELUN}, | 130 | {"CANON", "IPUBJD", NULL, BLIST_SPARSELUN}, |
130 | {"CBOX3", "USB Storage-SMC", "300A", BLIST_FORCELUN | BLIST_INQUIRY_36}, | 131 | {"CBOX3", "USB Storage-SMC", "300A", BLIST_FORCELUN | BLIST_INQUIRY_36}, |
131 | {"CMD", "CRA-7280", NULL, BLIST_SPARSELUN}, /* CMD RAID Controller */ | 132 | {"CMD", "CRA-7280", NULL, BLIST_SPARSELUN}, /* CMD RAID Controller */ |
diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c index a2333d2c7af0..ff82ccfbb106 100644 --- a/drivers/scsi/scsi_error.c +++ b/drivers/scsi/scsi_error.c | |||
@@ -1308,7 +1308,7 @@ int scsi_decide_disposition(struct scsi_cmnd *scmd) | |||
1308 | * the request was not marked fast fail. Note that above, | 1308 | * the request was not marked fast fail. Note that above, |
1309 | * even if the request is marked fast fail, we still requeue | 1309 | * even if the request is marked fast fail, we still requeue |
1310 | * for queue congestion conditions (QUEUE_FULL or BUSY) */ | 1310 | * for queue congestion conditions (QUEUE_FULL or BUSY) */ |
1311 | if ((++scmd->retries) < scmd->allowed | 1311 | if ((++scmd->retries) <= scmd->allowed |
1312 | && !blk_noretry_request(scmd->request)) { | 1312 | && !blk_noretry_request(scmd->request)) { |
1313 | return NEEDS_RETRY; | 1313 | return NEEDS_RETRY; |
1314 | } else { | 1314 | } else { |
@@ -1350,7 +1350,7 @@ static void scsi_eh_lock_door(struct scsi_device *sdev) | |||
1350 | cmnd[4] = SCSI_REMOVAL_PREVENT; | 1350 | cmnd[4] = SCSI_REMOVAL_PREVENT; |
1351 | cmnd[5] = 0; | 1351 | cmnd[5] = 0; |
1352 | 1352 | ||
1353 | scsi_execute_async(sdev, cmnd, DMA_NONE, NULL, 0, 0, 10 * HZ, | 1353 | scsi_execute_async(sdev, cmnd, 6, DMA_NONE, NULL, 0, 0, 10 * HZ, |
1354 | 5, NULL, NULL, GFP_KERNEL); | 1354 | 5, NULL, NULL, GFP_KERNEL); |
1355 | } | 1355 | } |
1356 | 1356 | ||
@@ -1433,7 +1433,7 @@ static void scsi_eh_flush_done_q(struct list_head *done_q) | |||
1433 | list_del_init(&scmd->eh_entry); | 1433 | list_del_init(&scmd->eh_entry); |
1434 | if (scsi_device_online(scmd->device) && | 1434 | if (scsi_device_online(scmd->device) && |
1435 | !blk_noretry_request(scmd->request) && | 1435 | !blk_noretry_request(scmd->request) && |
1436 | (++scmd->retries < scmd->allowed)) { | 1436 | (++scmd->retries <= scmd->allowed)) { |
1437 | SCSI_LOG_ERROR_RECOVERY(3, printk("%s: flush" | 1437 | SCSI_LOG_ERROR_RECOVERY(3, printk("%s: flush" |
1438 | " retry cmd: %p\n", | 1438 | " retry cmd: %p\n", |
1439 | current->comm, | 1439 | current->comm, |
diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index 3574ba935af8..701a328f7beb 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
17 | #include <linux/pci.h> | 17 | #include <linux/pci.h> |
18 | #include <linux/delay.h> | 18 | #include <linux/delay.h> |
19 | #include <linux/hardirq.h> | ||
19 | 20 | ||
20 | #include <scsi/scsi.h> | 21 | #include <scsi/scsi.h> |
21 | #include <scsi/scsi_dbg.h> | 22 | #include <scsi/scsi_dbg.h> |
@@ -436,6 +437,7 @@ free_bios: | |||
436 | * scsi_execute_async - insert request | 437 | * scsi_execute_async - insert request |
437 | * @sdev: scsi device | 438 | * @sdev: scsi device |
438 | * @cmd: scsi command | 439 | * @cmd: scsi command |
440 | * @cmd_len: length of scsi cdb | ||
439 | * @data_direction: data direction | 441 | * @data_direction: data direction |
440 | * @buffer: data buffer (this can be a kernel buffer or scatterlist) | 442 | * @buffer: data buffer (this can be a kernel buffer or scatterlist) |
441 | * @bufflen: len of buffer | 443 | * @bufflen: len of buffer |
@@ -445,7 +447,7 @@ free_bios: | |||
445 | * @flags: or into request flags | 447 | * @flags: or into request flags |
446 | **/ | 448 | **/ |
447 | int scsi_execute_async(struct scsi_device *sdev, const unsigned char *cmd, | 449 | int scsi_execute_async(struct scsi_device *sdev, const unsigned char *cmd, |
448 | int data_direction, void *buffer, unsigned bufflen, | 450 | int cmd_len, int data_direction, void *buffer, unsigned bufflen, |
449 | int use_sg, int timeout, int retries, void *privdata, | 451 | int use_sg, int timeout, int retries, void *privdata, |
450 | void (*done)(void *, char *, int, int), gfp_t gfp) | 452 | void (*done)(void *, char *, int, int), gfp_t gfp) |
451 | { | 453 | { |
@@ -472,7 +474,7 @@ int scsi_execute_async(struct scsi_device *sdev, const unsigned char *cmd, | |||
472 | if (err) | 474 | if (err) |
473 | goto free_req; | 475 | goto free_req; |
474 | 476 | ||
475 | req->cmd_len = COMMAND_SIZE(cmd[0]); | 477 | req->cmd_len = cmd_len; |
476 | memcpy(req->cmd, cmd, req->cmd_len); | 478 | memcpy(req->cmd, cmd, req->cmd_len); |
477 | req->sense = sioc->sense; | 479 | req->sense = sioc->sense; |
478 | req->sense_len = 0; | 480 | req->sense_len = 0; |
@@ -1496,7 +1498,7 @@ static void scsi_kill_request(struct request *req, request_queue_t *q) | |||
1496 | static void scsi_softirq_done(struct request *rq) | 1498 | static void scsi_softirq_done(struct request *rq) |
1497 | { | 1499 | { |
1498 | struct scsi_cmnd *cmd = rq->completion_data; | 1500 | struct scsi_cmnd *cmd = rq->completion_data; |
1499 | unsigned long wait_for = cmd->allowed * cmd->timeout_per_command; | 1501 | unsigned long wait_for = (cmd->allowed + 1) * cmd->timeout_per_command; |
1500 | int disposition; | 1502 | int disposition; |
1501 | 1503 | ||
1502 | INIT_LIST_HEAD(&cmd->eh_entry); | 1504 | INIT_LIST_HEAD(&cmd->eh_entry); |
@@ -2247,3 +2249,61 @@ scsi_target_unblock(struct device *dev) | |||
2247 | device_for_each_child(dev, NULL, target_unblock); | 2249 | device_for_each_child(dev, NULL, target_unblock); |
2248 | } | 2250 | } |
2249 | EXPORT_SYMBOL_GPL(scsi_target_unblock); | 2251 | EXPORT_SYMBOL_GPL(scsi_target_unblock); |
2252 | |||
2253 | |||
2254 | struct work_queue_work { | ||
2255 | struct work_struct work; | ||
2256 | void (*fn)(void *); | ||
2257 | void *data; | ||
2258 | }; | ||
2259 | |||
2260 | static void execute_in_process_context_work(void *data) | ||
2261 | { | ||
2262 | void (*fn)(void *data); | ||
2263 | struct work_queue_work *wqw = data; | ||
2264 | |||
2265 | fn = wqw->fn; | ||
2266 | data = wqw->data; | ||
2267 | |||
2268 | kfree(wqw); | ||
2269 | |||
2270 | fn(data); | ||
2271 | } | ||
2272 | |||
2273 | /** | ||
2274 | * scsi_execute_in_process_context - reliably execute the routine with user context | ||
2275 | * @fn: the function to execute | ||
2276 | * @data: data to pass to the function | ||
2277 | * | ||
2278 | * Executes the function immediately if process context is available, | ||
2279 | * otherwise schedules the function for delayed execution. | ||
2280 | * | ||
2281 | * Returns: 0 - function was executed | ||
2282 | * 1 - function was scheduled for execution | ||
2283 | * <0 - error | ||
2284 | */ | ||
2285 | int scsi_execute_in_process_context(void (*fn)(void *data), void *data) | ||
2286 | { | ||
2287 | struct work_queue_work *wqw; | ||
2288 | |||
2289 | if (!in_interrupt()) { | ||
2290 | fn(data); | ||
2291 | return 0; | ||
2292 | } | ||
2293 | |||
2294 | wqw = kmalloc(sizeof(struct work_queue_work), GFP_ATOMIC); | ||
2295 | |||
2296 | if (unlikely(!wqw)) { | ||
2297 | printk(KERN_ERR "Failed to allocate memory\n"); | ||
2298 | WARN_ON(1); | ||
2299 | return -ENOMEM; | ||
2300 | } | ||
2301 | |||
2302 | INIT_WORK(&wqw->work, execute_in_process_context_work, wqw); | ||
2303 | wqw->fn = fn; | ||
2304 | wqw->data = data; | ||
2305 | schedule_work(&wqw->work); | ||
2306 | |||
2307 | return 1; | ||
2308 | } | ||
2309 | EXPORT_SYMBOL_GPL(scsi_execute_in_process_context); | ||
diff --git a/drivers/scsi/scsi_scan.c b/drivers/scsi/scsi_scan.c index 752fb5da3de4..f9ecc3dea7df 100644 --- a/drivers/scsi/scsi_scan.c +++ b/drivers/scsi/scsi_scan.c | |||
@@ -387,19 +387,12 @@ static struct scsi_target *scsi_alloc_target(struct device *parent, | |||
387 | return found_target; | 387 | return found_target; |
388 | } | 388 | } |
389 | 389 | ||
390 | struct work_queue_wrapper { | 390 | static void scsi_target_reap_usercontext(void *data) |
391 | struct work_struct work; | 391 | { |
392 | struct scsi_target *starget; | 392 | struct scsi_target *starget = data; |
393 | }; | ||
394 | |||
395 | static void scsi_target_reap_work(void *data) { | ||
396 | struct work_queue_wrapper *wqw = (struct work_queue_wrapper *)data; | ||
397 | struct scsi_target *starget = wqw->starget; | ||
398 | struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); | 393 | struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); |
399 | unsigned long flags; | 394 | unsigned long flags; |
400 | 395 | ||
401 | kfree(wqw); | ||
402 | |||
403 | spin_lock_irqsave(shost->host_lock, flags); | 396 | spin_lock_irqsave(shost->host_lock, flags); |
404 | 397 | ||
405 | if (--starget->reap_ref == 0 && list_empty(&starget->devices)) { | 398 | if (--starget->reap_ref == 0 && list_empty(&starget->devices)) { |
@@ -428,18 +421,7 @@ static void scsi_target_reap_work(void *data) { | |||
428 | */ | 421 | */ |
429 | void scsi_target_reap(struct scsi_target *starget) | 422 | void scsi_target_reap(struct scsi_target *starget) |
430 | { | 423 | { |
431 | struct work_queue_wrapper *wqw = | 424 | scsi_execute_in_process_context(scsi_target_reap_usercontext, starget); |
432 | kzalloc(sizeof(struct work_queue_wrapper), GFP_ATOMIC); | ||
433 | |||
434 | if (!wqw) { | ||
435 | starget_printk(KERN_ERR, starget, | ||
436 | "Failed to allocate memory in scsi_reap_target()\n"); | ||
437 | return; | ||
438 | } | ||
439 | |||
440 | INIT_WORK(&wqw->work, scsi_target_reap_work, wqw); | ||
441 | wqw->starget = starget; | ||
442 | schedule_work(&wqw->work); | ||
443 | } | 425 | } |
444 | 426 | ||
445 | /** | 427 | /** |
@@ -770,8 +752,20 @@ static int scsi_add_lun(struct scsi_device *sdev, char *inq_result, int *bflags) | |||
770 | 752 | ||
771 | transport_configure_device(&sdev->sdev_gendev); | 753 | transport_configure_device(&sdev->sdev_gendev); |
772 | 754 | ||
773 | if (sdev->host->hostt->slave_configure) | 755 | if (sdev->host->hostt->slave_configure) { |
774 | sdev->host->hostt->slave_configure(sdev); | 756 | int ret = sdev->host->hostt->slave_configure(sdev); |
757 | if (ret) { | ||
758 | /* | ||
759 | * if LLDD reports slave not present, don't clutter | ||
760 | * console with alloc failure messages | ||
761 | */ | ||
762 | if (ret != -ENXIO) { | ||
763 | sdev_printk(KERN_ERR, sdev, | ||
764 | "failed to configure device\n"); | ||
765 | } | ||
766 | return SCSI_SCAN_NO_RESPONSE; | ||
767 | } | ||
768 | } | ||
775 | 769 | ||
776 | /* | 770 | /* |
777 | * Ok, the device is now all set up, we can | 771 | * Ok, the device is now all set up, we can |
diff --git a/drivers/scsi/scsi_sysfs.c b/drivers/scsi/scsi_sysfs.c index a77b32deaf8f..902a5def8e62 100644 --- a/drivers/scsi/scsi_sysfs.c +++ b/drivers/scsi/scsi_sysfs.c | |||
@@ -217,8 +217,9 @@ static void scsi_device_cls_release(struct class_device *class_dev) | |||
217 | put_device(&sdev->sdev_gendev); | 217 | put_device(&sdev->sdev_gendev); |
218 | } | 218 | } |
219 | 219 | ||
220 | static void scsi_device_dev_release(struct device *dev) | 220 | static void scsi_device_dev_release_usercontext(void *data) |
221 | { | 221 | { |
222 | struct device *dev = data; | ||
222 | struct scsi_device *sdev; | 223 | struct scsi_device *sdev; |
223 | struct device *parent; | 224 | struct device *parent; |
224 | struct scsi_target *starget; | 225 | struct scsi_target *starget; |
@@ -237,6 +238,7 @@ static void scsi_device_dev_release(struct device *dev) | |||
237 | 238 | ||
238 | if (sdev->request_queue) { | 239 | if (sdev->request_queue) { |
239 | sdev->request_queue->queuedata = NULL; | 240 | sdev->request_queue->queuedata = NULL; |
241 | /* user context needed to free queue */ | ||
240 | scsi_free_queue(sdev->request_queue); | 242 | scsi_free_queue(sdev->request_queue); |
241 | /* temporary expedient, try to catch use of queue lock | 243 | /* temporary expedient, try to catch use of queue lock |
242 | * after free of sdev */ | 244 | * after free of sdev */ |
@@ -252,6 +254,11 @@ static void scsi_device_dev_release(struct device *dev) | |||
252 | put_device(parent); | 254 | put_device(parent); |
253 | } | 255 | } |
254 | 256 | ||
257 | static void scsi_device_dev_release(struct device *dev) | ||
258 | { | ||
259 | scsi_execute_in_process_context(scsi_device_dev_release_usercontext, dev); | ||
260 | } | ||
261 | |||
255 | static struct class sdev_class = { | 262 | static struct class sdev_class = { |
256 | .name = "scsi_device", | 263 | .name = "scsi_device", |
257 | .release = scsi_device_cls_release, | 264 | .release = scsi_device_cls_release, |
diff --git a/drivers/scsi/scsi_transport_fc.c b/drivers/scsi/scsi_transport_fc.c index f2c9acf11bd0..13ea64119b73 100644 --- a/drivers/scsi/scsi_transport_fc.c +++ b/drivers/scsi/scsi_transport_fc.c | |||
@@ -223,7 +223,7 @@ static void fc_rport_terminate(struct fc_rport *rport); | |||
223 | */ | 223 | */ |
224 | #define FC_STARGET_NUM_ATTRS 3 | 224 | #define FC_STARGET_NUM_ATTRS 3 |
225 | #define FC_RPORT_NUM_ATTRS 9 | 225 | #define FC_RPORT_NUM_ATTRS 9 |
226 | #define FC_HOST_NUM_ATTRS 16 | 226 | #define FC_HOST_NUM_ATTRS 17 |
227 | 227 | ||
228 | struct fc_internal { | 228 | struct fc_internal { |
229 | struct scsi_transport_template t; | 229 | struct scsi_transport_template t; |
@@ -1498,8 +1498,7 @@ fc_remote_port_add(struct Scsi_Host *shost, int channel, | |||
1498 | } | 1498 | } |
1499 | 1499 | ||
1500 | /* Search the bindings array */ | 1500 | /* Search the bindings array */ |
1501 | if (likely((ids->roles & FC_RPORT_ROLE_FCP_TARGET) && | 1501 | if (fc_host_tgtid_bind_type(shost) != FC_TGTID_BIND_NONE) { |
1502 | (fc_host_tgtid_bind_type(shost) != FC_TGTID_BIND_NONE))) { | ||
1503 | 1502 | ||
1504 | /* search for a matching consistent binding */ | 1503 | /* search for a matching consistent binding */ |
1505 | 1504 | ||
diff --git a/drivers/scsi/scsi_transport_iscsi.c b/drivers/scsi/scsi_transport_iscsi.c index 59a1c9d9d3bd..71e54a64adca 100644 --- a/drivers/scsi/scsi_transport_iscsi.c +++ b/drivers/scsi/scsi_transport_iscsi.c | |||
@@ -39,10 +39,6 @@ struct iscsi_internal { | |||
39 | struct iscsi_transport *iscsi_transport; | 39 | struct iscsi_transport *iscsi_transport; |
40 | struct list_head list; | 40 | struct list_head list; |
41 | /* | 41 | /* |
42 | * List of sessions for this transport | ||
43 | */ | ||
44 | struct list_head sessions; | ||
45 | /* | ||
46 | * based on transport capabilities, at register time we set these | 42 | * based on transport capabilities, at register time we set these |
47 | * bits to tell the transport class it wants attributes displayed | 43 | * bits to tell the transport class it wants attributes displayed |
48 | * in sysfs or that it can support different iSCSI Data-Path | 44 | * in sysfs or that it can support different iSCSI Data-Path |
@@ -164,9 +160,43 @@ static struct mempool_zone *z_reply; | |||
164 | #define Z_MAX_ERROR 16 | 160 | #define Z_MAX_ERROR 16 |
165 | #define Z_HIWAT_ERROR 12 | 161 | #define Z_HIWAT_ERROR 12 |
166 | 162 | ||
163 | static LIST_HEAD(sesslist); | ||
164 | static DEFINE_SPINLOCK(sesslock); | ||
167 | static LIST_HEAD(connlist); | 165 | static LIST_HEAD(connlist); |
168 | static DEFINE_SPINLOCK(connlock); | 166 | static DEFINE_SPINLOCK(connlock); |
169 | 167 | ||
168 | static struct iscsi_cls_session *iscsi_session_lookup(uint64_t handle) | ||
169 | { | ||
170 | unsigned long flags; | ||
171 | struct iscsi_cls_session *sess; | ||
172 | |||
173 | spin_lock_irqsave(&sesslock, flags); | ||
174 | list_for_each_entry(sess, &sesslist, sess_list) { | ||
175 | if (sess == iscsi_ptr(handle)) { | ||
176 | spin_unlock_irqrestore(&sesslock, flags); | ||
177 | return sess; | ||
178 | } | ||
179 | } | ||
180 | spin_unlock_irqrestore(&sesslock, flags); | ||
181 | return NULL; | ||
182 | } | ||
183 | |||
184 | static struct iscsi_cls_conn *iscsi_conn_lookup(uint64_t handle) | ||
185 | { | ||
186 | unsigned long flags; | ||
187 | struct iscsi_cls_conn *conn; | ||
188 | |||
189 | spin_lock_irqsave(&connlock, flags); | ||
190 | list_for_each_entry(conn, &connlist, conn_list) { | ||
191 | if (conn == iscsi_ptr(handle)) { | ||
192 | spin_unlock_irqrestore(&connlock, flags); | ||
193 | return conn; | ||
194 | } | ||
195 | } | ||
196 | spin_unlock_irqrestore(&connlock, flags); | ||
197 | return NULL; | ||
198 | } | ||
199 | |||
170 | /* | 200 | /* |
171 | * The following functions can be used by LLDs that allocate | 201 | * The following functions can be used by LLDs that allocate |
172 | * their own scsi_hosts or by software iscsi LLDs | 202 | * their own scsi_hosts or by software iscsi LLDs |
@@ -365,6 +395,7 @@ iscsi_transport_create_session(struct scsi_transport_template *scsit, | |||
365 | { | 395 | { |
366 | struct iscsi_cls_session *session; | 396 | struct iscsi_cls_session *session; |
367 | struct Scsi_Host *shost; | 397 | struct Scsi_Host *shost; |
398 | unsigned long flags; | ||
368 | 399 | ||
369 | shost = scsi_host_alloc(transport->host_template, | 400 | shost = scsi_host_alloc(transport->host_template, |
370 | hostdata_privsize(transport)); | 401 | hostdata_privsize(transport)); |
@@ -389,6 +420,9 @@ iscsi_transport_create_session(struct scsi_transport_template *scsit, | |||
389 | goto remove_host; | 420 | goto remove_host; |
390 | 421 | ||
391 | *(unsigned long*)shost->hostdata = (unsigned long)session; | 422 | *(unsigned long*)shost->hostdata = (unsigned long)session; |
423 | spin_lock_irqsave(&sesslock, flags); | ||
424 | list_add(&session->sess_list, &sesslist); | ||
425 | spin_unlock_irqrestore(&sesslock, flags); | ||
392 | return shost; | 426 | return shost; |
393 | 427 | ||
394 | remove_host: | 428 | remove_host: |
@@ -410,9 +444,13 @@ EXPORT_SYMBOL_GPL(iscsi_transport_create_session); | |||
410 | int iscsi_transport_destroy_session(struct Scsi_Host *shost) | 444 | int iscsi_transport_destroy_session(struct Scsi_Host *shost) |
411 | { | 445 | { |
412 | struct iscsi_cls_session *session; | 446 | struct iscsi_cls_session *session; |
447 | unsigned long flags; | ||
413 | 448 | ||
414 | scsi_remove_host(shost); | 449 | scsi_remove_host(shost); |
415 | session = hostdata_session(shost->hostdata); | 450 | session = hostdata_session(shost->hostdata); |
451 | spin_lock_irqsave(&sesslock, flags); | ||
452 | list_del(&session->sess_list); | ||
453 | spin_unlock_irqrestore(&sesslock, flags); | ||
416 | iscsi_destroy_session(session); | 454 | iscsi_destroy_session(session); |
417 | /* ref from host alloc */ | 455 | /* ref from host alloc */ |
418 | scsi_host_put(shost); | 456 | scsi_host_put(shost); |
@@ -424,22 +462,6 @@ EXPORT_SYMBOL_GPL(iscsi_transport_destroy_session); | |||
424 | /* | 462 | /* |
425 | * iscsi interface functions | 463 | * iscsi interface functions |
426 | */ | 464 | */ |
427 | static struct iscsi_cls_conn* | ||
428 | iscsi_if_find_conn(uint64_t key) | ||
429 | { | ||
430 | unsigned long flags; | ||
431 | struct iscsi_cls_conn *conn; | ||
432 | |||
433 | spin_lock_irqsave(&connlock, flags); | ||
434 | list_for_each_entry(conn, &connlist, conn_list) | ||
435 | if (conn->connh == key) { | ||
436 | spin_unlock_irqrestore(&connlock, flags); | ||
437 | return conn; | ||
438 | } | ||
439 | spin_unlock_irqrestore(&connlock, flags); | ||
440 | return NULL; | ||
441 | } | ||
442 | |||
443 | static struct iscsi_internal * | 465 | static struct iscsi_internal * |
444 | iscsi_if_transport_lookup(struct iscsi_transport *tt) | 466 | iscsi_if_transport_lookup(struct iscsi_transport *tt) |
445 | { | 467 | { |
@@ -463,7 +485,7 @@ static inline struct list_head *skb_to_lh(struct sk_buff *skb) | |||
463 | } | 485 | } |
464 | 486 | ||
465 | static void* | 487 | static void* |
466 | mempool_zone_alloc_skb(unsigned int gfp_mask, void *pool_data) | 488 | mempool_zone_alloc_skb(gfp_t gfp_mask, void *pool_data) |
467 | { | 489 | { |
468 | struct mempool_zone *zone = pool_data; | 490 | struct mempool_zone *zone = pool_data; |
469 | 491 | ||
@@ -504,6 +526,12 @@ mempool_zone_init(unsigned max, unsigned size, unsigned hiwat) | |||
504 | if (!zp) | 526 | if (!zp) |
505 | return NULL; | 527 | return NULL; |
506 | 528 | ||
529 | zp->size = size; | ||
530 | zp->hiwat = hiwat; | ||
531 | INIT_LIST_HEAD(&zp->freequeue); | ||
532 | spin_lock_init(&zp->freelock); | ||
533 | atomic_set(&zp->allocated, 0); | ||
534 | |||
507 | zp->pool = mempool_create(max, mempool_zone_alloc_skb, | 535 | zp->pool = mempool_create(max, mempool_zone_alloc_skb, |
508 | mempool_zone_free_skb, zp); | 536 | mempool_zone_free_skb, zp); |
509 | if (!zp->pool) { | 537 | if (!zp->pool) { |
@@ -511,13 +539,6 @@ mempool_zone_init(unsigned max, unsigned size, unsigned hiwat) | |||
511 | return NULL; | 539 | return NULL; |
512 | } | 540 | } |
513 | 541 | ||
514 | zp->size = size; | ||
515 | zp->hiwat = hiwat; | ||
516 | |||
517 | INIT_LIST_HEAD(&zp->freequeue); | ||
518 | spin_lock_init(&zp->freelock); | ||
519 | atomic_set(&zp->allocated, 0); | ||
520 | |||
521 | return zp; | 542 | return zp; |
522 | } | 543 | } |
523 | 544 | ||
@@ -559,25 +580,21 @@ iscsi_unicast_skb(struct mempool_zone *zone, struct sk_buff *skb) | |||
559 | return 0; | 580 | return 0; |
560 | } | 581 | } |
561 | 582 | ||
562 | int iscsi_recv_pdu(iscsi_connh_t connh, struct iscsi_hdr *hdr, | 583 | int iscsi_recv_pdu(struct iscsi_cls_conn *conn, struct iscsi_hdr *hdr, |
563 | char *data, uint32_t data_size) | 584 | char *data, uint32_t data_size) |
564 | { | 585 | { |
565 | struct nlmsghdr *nlh; | 586 | struct nlmsghdr *nlh; |
566 | struct sk_buff *skb; | 587 | struct sk_buff *skb; |
567 | struct iscsi_uevent *ev; | 588 | struct iscsi_uevent *ev; |
568 | struct iscsi_cls_conn *conn; | ||
569 | char *pdu; | 589 | char *pdu; |
570 | int len = NLMSG_SPACE(sizeof(*ev) + sizeof(struct iscsi_hdr) + | 590 | int len = NLMSG_SPACE(sizeof(*ev) + sizeof(struct iscsi_hdr) + |
571 | data_size); | 591 | data_size); |
572 | 592 | ||
573 | conn = iscsi_if_find_conn(connh); | ||
574 | BUG_ON(!conn); | ||
575 | |||
576 | mempool_zone_complete(conn->z_pdu); | 593 | mempool_zone_complete(conn->z_pdu); |
577 | 594 | ||
578 | skb = mempool_zone_get_skb(conn->z_pdu); | 595 | skb = mempool_zone_get_skb(conn->z_pdu); |
579 | if (!skb) { | 596 | if (!skb) { |
580 | iscsi_conn_error(connh, ISCSI_ERR_CONN_FAILED); | 597 | iscsi_conn_error(conn, ISCSI_ERR_CONN_FAILED); |
581 | dev_printk(KERN_ERR, &conn->dev, "iscsi: can not deliver " | 598 | dev_printk(KERN_ERR, &conn->dev, "iscsi: can not deliver " |
582 | "control PDU: OOM\n"); | 599 | "control PDU: OOM\n"); |
583 | return -ENOMEM; | 600 | return -ENOMEM; |
@@ -590,7 +607,7 @@ int iscsi_recv_pdu(iscsi_connh_t connh, struct iscsi_hdr *hdr, | |||
590 | ev->type = ISCSI_KEVENT_RECV_PDU; | 607 | ev->type = ISCSI_KEVENT_RECV_PDU; |
591 | if (atomic_read(&conn->z_pdu->allocated) >= conn->z_pdu->hiwat) | 608 | if (atomic_read(&conn->z_pdu->allocated) >= conn->z_pdu->hiwat) |
592 | ev->iferror = -ENOMEM; | 609 | ev->iferror = -ENOMEM; |
593 | ev->r.recv_req.conn_handle = connh; | 610 | ev->r.recv_req.conn_handle = iscsi_handle(conn); |
594 | pdu = (char*)ev + sizeof(*ev); | 611 | pdu = (char*)ev + sizeof(*ev); |
595 | memcpy(pdu, hdr, sizeof(struct iscsi_hdr)); | 612 | memcpy(pdu, hdr, sizeof(struct iscsi_hdr)); |
596 | memcpy(pdu + sizeof(struct iscsi_hdr), data, data_size); | 613 | memcpy(pdu + sizeof(struct iscsi_hdr), data, data_size); |
@@ -599,17 +616,13 @@ int iscsi_recv_pdu(iscsi_connh_t connh, struct iscsi_hdr *hdr, | |||
599 | } | 616 | } |
600 | EXPORT_SYMBOL_GPL(iscsi_recv_pdu); | 617 | EXPORT_SYMBOL_GPL(iscsi_recv_pdu); |
601 | 618 | ||
602 | void iscsi_conn_error(iscsi_connh_t connh, enum iscsi_err error) | 619 | void iscsi_conn_error(struct iscsi_cls_conn *conn, enum iscsi_err error) |
603 | { | 620 | { |
604 | struct nlmsghdr *nlh; | 621 | struct nlmsghdr *nlh; |
605 | struct sk_buff *skb; | 622 | struct sk_buff *skb; |
606 | struct iscsi_uevent *ev; | 623 | struct iscsi_uevent *ev; |
607 | struct iscsi_cls_conn *conn; | ||
608 | int len = NLMSG_SPACE(sizeof(*ev)); | 624 | int len = NLMSG_SPACE(sizeof(*ev)); |
609 | 625 | ||
610 | conn = iscsi_if_find_conn(connh); | ||
611 | BUG_ON(!conn); | ||
612 | |||
613 | mempool_zone_complete(conn->z_error); | 626 | mempool_zone_complete(conn->z_error); |
614 | 627 | ||
615 | skb = mempool_zone_get_skb(conn->z_error); | 628 | skb = mempool_zone_get_skb(conn->z_error); |
@@ -626,7 +639,7 @@ void iscsi_conn_error(iscsi_connh_t connh, enum iscsi_err error) | |||
626 | if (atomic_read(&conn->z_error->allocated) >= conn->z_error->hiwat) | 639 | if (atomic_read(&conn->z_error->allocated) >= conn->z_error->hiwat) |
627 | ev->iferror = -ENOMEM; | 640 | ev->iferror = -ENOMEM; |
628 | ev->r.connerror.error = error; | 641 | ev->r.connerror.error = error; |
629 | ev->r.connerror.conn_handle = connh; | 642 | ev->r.connerror.conn_handle = iscsi_handle(conn); |
630 | 643 | ||
631 | iscsi_unicast_skb(conn->z_error, skb); | 644 | iscsi_unicast_skb(conn->z_error, skb); |
632 | 645 | ||
@@ -662,8 +675,7 @@ iscsi_if_send_reply(int pid, int seq, int type, int done, int multi, | |||
662 | } | 675 | } |
663 | 676 | ||
664 | static int | 677 | static int |
665 | iscsi_if_get_stats(struct iscsi_transport *transport, struct sk_buff *skb, | 678 | iscsi_if_get_stats(struct iscsi_transport *transport, struct nlmsghdr *nlh) |
666 | struct nlmsghdr *nlh) | ||
667 | { | 679 | { |
668 | struct iscsi_uevent *ev = NLMSG_DATA(nlh); | 680 | struct iscsi_uevent *ev = NLMSG_DATA(nlh); |
669 | struct iscsi_stats *stats; | 681 | struct iscsi_stats *stats; |
@@ -677,7 +689,7 @@ iscsi_if_get_stats(struct iscsi_transport *transport, struct sk_buff *skb, | |||
677 | ISCSI_STATS_CUSTOM_MAX); | 689 | ISCSI_STATS_CUSTOM_MAX); |
678 | int err = 0; | 690 | int err = 0; |
679 | 691 | ||
680 | conn = iscsi_if_find_conn(ev->u.get_stats.conn_handle); | 692 | conn = iscsi_conn_lookup(ev->u.get_stats.conn_handle); |
681 | if (!conn) | 693 | if (!conn) |
682 | return -EEXIST; | 694 | return -EEXIST; |
683 | 695 | ||
@@ -707,14 +719,14 @@ iscsi_if_get_stats(struct iscsi_transport *transport, struct sk_buff *skb, | |||
707 | ((char*)evstat + sizeof(*evstat)); | 719 | ((char*)evstat + sizeof(*evstat)); |
708 | memset(stats, 0, sizeof(*stats)); | 720 | memset(stats, 0, sizeof(*stats)); |
709 | 721 | ||
710 | transport->get_stats(ev->u.get_stats.conn_handle, stats); | 722 | transport->get_stats(conn, stats); |
711 | actual_size = NLMSG_SPACE(sizeof(struct iscsi_uevent) + | 723 | actual_size = NLMSG_SPACE(sizeof(struct iscsi_uevent) + |
712 | sizeof(struct iscsi_stats) + | 724 | sizeof(struct iscsi_stats) + |
713 | sizeof(struct iscsi_stats_custom) * | 725 | sizeof(struct iscsi_stats_custom) * |
714 | stats->custom_length); | 726 | stats->custom_length); |
715 | actual_size -= sizeof(*nlhstat); | 727 | actual_size -= sizeof(*nlhstat); |
716 | actual_size = NLMSG_LENGTH(actual_size); | 728 | actual_size = NLMSG_LENGTH(actual_size); |
717 | skb_trim(skb, NLMSG_ALIGN(actual_size)); | 729 | skb_trim(skbstat, NLMSG_ALIGN(actual_size)); |
718 | nlhstat->nlmsg_len = actual_size; | 730 | nlhstat->nlmsg_len = actual_size; |
719 | 731 | ||
720 | err = iscsi_unicast_skb(conn->z_pdu, skbstat); | 732 | err = iscsi_unicast_skb(conn->z_pdu, skbstat); |
@@ -727,58 +739,34 @@ static int | |||
727 | iscsi_if_create_session(struct iscsi_internal *priv, struct iscsi_uevent *ev) | 739 | iscsi_if_create_session(struct iscsi_internal *priv, struct iscsi_uevent *ev) |
728 | { | 740 | { |
729 | struct iscsi_transport *transport = priv->iscsi_transport; | 741 | struct iscsi_transport *transport = priv->iscsi_transport; |
730 | struct Scsi_Host *shost; | 742 | struct iscsi_cls_session *session; |
731 | 743 | uint32_t sid; | |
732 | if (!transport->create_session) | ||
733 | return -EINVAL; | ||
734 | 744 | ||
735 | shost = transport->create_session(&priv->t, | 745 | session = transport->create_session(&priv->t, |
736 | ev->u.c_session.initial_cmdsn); | 746 | ev->u.c_session.initial_cmdsn, |
737 | if (!shost) | 747 | &sid); |
748 | if (!session) | ||
738 | return -ENOMEM; | 749 | return -ENOMEM; |
739 | 750 | ||
740 | ev->r.c_session_ret.session_handle = iscsi_handle(iscsi_hostdata(shost->hostdata)); | 751 | ev->r.c_session_ret.session_handle = iscsi_handle(session); |
741 | ev->r.c_session_ret.sid = shost->host_no; | 752 | ev->r.c_session_ret.sid = sid; |
742 | return 0; | 753 | return 0; |
743 | } | 754 | } |
744 | 755 | ||
745 | static int | 756 | static int |
746 | iscsi_if_destroy_session(struct iscsi_internal *priv, struct iscsi_uevent *ev) | 757 | iscsi_if_create_conn(struct iscsi_transport *transport, struct iscsi_uevent *ev) |
747 | { | 758 | { |
748 | struct iscsi_transport *transport = priv->iscsi_transport; | ||
749 | |||
750 | struct Scsi_Host *shost; | ||
751 | |||
752 | if (!transport->destroy_session) | ||
753 | return -EINVAL; | ||
754 | |||
755 | shost = scsi_host_lookup(ev->u.d_session.sid); | ||
756 | if (shost == ERR_PTR(-ENXIO)) | ||
757 | return -EEXIST; | ||
758 | |||
759 | if (transport->destroy_session) | ||
760 | transport->destroy_session(shost); | ||
761 | /* ref from host lookup */ | ||
762 | scsi_host_put(shost); | ||
763 | return 0; | ||
764 | } | ||
765 | |||
766 | static int | ||
767 | iscsi_if_create_conn(struct iscsi_transport *transport, struct iscsi_uevent *ev){ | ||
768 | struct Scsi_Host *shost; | ||
769 | struct iscsi_cls_conn *conn; | 759 | struct iscsi_cls_conn *conn; |
760 | struct iscsi_cls_session *session; | ||
770 | unsigned long flags; | 761 | unsigned long flags; |
771 | 762 | ||
772 | if (!transport->create_conn) | 763 | session = iscsi_session_lookup(ev->u.c_conn.session_handle); |
764 | if (!session) | ||
773 | return -EINVAL; | 765 | return -EINVAL; |
774 | 766 | ||
775 | shost = scsi_host_lookup(ev->u.c_conn.sid); | 767 | conn = transport->create_conn(session, ev->u.c_conn.cid); |
776 | if (shost == ERR_PTR(-ENXIO)) | ||
777 | return -EEXIST; | ||
778 | |||
779 | conn = transport->create_conn(shost, ev->u.c_conn.cid); | ||
780 | if (!conn) | 768 | if (!conn) |
781 | goto release_ref; | 769 | return -ENOMEM; |
782 | 770 | ||
783 | conn->z_pdu = mempool_zone_init(Z_MAX_PDU, | 771 | conn->z_pdu = mempool_zone_init(Z_MAX_PDU, |
784 | NLMSG_SPACE(sizeof(struct iscsi_uevent) + | 772 | NLMSG_SPACE(sizeof(struct iscsi_uevent) + |
@@ -800,14 +788,13 @@ iscsi_if_create_conn(struct iscsi_transport *transport, struct iscsi_uevent *ev) | |||
800 | goto free_pdu_pool; | 788 | goto free_pdu_pool; |
801 | } | 789 | } |
802 | 790 | ||
803 | ev->r.handle = conn->connh = iscsi_handle(conn->dd_data); | 791 | ev->r.handle = iscsi_handle(conn); |
804 | 792 | ||
805 | spin_lock_irqsave(&connlock, flags); | 793 | spin_lock_irqsave(&connlock, flags); |
806 | list_add(&conn->conn_list, &connlist); | 794 | list_add(&conn->conn_list, &connlist); |
807 | conn->active = 1; | 795 | conn->active = 1; |
808 | spin_unlock_irqrestore(&connlock, flags); | 796 | spin_unlock_irqrestore(&connlock, flags); |
809 | 797 | ||
810 | scsi_host_put(shost); | ||
811 | return 0; | 798 | return 0; |
812 | 799 | ||
813 | free_pdu_pool: | 800 | free_pdu_pool: |
@@ -815,8 +802,6 @@ free_pdu_pool: | |||
815 | destroy_conn: | 802 | destroy_conn: |
816 | if (transport->destroy_conn) | 803 | if (transport->destroy_conn) |
817 | transport->destroy_conn(conn->dd_data); | 804 | transport->destroy_conn(conn->dd_data); |
818 | release_ref: | ||
819 | scsi_host_put(shost); | ||
820 | return -ENOMEM; | 805 | return -ENOMEM; |
821 | } | 806 | } |
822 | 807 | ||
@@ -827,13 +812,9 @@ iscsi_if_destroy_conn(struct iscsi_transport *transport, struct iscsi_uevent *ev | |||
827 | struct iscsi_cls_conn *conn; | 812 | struct iscsi_cls_conn *conn; |
828 | struct mempool_zone *z_error, *z_pdu; | 813 | struct mempool_zone *z_error, *z_pdu; |
829 | 814 | ||
830 | conn = iscsi_if_find_conn(ev->u.d_conn.conn_handle); | 815 | conn = iscsi_conn_lookup(ev->u.d_conn.conn_handle); |
831 | if (!conn) | 816 | if (!conn) |
832 | return -EEXIST; | ||
833 | |||
834 | if (!transport->destroy_conn) | ||
835 | return -EINVAL; | 817 | return -EINVAL; |
836 | |||
837 | spin_lock_irqsave(&connlock, flags); | 818 | spin_lock_irqsave(&connlock, flags); |
838 | conn->active = 0; | 819 | conn->active = 0; |
839 | list_del(&conn->conn_list); | 820 | list_del(&conn->conn_list); |
@@ -858,23 +839,27 @@ iscsi_if_recv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) | |||
858 | struct iscsi_uevent *ev = NLMSG_DATA(nlh); | 839 | struct iscsi_uevent *ev = NLMSG_DATA(nlh); |
859 | struct iscsi_transport *transport = NULL; | 840 | struct iscsi_transport *transport = NULL; |
860 | struct iscsi_internal *priv; | 841 | struct iscsi_internal *priv; |
861 | 842 | struct iscsi_cls_session *session; | |
862 | if (NETLINK_CREDS(skb)->uid) | 843 | struct iscsi_cls_conn *conn; |
863 | return -EPERM; | ||
864 | 844 | ||
865 | priv = iscsi_if_transport_lookup(iscsi_ptr(ev->transport_handle)); | 845 | priv = iscsi_if_transport_lookup(iscsi_ptr(ev->transport_handle)); |
866 | if (!priv) | 846 | if (!priv) |
867 | return -EINVAL; | 847 | return -EINVAL; |
868 | transport = priv->iscsi_transport; | 848 | transport = priv->iscsi_transport; |
869 | 849 | ||
870 | daemon_pid = NETLINK_CREDS(skb)->pid; | 850 | if (!try_module_get(transport->owner)) |
851 | return -EINVAL; | ||
871 | 852 | ||
872 | switch (nlh->nlmsg_type) { | 853 | switch (nlh->nlmsg_type) { |
873 | case ISCSI_UEVENT_CREATE_SESSION: | 854 | case ISCSI_UEVENT_CREATE_SESSION: |
874 | err = iscsi_if_create_session(priv, ev); | 855 | err = iscsi_if_create_session(priv, ev); |
875 | break; | 856 | break; |
876 | case ISCSI_UEVENT_DESTROY_SESSION: | 857 | case ISCSI_UEVENT_DESTROY_SESSION: |
877 | err = iscsi_if_destroy_session(priv, ev); | 858 | session = iscsi_session_lookup(ev->u.d_session.session_handle); |
859 | if (session) | ||
860 | transport->destroy_session(session); | ||
861 | else | ||
862 | err = -EINVAL; | ||
878 | break; | 863 | break; |
879 | case ISCSI_UEVENT_CREATE_CONN: | 864 | case ISCSI_UEVENT_CREATE_CONN: |
880 | err = iscsi_if_create_conn(transport, ev); | 865 | err = iscsi_if_create_conn(transport, ev); |
@@ -883,56 +868,64 @@ iscsi_if_recv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) | |||
883 | err = iscsi_if_destroy_conn(transport, ev); | 868 | err = iscsi_if_destroy_conn(transport, ev); |
884 | break; | 869 | break; |
885 | case ISCSI_UEVENT_BIND_CONN: | 870 | case ISCSI_UEVENT_BIND_CONN: |
886 | if (!iscsi_if_find_conn(ev->u.b_conn.conn_handle)) | 871 | session = iscsi_session_lookup(ev->u.b_conn.session_handle); |
887 | return -EEXIST; | 872 | conn = iscsi_conn_lookup(ev->u.b_conn.conn_handle); |
888 | ev->r.retcode = transport->bind_conn( | 873 | |
889 | ev->u.b_conn.session_handle, | 874 | if (session && conn) |
890 | ev->u.b_conn.conn_handle, | 875 | ev->r.retcode = transport->bind_conn(session, conn, |
891 | ev->u.b_conn.transport_fd, | 876 | ev->u.b_conn.transport_fd, |
892 | ev->u.b_conn.is_leading); | 877 | ev->u.b_conn.is_leading); |
878 | else | ||
879 | err = -EINVAL; | ||
893 | break; | 880 | break; |
894 | case ISCSI_UEVENT_SET_PARAM: | 881 | case ISCSI_UEVENT_SET_PARAM: |
895 | if (!iscsi_if_find_conn(ev->u.set_param.conn_handle)) | 882 | conn = iscsi_conn_lookup(ev->u.set_param.conn_handle); |
896 | return -EEXIST; | 883 | if (conn) |
897 | ev->r.retcode = transport->set_param( | 884 | ev->r.retcode = transport->set_param(conn, |
898 | ev->u.set_param.conn_handle, | 885 | ev->u.set_param.param, ev->u.set_param.value); |
899 | ev->u.set_param.param, ev->u.set_param.value); | 886 | else |
887 | err = -EINVAL; | ||
900 | break; | 888 | break; |
901 | case ISCSI_UEVENT_START_CONN: | 889 | case ISCSI_UEVENT_START_CONN: |
902 | if (!iscsi_if_find_conn(ev->u.start_conn.conn_handle)) | 890 | conn = iscsi_conn_lookup(ev->u.start_conn.conn_handle); |
903 | return -EEXIST; | 891 | if (conn) |
904 | ev->r.retcode = transport->start_conn( | 892 | ev->r.retcode = transport->start_conn(conn); |
905 | ev->u.start_conn.conn_handle); | 893 | else |
894 | err = -EINVAL; | ||
895 | |||
906 | break; | 896 | break; |
907 | case ISCSI_UEVENT_STOP_CONN: | 897 | case ISCSI_UEVENT_STOP_CONN: |
908 | if (!iscsi_if_find_conn(ev->u.stop_conn.conn_handle)) | 898 | conn = iscsi_conn_lookup(ev->u.stop_conn.conn_handle); |
909 | return -EEXIST; | 899 | if (conn) |
910 | transport->stop_conn(ev->u.stop_conn.conn_handle, | 900 | transport->stop_conn(conn, ev->u.stop_conn.flag); |
911 | ev->u.stop_conn.flag); | 901 | else |
902 | err = -EINVAL; | ||
912 | break; | 903 | break; |
913 | case ISCSI_UEVENT_SEND_PDU: | 904 | case ISCSI_UEVENT_SEND_PDU: |
914 | if (!iscsi_if_find_conn(ev->u.send_pdu.conn_handle)) | 905 | conn = iscsi_conn_lookup(ev->u.send_pdu.conn_handle); |
915 | return -EEXIST; | 906 | if (conn) |
916 | ev->r.retcode = transport->send_pdu( | 907 | ev->r.retcode = transport->send_pdu(conn, |
917 | ev->u.send_pdu.conn_handle, | 908 | (struct iscsi_hdr*)((char*)ev + sizeof(*ev)), |
918 | (struct iscsi_hdr*)((char*)ev + sizeof(*ev)), | 909 | (char*)ev + sizeof(*ev) + ev->u.send_pdu.hdr_size, |
919 | (char*)ev + sizeof(*ev) + ev->u.send_pdu.hdr_size, | 910 | ev->u.send_pdu.data_size); |
920 | ev->u.send_pdu.data_size); | 911 | else |
912 | err = -EINVAL; | ||
921 | break; | 913 | break; |
922 | case ISCSI_UEVENT_GET_STATS: | 914 | case ISCSI_UEVENT_GET_STATS: |
923 | err = iscsi_if_get_stats(transport, skb, nlh); | 915 | err = iscsi_if_get_stats(transport, nlh); |
924 | break; | 916 | break; |
925 | default: | 917 | default: |
926 | err = -EINVAL; | 918 | err = -EINVAL; |
927 | break; | 919 | break; |
928 | } | 920 | } |
929 | 921 | ||
922 | module_put(transport->owner); | ||
930 | return err; | 923 | return err; |
931 | } | 924 | } |
932 | 925 | ||
933 | /* Get message from skb (based on rtnetlink_rcv_skb). Each message is | 926 | /* Get message from skb (based on rtnetlink_rcv_skb). Each message is |
934 | * processed by iscsi_if_recv_msg. Malformed skbs with wrong length are | 927 | * processed by iscsi_if_recv_msg. Malformed skbs with wrong length are |
935 | * discarded silently. */ | 928 | * or invalid creds discarded silently. */ |
936 | static void | 929 | static void |
937 | iscsi_if_rx(struct sock *sk, int len) | 930 | iscsi_if_rx(struct sock *sk, int len) |
938 | { | 931 | { |
@@ -940,6 +933,12 @@ iscsi_if_rx(struct sock *sk, int len) | |||
940 | 933 | ||
941 | mutex_lock(&rx_queue_mutex); | 934 | mutex_lock(&rx_queue_mutex); |
942 | while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) { | 935 | while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) { |
936 | if (NETLINK_CREDS(skb)->uid) { | ||
937 | skb_pull(skb, skb->len); | ||
938 | goto free_skb; | ||
939 | } | ||
940 | daemon_pid = NETLINK_CREDS(skb)->pid; | ||
941 | |||
943 | while (skb->len >= NLMSG_SPACE(0)) { | 942 | while (skb->len >= NLMSG_SPACE(0)) { |
944 | int err; | 943 | int err; |
945 | uint32_t rlen; | 944 | uint32_t rlen; |
@@ -951,10 +950,12 @@ iscsi_if_rx(struct sock *sk, int len) | |||
951 | skb->len < nlh->nlmsg_len) { | 950 | skb->len < nlh->nlmsg_len) { |
952 | break; | 951 | break; |
953 | } | 952 | } |
953 | |||
954 | ev = NLMSG_DATA(nlh); | 954 | ev = NLMSG_DATA(nlh); |
955 | rlen = NLMSG_ALIGN(nlh->nlmsg_len); | 955 | rlen = NLMSG_ALIGN(nlh->nlmsg_len); |
956 | if (rlen > skb->len) | 956 | if (rlen > skb->len) |
957 | rlen = skb->len; | 957 | rlen = skb->len; |
958 | |||
958 | err = iscsi_if_recv_msg(skb, nlh); | 959 | err = iscsi_if_recv_msg(skb, nlh); |
959 | if (err) { | 960 | if (err) { |
960 | ev->type = ISCSI_KEVENT_IF_ERROR; | 961 | ev->type = ISCSI_KEVENT_IF_ERROR; |
@@ -978,6 +979,7 @@ iscsi_if_rx(struct sock *sk, int len) | |||
978 | } while (err < 0 && err != -ECONNREFUSED); | 979 | } while (err < 0 && err != -ECONNREFUSED); |
979 | skb_pull(skb, rlen); | 980 | skb_pull(skb, rlen); |
980 | } | 981 | } |
982 | free_skb: | ||
981 | kfree_skb(skb); | 983 | kfree_skb(skb); |
982 | } | 984 | } |
983 | mutex_unlock(&rx_queue_mutex); | 985 | mutex_unlock(&rx_queue_mutex); |
@@ -997,7 +999,7 @@ show_conn_int_param_##param(struct class_device *cdev, char *buf) \ | |||
997 | struct iscsi_cls_conn *conn = iscsi_cdev_to_conn(cdev); \ | 999 | struct iscsi_cls_conn *conn = iscsi_cdev_to_conn(cdev); \ |
998 | struct iscsi_transport *t = conn->transport; \ | 1000 | struct iscsi_transport *t = conn->transport; \ |
999 | \ | 1001 | \ |
1000 | t->get_conn_param(conn->dd_data, param, &value); \ | 1002 | t->get_conn_param(conn, param, &value); \ |
1001 | return snprintf(buf, 20, format"\n", value); \ | 1003 | return snprintf(buf, 20, format"\n", value); \ |
1002 | } | 1004 | } |
1003 | 1005 | ||
@@ -1024,10 +1026,9 @@ show_session_int_param_##param(struct class_device *cdev, char *buf) \ | |||
1024 | { \ | 1026 | { \ |
1025 | uint32_t value = 0; \ | 1027 | uint32_t value = 0; \ |
1026 | struct iscsi_cls_session *session = iscsi_cdev_to_session(cdev); \ | 1028 | struct iscsi_cls_session *session = iscsi_cdev_to_session(cdev); \ |
1027 | struct Scsi_Host *shost = iscsi_session_to_shost(session); \ | ||
1028 | struct iscsi_transport *t = session->transport; \ | 1029 | struct iscsi_transport *t = session->transport; \ |
1029 | \ | 1030 | \ |
1030 | t->get_session_param(shost, param, &value); \ | 1031 | t->get_session_param(session, param, &value); \ |
1031 | return snprintf(buf, 20, format"\n", value); \ | 1032 | return snprintf(buf, 20, format"\n", value); \ |
1032 | } | 1033 | } |
1033 | 1034 | ||
@@ -1121,7 +1122,6 @@ iscsi_register_transport(struct iscsi_transport *tt) | |||
1121 | return NULL; | 1122 | return NULL; |
1122 | memset(priv, 0, sizeof(*priv)); | 1123 | memset(priv, 0, sizeof(*priv)); |
1123 | INIT_LIST_HEAD(&priv->list); | 1124 | INIT_LIST_HEAD(&priv->list); |
1124 | INIT_LIST_HEAD(&priv->sessions); | ||
1125 | priv->iscsi_transport = tt; | 1125 | priv->iscsi_transport = tt; |
1126 | 1126 | ||
1127 | priv->cdev.class = &iscsi_transport_class; | 1127 | priv->cdev.class = &iscsi_transport_class; |
diff --git a/drivers/scsi/scsi_transport_sas.c b/drivers/scsi/scsi_transport_sas.c index a3e0b7bc2d7b..210dab5879fa 100644 --- a/drivers/scsi/scsi_transport_sas.c +++ b/drivers/scsi/scsi_transport_sas.c | |||
@@ -377,7 +377,7 @@ static void sas_phy_release(struct device *dev) | |||
377 | /** | 377 | /** |
378 | * sas_phy_alloc -- allocates and initialize a SAS PHY structure | 378 | * sas_phy_alloc -- allocates and initialize a SAS PHY structure |
379 | * @parent: Parent device | 379 | * @parent: Parent device |
380 | * @number: Port number | 380 | * @number: Phy index |
381 | * | 381 | * |
382 | * Allocates an SAS PHY structure. It will be added in the device tree | 382 | * Allocates an SAS PHY structure. It will be added in the device tree |
383 | * below the device specified by @parent, which has to be either a Scsi_Host | 383 | * below the device specified by @parent, which has to be either a Scsi_Host |
@@ -595,8 +595,8 @@ struct sas_rphy *sas_rphy_alloc(struct sas_phy *parent) | |||
595 | device_initialize(&rphy->dev); | 595 | device_initialize(&rphy->dev); |
596 | rphy->dev.parent = get_device(&parent->dev); | 596 | rphy->dev.parent = get_device(&parent->dev); |
597 | rphy->dev.release = sas_rphy_release; | 597 | rphy->dev.release = sas_rphy_release; |
598 | sprintf(rphy->dev.bus_id, "rphy-%d:%d", | 598 | sprintf(rphy->dev.bus_id, "rphy-%d:%d-%d", |
599 | shost->host_no, parent->number); | 599 | shost->host_no, parent->port_identifier, parent->number); |
600 | transport_setup_device(&rphy->dev); | 600 | transport_setup_device(&rphy->dev); |
601 | 601 | ||
602 | return rphy; | 602 | return rphy; |
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index 930db398d107..9d9872347f56 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c | |||
@@ -89,6 +89,11 @@ | |||
89 | #define SD_MAX_RETRIES 5 | 89 | #define SD_MAX_RETRIES 5 |
90 | #define SD_PASSTHROUGH_RETRIES 1 | 90 | #define SD_PASSTHROUGH_RETRIES 1 |
91 | 91 | ||
92 | /* | ||
93 | * Size of the initial data buffer for mode and read capacity data | ||
94 | */ | ||
95 | #define SD_BUF_SIZE 512 | ||
96 | |||
92 | static void scsi_disk_release(struct kref *kref); | 97 | static void scsi_disk_release(struct kref *kref); |
93 | 98 | ||
94 | struct scsi_disk { | 99 | struct scsi_disk { |
@@ -1239,7 +1244,7 @@ sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage, | |||
1239 | 1244 | ||
1240 | /* | 1245 | /* |
1241 | * read write protect setting, if possible - called only in sd_revalidate_disk() | 1246 | * read write protect setting, if possible - called only in sd_revalidate_disk() |
1242 | * called with buffer of length 512 | 1247 | * called with buffer of length SD_BUF_SIZE |
1243 | */ | 1248 | */ |
1244 | static void | 1249 | static void |
1245 | sd_read_write_protect_flag(struct scsi_disk *sdkp, char *diskname, | 1250 | sd_read_write_protect_flag(struct scsi_disk *sdkp, char *diskname, |
@@ -1297,7 +1302,7 @@ sd_read_write_protect_flag(struct scsi_disk *sdkp, char *diskname, | |||
1297 | 1302 | ||
1298 | /* | 1303 | /* |
1299 | * sd_read_cache_type - called only from sd_revalidate_disk() | 1304 | * sd_read_cache_type - called only from sd_revalidate_disk() |
1300 | * called with buffer of length 512 | 1305 | * called with buffer of length SD_BUF_SIZE |
1301 | */ | 1306 | */ |
1302 | static void | 1307 | static void |
1303 | sd_read_cache_type(struct scsi_disk *sdkp, char *diskname, | 1308 | sd_read_cache_type(struct scsi_disk *sdkp, char *diskname, |
@@ -1342,6 +1347,8 @@ sd_read_cache_type(struct scsi_disk *sdkp, char *diskname, | |||
1342 | 1347 | ||
1343 | /* Take headers and block descriptors into account */ | 1348 | /* Take headers and block descriptors into account */ |
1344 | len += data.header_length + data.block_descriptor_length; | 1349 | len += data.header_length + data.block_descriptor_length; |
1350 | if (len > SD_BUF_SIZE) | ||
1351 | goto bad_sense; | ||
1345 | 1352 | ||
1346 | /* Get the data */ | 1353 | /* Get the data */ |
1347 | res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr); | 1354 | res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr); |
@@ -1354,6 +1361,12 @@ sd_read_cache_type(struct scsi_disk *sdkp, char *diskname, | |||
1354 | int ct = 0; | 1361 | int ct = 0; |
1355 | int offset = data.header_length + data.block_descriptor_length; | 1362 | int offset = data.header_length + data.block_descriptor_length; |
1356 | 1363 | ||
1364 | if (offset >= SD_BUF_SIZE - 2) { | ||
1365 | printk(KERN_ERR "%s: malformed MODE SENSE response", | ||
1366 | diskname); | ||
1367 | goto defaults; | ||
1368 | } | ||
1369 | |||
1357 | if ((buffer[offset] & 0x3f) != modepage) { | 1370 | if ((buffer[offset] & 0x3f) != modepage) { |
1358 | printk(KERN_ERR "%s: got wrong page\n", diskname); | 1371 | printk(KERN_ERR "%s: got wrong page\n", diskname); |
1359 | goto defaults; | 1372 | goto defaults; |
@@ -1398,6 +1411,7 @@ defaults: | |||
1398 | diskname); | 1411 | diskname); |
1399 | sdkp->WCE = 0; | 1412 | sdkp->WCE = 0; |
1400 | sdkp->RCD = 0; | 1413 | sdkp->RCD = 0; |
1414 | sdkp->DPOFUA = 0; | ||
1401 | } | 1415 | } |
1402 | 1416 | ||
1403 | /** | 1417 | /** |
@@ -1421,7 +1435,7 @@ static int sd_revalidate_disk(struct gendisk *disk) | |||
1421 | if (!scsi_device_online(sdp)) | 1435 | if (!scsi_device_online(sdp)) |
1422 | goto out; | 1436 | goto out; |
1423 | 1437 | ||
1424 | buffer = kmalloc(512, GFP_KERNEL | __GFP_DMA); | 1438 | buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL | __GFP_DMA); |
1425 | if (!buffer) { | 1439 | if (!buffer) { |
1426 | printk(KERN_WARNING "(sd_revalidate_disk:) Memory allocation " | 1440 | printk(KERN_WARNING "(sd_revalidate_disk:) Memory allocation " |
1427 | "failure.\n"); | 1441 | "failure.\n"); |
diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c index 78aad9582bcf..5a0a19322d01 100644 --- a/drivers/scsi/sg.c +++ b/drivers/scsi/sg.c | |||
@@ -741,7 +741,7 @@ sg_common_write(Sg_fd * sfp, Sg_request * srp, | |||
741 | hp->duration = jiffies_to_msecs(jiffies); | 741 | hp->duration = jiffies_to_msecs(jiffies); |
742 | /* Now send everything of to mid-level. The next time we hear about this | 742 | /* Now send everything of to mid-level. The next time we hear about this |
743 | packet is when sg_cmd_done() is called (i.e. a callback). */ | 743 | packet is when sg_cmd_done() is called (i.e. a callback). */ |
744 | if (scsi_execute_async(sdp->device, cmnd, data_dir, srp->data.buffer, | 744 | if (scsi_execute_async(sdp->device, cmnd, hp->cmd_len, data_dir, srp->data.buffer, |
745 | hp->dxfer_len, srp->data.k_use_sg, timeout, | 745 | hp->dxfer_len, srp->data.k_use_sg, timeout, |
746 | SG_DEFAULT_RETRIES, srp, sg_cmd_done, | 746 | SG_DEFAULT_RETRIES, srp, sg_cmd_done, |
747 | GFP_ATOMIC)) { | 747 | GFP_ATOMIC)) { |
@@ -1679,7 +1679,7 @@ static int | |||
1679 | sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize) | 1679 | sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize) |
1680 | { | 1680 | { |
1681 | int sg_bufflen = tablesize * sizeof(struct scatterlist); | 1681 | int sg_bufflen = tablesize * sizeof(struct scatterlist); |
1682 | unsigned int gfp_flags = GFP_ATOMIC | __GFP_NOWARN; | 1682 | gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN; |
1683 | 1683 | ||
1684 | /* | 1684 | /* |
1685 | * TODO: test without low_dma, we should not need it since | 1685 | * TODO: test without low_dma, we should not need it since |
@@ -2162,7 +2162,7 @@ sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size) | |||
2162 | 2162 | ||
2163 | srp->res_used = 1; | 2163 | srp->res_used = 1; |
2164 | SCSI_LOG_TIMEOUT(4, printk("sg_link_reserve: size=%d\n", size)); | 2164 | SCSI_LOG_TIMEOUT(4, printk("sg_link_reserve: size=%d\n", size)); |
2165 | rem = size = (size + 1) & (~1); /* round to even for aha1542 */ | 2165 | rem = size; |
2166 | 2166 | ||
2167 | for (k = 0; k < rsv_schp->k_use_sg; ++k, ++sg) { | 2167 | for (k = 0; k < rsv_schp->k_use_sg; ++k, ++sg) { |
2168 | num = sg->length; | 2168 | num = sg->length; |
diff --git a/drivers/scsi/sr_ioctl.c b/drivers/scsi/sr_ioctl.c index 5d02ff4db6cc..b65462f76484 100644 --- a/drivers/scsi/sr_ioctl.c +++ b/drivers/scsi/sr_ioctl.c | |||
@@ -192,7 +192,7 @@ int sr_do_ioctl(Scsi_CD *cd, struct packet_command *cgc) | |||
192 | SDev = cd->device; | 192 | SDev = cd->device; |
193 | 193 | ||
194 | if (!sense) { | 194 | if (!sense) { |
195 | sense = kmalloc(sizeof(*sense), GFP_KERNEL); | 195 | sense = kmalloc(SCSI_SENSE_BUFFERSIZE, GFP_KERNEL); |
196 | if (!sense) { | 196 | if (!sense) { |
197 | err = -ENOMEM; | 197 | err = -ENOMEM; |
198 | goto out; | 198 | goto out; |
diff --git a/drivers/scsi/st.c b/drivers/scsi/st.c index 13b1d3aac265..7f96f33c1bb1 100644 --- a/drivers/scsi/st.c +++ b/drivers/scsi/st.c | |||
@@ -508,7 +508,7 @@ st_do_scsi(struct st_request * SRpnt, struct scsi_tape * STp, unsigned char *cmd | |||
508 | STp->buffer->cmdstat.have_sense = 0; | 508 | STp->buffer->cmdstat.have_sense = 0; |
509 | STp->buffer->syscall_result = 0; | 509 | STp->buffer->syscall_result = 0; |
510 | 510 | ||
511 | if (scsi_execute_async(STp->device, cmd, direction, | 511 | if (scsi_execute_async(STp->device, cmd, COMMAND_SIZE(cmd[0]), direction, |
512 | &((STp->buffer)->sg[0]), bytes, (STp->buffer)->sg_segs, | 512 | &((STp->buffer)->sg[0]), bytes, (STp->buffer)->sg_segs, |
513 | timeout, retries, SRpnt, st_sleep_done, GFP_KERNEL)) { | 513 | timeout, retries, SRpnt, st_sleep_done, GFP_KERNEL)) { |
514 | /* could not allocate the buffer or request was too large */ | 514 | /* could not allocate the buffer or request was too large */ |
diff --git a/drivers/scsi/sym53c8xx_2/sym_hipd.c b/drivers/scsi/sym53c8xx_2/sym_hipd.c index 8260f040d39c..2627000ca653 100644 --- a/drivers/scsi/sym53c8xx_2/sym_hipd.c +++ b/drivers/scsi/sym53c8xx_2/sym_hipd.c | |||
@@ -919,6 +919,8 @@ static int sym_prepare_setting(struct Scsi_Host *shost, struct sym_hcb *np, stru | |||
919 | 919 | ||
920 | tp->usrflags |= (SYM_DISC_ENABLED | SYM_TAGS_ENABLED); | 920 | tp->usrflags |= (SYM_DISC_ENABLED | SYM_TAGS_ENABLED); |
921 | tp->usrtags = SYM_SETUP_MAX_TAG; | 921 | tp->usrtags = SYM_SETUP_MAX_TAG; |
922 | tp->usr_width = np->maxwide; | ||
923 | tp->usr_period = 9; | ||
922 | 924 | ||
923 | sym_nvram_setup_target(tp, i, nvram); | 925 | sym_nvram_setup_target(tp, i, nvram); |
924 | 926 | ||
@@ -3588,7 +3590,7 @@ static int sym_evaluate_dp(struct sym_hcb *np, struct sym_ccb *cp, u32 scr, int | |||
3588 | 3590 | ||
3589 | if (pm) { | 3591 | if (pm) { |
3590 | dp_scr = scr_to_cpu(pm->ret); | 3592 | dp_scr = scr_to_cpu(pm->ret); |
3591 | dp_ofs -= scr_to_cpu(pm->sg.size); | 3593 | dp_ofs -= scr_to_cpu(pm->sg.size) & 0x00ffffff; |
3592 | } | 3594 | } |
3593 | 3595 | ||
3594 | /* | 3596 | /* |