diff -ruN dist+patches-2.4.8/drivers/scsi/sym53c8xx.c cobalt-2.4.8/drivers/scsi/sym53c8xx.c --- dist+patches-2.4.8/drivers/scsi/sym53c8xx.c Thu Jul 5 11:28:16 2001 +++ cobalt-2.4.8/drivers/scsi/sym53c8xx.c Mon Aug 13 16:42:25 2001 @@ -113,6 +113,8 @@ #elif LINUX_VERSION_CODE >= LinuxVersionCode(2,1,93) #include #endif +#include +#include #include #include #include @@ -637,8 +639,11 @@ #if LINUX_VERSION_CODE >= LinuxVersionCode(2,1,93) spinlock_t sym53c8xx_lock = SPIN_LOCK_UNLOCKED; +spinlock_t sym53c8xx_host_lock = SPIN_LOCK_UNLOCKED; #define NCR_LOCK_DRIVER(flags) spin_lock_irqsave(&sym53c8xx_lock, flags) #define NCR_UNLOCK_DRIVER(flags) spin_unlock_irqrestore(&sym53c8xx_lock,flags) +#define NCR_LOCK_HOSTS(flags) spin_lock_irqsave(&sym53c8xx_host_lock, flags) +#define NCR_UNLOCK_HOSTS(flags) spin_unlock_irqrestore(&sym53c8xx_host_lock,flags) #define NCR_INIT_LOCK_NCB(np) spin_lock_init(&np->smp_lock); #define NCR_LOCK_NCB(np, flags) spin_lock_irqsave(&np->smp_lock, flags) @@ -653,6 +658,8 @@ #define NCR_LOCK_DRIVER(flags) do { save_flags(flags); cli(); } while (0) #define NCR_UNLOCK_DRIVER(flags) do { restore_flags(flags); } while (0) +#define NCR_LOCK_HOSTS(flags) do { save_flags(flags); cli(); } while (0) +#define NCR_UNLOCK_HOSTS(flags) do { restore_flags(flags); } while (0) #define NCR_INIT_LOCK_NCB(np) do { } while (0) #define NCR_LOCK_NCB(np, flags) do { save_flags(flags); cli(); } while (0) @@ -698,7 +705,7 @@ return page_remapped? (page_remapped + page_offs) : 0UL; } -static void __init unmap_pci_mem(u_long vaddr, u_long size) +static void unmap_pci_mem(u_long vaddr, u_long size) { if (vaddr) iounmap((void *) (vaddr & PAGE_MASK)); @@ -1304,6 +1311,15 @@ int length, int hostno, int func); #endif +/* +** reset the scsi controller on a "reboot." it should be way at the +** end. +*/ +static int sym53c8xx_halt(struct notifier_block *, ulong, void *); +static struct notifier_block sym53c8xx_notifier = { + sym53c8xx_halt, NULL, 0 +}; + /* ** Driver setup. ** @@ -12300,6 +12298,13 @@ ncr_rd = INL (nc_scratcha); ncr_bk = INL (nc_temp); /* + ** check for timeout + */ + if (i>=NCR_SNOOP_TIMEOUT) { + printk ("CACHE TEST FAILED: timeout.\n"); + return (0x20); + }; + /* ** Check termination position. */ if (pc != NCB_SCRIPTH0_PHYS (np, snoopend)+8) { @@ -13072,7 +13077,8 @@ } m_free(devtbl, PAGE_SIZE, "devtbl"); - + if (attach_count) + register_reboot_notifier(&sym53c8xx_notifier); return attach_count; } @@ -13804,19 +13810,49 @@ } +static int sym53c8xx_halt(struct notifier_block *block, ulong event, void *buf) +{ + unsigned long flags; + struct Scsi_Host *host, *next; + + switch (event) { + case SYS_RESTART: + case SYS_HALT: + case SYS_POWER_OFF: + break; + default: + return NOTIFY_DONE; + } + + printk(KERN_INFO "resetting sym53c8xx scsi bus(es)\n"); + NCR_LOCK_HOSTS(flags); + next = first_host; + while ((host = next)) { + struct host_data *data = (struct host_data *)host->hostdata; + + next = host->next; + if (data && data->ncb) + ncr_detach(data->ncb); + } + NCR_UNLOCK_HOSTS(flags); + + return NOTIFY_OK; +} + #ifdef MODULE int sym53c8xx_release(struct Scsi_Host *host) { #ifdef DEBUG_SYM53C8XX printk("sym53c8xx : release\n"); #endif + if (first_host) + unregister_reboot_notifier(&sym53c8xx_notifier); ncr_detach(((struct host_data *) host->hostdata)->ncb); return 1; } #endif - /* ** Scsi command waiting list management. ** @@ -14211,13 +14247,15 @@ { struct Scsi_Host *host; struct host_data *host_data; + unsigned long flags; ncb_p ncb = 0; - int retv; + int retv = -EINVAL; #ifdef DEBUG_PROC_INFO printk("sym53c8xx_proc_info: hostno=%d, func=%d\n", hostno, func); #endif + NCR_LOCK_HOSTS(flags); for (host = first_host; host; host = host->next) { if (host->hostt != first_host->hostt) continue; @@ -14229,25 +14267,22 @@ } if (!ncb) - return -EINVAL; + goto proc_done; if (func) { #ifdef SCSI_NCR_USER_COMMAND_SUPPORT retv = ncr_user_command(ncb, buffer, length); -#else - retv = -EINVAL; #endif - } - else { + } else { if (start) *start = buffer; #ifdef SCSI_NCR_USER_INFO_SUPPORT retv = ncr_host_info(ncb, buffer, offset, length); -#else - retv = -EINVAL; #endif } + NCR_UNLOCK_HOSTS(flags); +proc_done: return retv; }