linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: Initio 9100 Driver for Linux
       [not found] <200107052057.WAA06239@arnhem.blackstar.nl>
@ 2001-07-06  7:57 ` bvermeul
  0 siblings, 0 replies; 5+ messages in thread
From: bvermeul @ 2001-07-06  7:57 UTC (permalink / raw)
  To: Trevor Hemsley; +Cc: linux-kernel

> There's a bug in i91uscsi.c, init_tulip where it cycles through the
> onboard NVRAM config. On the controller there's a single byte per
> device but it cycles through the NVRAM in words. Since x86 words are
> two bytes a piece this means that the code uses the NVRAM config for
> the device on twice the SCSI id - the only one that's right is the one
> on id 0.
>
> The patch below has been working here since January - though I've just
> extracted this one fix from a much larger modification that I've done
> to the driver - proc fs support, merging of i91uscsi.h and ini9100u.h
> since they contain many of the same definitions but the two definitions
> are different which looks extremely dangerous to me! i91uscsi.h is no
> more here.

'k. What I don't get about your patch is the following:

1. There seems to be a typo in there (You change NVM_SCSIInfo
   into NVMSCSIInfo, without patching the header file, which just won't
   work). Another type is changing NVM into MVM on the same line.
2. You change the pwFlags into pTarg, without actually changing anything,
   since pwFlags is defined as BYTE, which is defined as unsigned char
   in i91uscsi.h. The name may be confusing, but then please just change
   the name.
3. The original code (which was not written by me, of which I *know* that
   it's butt-ugly, but that works for my situation) filters out
   TCF_SYNC_DONE and TCF_WDTR_DONE. So the only thing you changed is
   not filtering out those flags. If that's what you want to do,
   please just do that.

On another note, if you'd like to get the documentation for the chipset,
so you can rewrite the driver from scratch, please just let me know.
I don't really have the time to get this thing properly updated, and it
would be a pity if it dropped out of 2.5.

The same goes for the Initio A100 driver. If you're serious, I'm willing
to send you the card and documentation I have.

Regards,

Bas Vermeulen

> --- drivers/scsi/i91uscsi.cold	Thu Jul  5 20:50:04 2001
> +++ drivers/scsi/i91uscsi.c	Thu Jul  5 20:55:03 2001
> @@ -590,8 +590,8 @@
>  int init_tulip(HCS * pCurHcb, SCB * scbp, int tul_num_scb, BYTE * pbBiosAdr, int seconds)
>  {
>  	int i;
> -	BYTE *pwFlags;
>  	BYTE *pbHeads;
> +	UCHAR *pTarg;
>  	SCB *pTmpScb, *pPrevScb = NULL;
>
>  	pCurHcb->HCS_NumScbs = tul_num_scb;
> @@ -673,12 +673,12 @@
>  	TUL_WR(pCurHcb->HCS_Base + TUL_GCTRL1,
>  	       ((pCurHcb->HCS_Config & HCC_AUTO_TERM) >> 4) | (TUL_RD(pCurHcb->HCS_Base, TUL_GCTRL1) & 0xFE));
>
> +	pTarg = &i91unvramp->NVMSCSIInfo[0].MVM_Targ0Config;
>  	for (i = 0,
> -	     pwFlags = & (i91unvramp->NVM_SCSIInfo[0].NVM_Targ0Config),
>  	     pbHeads = pbBiosAdr + 0x180;
>  	     i < pCurHcb->HCS_MaxTar;
> -	     i++, pwFlags++) {
> -		pCurHcb->HCS_Tcs[i].TCS_Flags = *pwFlags & ~(TCF_SYNC_DONE | TCF_WDTR_DONE);
> +	     i++) {
> +		pCurHcb->HCS_Tcs[i].TCS_Flags = *(pTarg+i);
>  		if (pCurHcb->HCS_Tcs[i].TCS_Flags & TCF_EN_255)
>  			pCurHcb->HCS_Tcs[i].TCS_DrvFlags = TCF_DRV_255_63;
>  		else
>
>
> Trevor Hemsley, Brighton, UK.
> Trevor-Hemsley@dial.pipex.com
>

-- 
"God, root, what is difference?"
	-- Pitr, User Friendly

"God is more forgiving."
	-- Dave Aronson



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Initio 9100 Driver for Linux
@ 2001-07-06 20:43 Trevor Hemsley
  0 siblings, 0 replies; 5+ messages in thread
From: Trevor Hemsley @ 2001-07-06 20:43 UTC (permalink / raw)
  To: linux-kernel

On Fri, 6 Jul 2001 07:56:39, bvermeul@devel.blackstar.nl wrote:

> What I don't get about your patch is the following:

Two things: 

1) I must not try to type in patches while watching my phone bill to 
BT click up the pennies!
2) I must check the source I'm diffing against to make sure that Alan 
hasn't fixed the bug in the AC series already!

;-)

-- 
Trevor Hemsley, Brighton, UK.
Trevor-Hemsley@dial.pipex.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Initio 9100 Driver for Linux
@ 2001-07-05 21:08 Trevor Hemsley
  0 siblings, 0 replies; 5+ messages in thread
From: Trevor Hemsley @ 2001-07-05 21:08 UTC (permalink / raw)
  To: linux-kernel; +Cc: bvermeul

On Thu, 5 Jul 2001 11:32:12, bvermeul@devel.blackstar.nl wrote:

> > I have a problem with the driver for Initio SCSI Controller 9100 SCSI,
> > a dual channel UW SCSI-Controller. On checking the SCSI bus the systems
> > has problems to initialize the CD-RW Sanyo (aka Brainwave) BP4-N SCSI
> > The CD-RW has SCSI-ID 6 on the second Controller. It is shown on
> > system startup an GENERIC CRD-BP4
> >
> > I had this problem both with Kernel 2.2.17 and 2.2.19.
>  
> Check your termination. The initio drivers are very sensitive to
> termination errors (use active if possible), and make sure you follow all
> the normal rules regarding scsi.
>  
> Most problems I've seen are caused by lousy termination, or using three
> way busses. I've also seen some problems with some cd writers (Yamaha to
> be exact), that I haven't been able to solve yet.

There's a bug in i91uscsi.c, init_tulip where it cycles through the onboard NVRAM 
config. On the controller there's a single byte per device but it cycles through the 
NVRAM in words. Since x86 words are two bytes a piece this means that the 
code uses the NVRAM config for the device on twice the SCSI id - the only one 
that's right is the one on id 0.

The patch below has been working here since January - though I've just extracted 
this one fix from a much larger modification that I've done to the driver - proc fs
support, merging of i91uscsi.h and ini9100u.h since they contain many of the
same definitions but the two definitions are different which looks extremely
dangerous to me! i91uscsi.h is no more here. 

I may have missed something with this one fix.

--- drivers/scsi/i91uscsi.cold	Thu Jul  5 20:50:04 2001
+++ drivers/scsi/i91uscsi.c	Thu Jul  5 20:55:03 2001
@@ -590,8 +590,8 @@
 int init_tulip(HCS * pCurHcb, SCB * scbp, int tul_num_scb, BYTE * pbBiosAdr, int seconds)
 {
 	int i;
-	BYTE *pwFlags;
 	BYTE *pbHeads;
+	UCHAR *pTarg;
 	SCB *pTmpScb, *pPrevScb = NULL;
 
 	pCurHcb->HCS_NumScbs = tul_num_scb;
@@ -673,12 +673,12 @@
 	TUL_WR(pCurHcb->HCS_Base + TUL_GCTRL1,
 	       ((pCurHcb->HCS_Config & HCC_AUTO_TERM) >> 4) | (TUL_RD(pCurHcb->HCS_Base, TUL_GCTRL1) & 0xFE));
 
+	pTarg = &i91unvramp->NVMSCSIInfo[0].MVM_Targ0Config;
 	for (i = 0,
-	     pwFlags = & (i91unvramp->NVM_SCSIInfo[0].NVM_Targ0Config),
 	     pbHeads = pbBiosAdr + 0x180;
 	     i < pCurHcb->HCS_MaxTar;
-	     i++, pwFlags++) {
-		pCurHcb->HCS_Tcs[i].TCS_Flags = *pwFlags & ~(TCF_SYNC_DONE | TCF_WDTR_DONE);
+	     i++) {
+		pCurHcb->HCS_Tcs[i].TCS_Flags = *(pTarg+i);
 		if (pCurHcb->HCS_Tcs[i].TCS_Flags & TCF_EN_255)
 			pCurHcb->HCS_Tcs[i].TCS_DrvFlags = TCF_DRV_255_63;
 		else


Trevor Hemsley, Brighton, UK.
Trevor-Hemsley@dial.pipex.com


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Initio 9100 Driver for Linux
  2001-07-04  6:25 Ingo
@ 2001-07-05  7:46 ` bvermeul
  0 siblings, 0 replies; 5+ messages in thread
From: bvermeul @ 2001-07-05  7:46 UTC (permalink / raw)
  To: Ingo; +Cc: linux-kernel, kuemmel

Hi Ingo,

> I have a problem with the driver for Initio SCSI Controller 9100 SCSI,
> a dual channel UW SCSI-Controller. On checking the SCSI bus the systems
> has problems to initialize the CD-RW Sanyo (aka Brainwave) BP4-N SCSI
> The CD-RW has SCSI-ID 6 on the second Controller. It is shown on
> system startup an GENERIC CRD-BP4
>
> I had this problem both with Kernel 2.2.17 and 2.2.19.

Check your termination. The initio drivers are very sensitive to
termination errors (use active if possible), and make sure you follow all
the normal rules regarding scsi.

Most problems I've seen are caused by lousy termination, or using three
way busses. I've also seen some problems with some cd writers (Yamaha to
be exact), that I haven't been able to solve yet.

Regards,

Bas Vermeulen

-- 
"God, root, what is difference?"
	-- Pitr, User Friendly

"God is more forgiving."
	-- Dave Aronson


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Initio 9100 Driver for Linux
@ 2001-07-04  6:25 Ingo
  2001-07-05  7:46 ` bvermeul
  0 siblings, 1 reply; 5+ messages in thread
From: Ingo @ 2001-07-04  6:25 UTC (permalink / raw)
  To: linux-kernel; +Cc: tischer, kuemmel

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1283 bytes --]

Hallo,

I have a problem with the driver for Initio SCSI Controller 9100 SCSI,
a dual channel UW SCSI-Controller. On checking the SCSI bus the systems
has problems to initialize the CD-RW Sanyo (aka Brainwave) BP4-N SCSI
The CD-RW has SCSI-ID 6 on the second Controller. It is shown on
system startup an GENERIC CRD-BP4 

scsi: aborting command due to timeout: pid 72, scsi 1, channel 0, id 6 lun
1 inquery 20 00 00 ff 00
SCSI host 1 abort (pid 70) timed out - resetting
SCSI bus is being reset for host 1 channel 0
SCSI host 1 channel 0 (pid 72) timed out - trying harder
SCSI bus is being reset for host 1 channel 0
tul_bad_seq.c=1

The rest of the messages I could not get because it scrolls too
fast. That's why I attached the /var/log/messages file to give you all the
needed information.

My system is a dual processor PIII-700 system with 512MB RAM.
The systems needed very much time (about the quarter of an hour) to boot
up if I turn on the CD-writer. This time I have been waiting for half an
hour without reaching the login sequence.

When I try to access it after boot the system gives error messages similar
to the one I mentioned above.

I had this problem both with Kernel 2.2.17 and 2.2.19.

Please help me.

Kind regards

Ingo Tischer
tischer@mathematik.uni-ulm.de


[-- Attachment #2: /var/log/messages --]
[-- Type: TEXT/PLAIN, Size: 24963 bytes --]

Jul  4 07:54:07 deepthought syslogd 1.3-3#33.1: restart.
Jul  4 07:54:07 deepthought kernel: klogd 1.3-3#33.1, log source = /proc/kmsg started.
Jul  4 07:54:07 deepthought kernel: Inspecting /boot/System.map-2.2.19
Jul  4 07:54:07 deepthought kernel: Loaded 7539 symbols from /boot/System.map-2.2.19.
Jul  4 07:54:07 deepthought kernel: Symbols match kernel version 2.2.19.
Jul  4 07:54:07 deepthought kernel: Loaded 335 symbols from 20 modules.
Jul  4 07:54:07 deepthought kernel: . OK.
Jul  4 07:54:07 deepthought kernel: POSIX conformance testing by UNIFIX
Jul  4 07:54:07 deepthought kernel: mtrr: v1.35a (19990819) Richard Gooch (rgooch@atnf.csiro.au)
Jul  4 07:54:07 deepthought kernel: Intel machine check architecture supported.
Jul  4 07:54:07 deepthought kernel: Intel machine check reporting enabled on CPU#0.
Jul  4 07:54:07 deepthought kernel: 256K L2 cache (8 way)
Jul  4 07:54:07 deepthought kernel: CPU: L2 Cache: 256K
Jul  4 07:54:07 deepthought kernel: per-CPU timeslice cutoff: 50.03 usecs.
Jul  4 07:54:07 deepthought kernel: CPU0: Intel Pentium III (Coppermine) stepping 03
Jul  4 07:54:07 deepthought kernel: calibrating APIC timer ... 
Jul  4 07:54:07 deepthought kernel: ..... CPU clock speed is 701.6274 MHz.
Jul  4 07:54:07 deepthought kernel: ..... system bus clock speed is 100.2323 MHz.
Jul  4 07:54:07 deepthought kernel: Booting processor 1 eip 2000
Jul  4 07:54:07 deepthought kernel: Calibrating delay loop... 1402.47 BogoMIPS
Jul  4 07:54:07 deepthought kernel: Intel machine check reporting enabled on CPU#1.
Jul  4 07:54:07 deepthought kernel: 256K L2 cache (8 way)
Jul  4 07:54:07 deepthought kernel: CPU: L2 Cache: 256K
Jul  4 07:54:07 deepthought kernel: OK.
Jul  4 07:54:07 deepthought kernel: CPU1: Intel Pentium III (Coppermine) stepping 03
Jul  4 07:54:07 deepthought kernel: Total of 2 processors activated (2801.66 BogoMIPS).
Jul  4 07:54:07 deepthought kernel: enabling symmetric IO mode... ...done.
Jul  4 07:54:07 deepthought kernel: ENABLING IO-APIC IRQs
Jul  4 07:54:07 deepthought kernel: init IO_APIC IRQs
Jul  4 07:54:07 deepthought kernel:  IO-APIC (apicid-pin) 2-0, 2-11, 2-14, 2-15, 2-18, 2-20, 2-21, 2-22, 2-23 not connected.
Jul  4 07:54:07 deepthought kernel: number of MP IRQ sources: 21.
Jul  4 07:54:07 deepthought kernel: number of IO-APIC #2 registers: 24.
Jul  4 07:54:07 deepthought kernel: testing the IO APIC.......................
Jul  4 07:54:07 deepthought kernel: 
Jul  4 07:54:07 deepthought kernel: IO APIC #2......
Jul  4 07:54:07 deepthought kernel: .... register #00: 02000000
Jul  4 07:54:07 deepthought kernel: .......    : physical APIC id: 02
Jul  4 07:54:07 deepthought kernel: .... register #01: 00170011
Jul  4 07:54:07 deepthought kernel: .......     : max redirection entries: 0017
Jul  4 07:54:07 deepthought kernel: .......     : IO APIC version: 0011
Jul  4 07:54:07 deepthought kernel: .... register #02: 00000000
Jul  4 07:54:07 deepthought kernel: .......     : arbitration: 00
Jul  4 07:54:07 deepthought kernel: .... IRQ redirection table:
Jul  4 07:54:07 deepthought kernel:  NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:   
Jul  4 07:54:07 deepthought kernel:  00 000 00  1    0    0   0   0    0    0    00
Jul  4 07:54:07 deepthought kernel:  01 000 00  0    0    0   0   0    1    1    59
Jul  4 07:54:07 deepthought kernel:  02 0FF 0F  0    0    0   0   0    1    1    51
Jul  4 07:54:07 deepthought kernel:  03 000 00  0    0    0   0   0    1    1    61
Jul  4 07:54:07 deepthought kernel:  04 000 00  0    0    0   0   0    1    1    69
Jul  4 07:54:07 deepthought kernel:  05 000 00  0    0    0   0   0    1    1    71
Jul  4 07:54:07 deepthought kernel:  06 000 00  0    0    0   0   0    1    1    79
Jul  4 07:54:07 deepthought kernel:  07 000 00  0    0    0   0   0    1    1    81
Jul  4 07:54:07 deepthought kernel:  08 000 00  0    0    0   0   0    1    1    89
Jul  4 07:54:07 deepthought kernel:  09 000 00  0    0    0   0   0    1    1    91
Jul  4 07:54:07 deepthought kernel:  0a 000 00  0    0    0   0   0    1    1    99
Jul  4 07:54:07 deepthought kernel:  0b 000 00  1    0    0   0   0    0    0    00
Jul  4 07:54:07 deepthought kernel:  0c 000 00  0    0    0   0   0    1    1    A1
Jul  4 07:54:07 deepthought kernel:  0d 000 00  1    0    0   0   0    0    0    00
Jul  4 07:54:07 deepthought kernel:  0e 000 00  1    0    0   0   0    0    0    00
Jul  4 07:54:07 deepthought kernel:  0f 000 00  1    0    0   0   0    0    0    00
Jul  4 07:54:07 deepthought kernel:  10 0FF 0F  1    1    0   1   0    1    1    A9
Jul  4 07:54:07 deepthought kernel:  11 0FF 0F  1    1    0   1   0    1    1    B1
Jul  4 07:54:07 deepthought kernel:  12 000 00  1    0    0   0   0    0    0    00
Jul  4 07:54:07 deepthought kernel:  13 0FF 0F  1    1    0   1   0    1    1    B9
Jul  4 07:54:07 deepthought kernel:  14 000 00  1    0    0   0   0    0    0    00
Jul  4 07:54:07 deepthought kernel:  15 000 00  1    0    0   0   0    0    0    00
Jul  4 07:54:07 deepthought kernel:  16 000 00  1    0    0   0   0    0    0    00
Jul  4 07:54:07 deepthought kernel:  17 000 00  1    0    0   0   0    0    0    00
Jul  4 07:54:07 deepthought kernel: .................................... done.
Jul  4 07:54:07 deepthought kernel: PCI: PCI BIOS revision 2.10 entry at 0xfdb71
Jul  4 07:54:07 deepthought kernel: PCI: Using configuration type 1
Jul  4 07:54:07 deepthought kernel: PCI: Probing PCI hardware
Jul  4 07:54:07 deepthought kernel: PCI->APIC IRQ transform: (B0,I7,P3) -> 19
Jul  4 07:54:07 deepthought kernel: PCI->APIC IRQ transform: (B0,I17,P0) -> 17
Jul  4 07:54:07 deepthought kernel: PCI->APIC IRQ transform: (B0,I19,P0) -> 19
Jul  4 07:54:07 deepthought kernel: PCI->APIC IRQ transform: (B0,I19,P0) -> 19
Jul  4 07:54:07 deepthought kernel: PCI->APIC IRQ transform: (B1,I0,P0) -> 16
Jul  4 07:54:07 deepthought kernel: PCI->APIC IRQ transform: (B2,I4,P0) -> 16
Jul  4 07:54:07 deepthought kernel: PCI->APIC IRQ transform: (B2,I8,P0) -> 16
Jul  4 07:54:07 deepthought kernel: Linux NET4.0 for Linux 2.2
Jul  4 07:54:07 deepthought kernel: Based upon Swansea University Computer Society NET3.039
Jul  4 07:54:07 deepthought kernel: NET4: Unix domain sockets 1.0 for Linux NET4.0.
Jul  4 07:54:07 deepthought kernel: NET4: Linux TCP/IP 1.0 for NET4.0
Jul  4 07:54:07 deepthought kernel: IP Protocols: ICMP, UDP, TCP
Jul  4 07:54:07 deepthought kernel: TCP: Hash tables configured (ehash 524288 bhash 65536)
Jul  4 07:54:07 deepthought kernel: Initializing RT netlink socket
Jul  4 07:54:07 deepthought kernel: Starting kswapd v 1.5 
Jul  4 07:54:07 deepthought kernel: Detected PS/2 Mouse Port.
Jul  4 07:54:07 deepthought kernel: Serial driver version 4.27 with no serial options enabled
Jul  4 07:54:07 deepthought kernel: ttyS00 at 0x03f8 (irq = 4) is a 16550A
Jul  4 07:54:07 deepthought kernel: ttyS01 at 0x02f8 (irq = 3) is a 16550A
Jul  4 07:54:07 deepthought kernel: pty: 256 Unix98 ptys configured
Jul  4 07:54:07 deepthought kernel: Floppy drive(s): fd0 is 1.44M
Jul  4 07:54:07 deepthought kernel: FDC 0 is a National Semiconductor PC87306
Jul  4 07:54:07 deepthought kernel: i91u: PCI Base=0xD800, IRQ=16, BIOS=0xCC000, SCSI ID=7
Jul  4 07:54:07 deepthought kernel: i91u: Reset SCSI Bus ... 
Jul  4 07:54:07 deepthought kernel: i91u: PCI Base=0xD400, IRQ=16, BIOS=0xCC020, SCSI ID=7
Jul  4 07:54:07 deepthought kernel: i91u: Reset SCSI Bus ... 
Jul  4 07:54:07 deepthought kernel: scsi0 : Initio INI-9X00U/UW SCSI device driver; Revision: 1.03g
Jul  4 07:54:07 deepthought kernel: scsi1 : Initio INI-9X00U/UW SCSI device driver; Revision: 1.03g
Jul  4 07:54:07 deepthought kernel: scsi : 2 hosts.
Jul  4 07:54:07 deepthought kernel:   Vendor: IBM       Model: DDRS-39130W       Rev: S97B
Jul  4 07:54:07 deepthought kernel:   Type:   Direct-Access                      ANSI SCSI revision: 02
Jul  4 07:54:07 deepthought kernel: Detected scsi disk sda at scsi0, channel 0, id 0, lun 0
Jul  4 07:54:07 deepthought kernel:   Vendor: IBM       Model: DCAS-34330        Rev: S65A
Jul  4 07:54:07 deepthought kernel:   Type:   Direct-Access                      ANSI SCSI revision: 02
Jul  4 07:54:07 deepthought kernel: Detected scsi disk sdb at scsi0, channel 0, id 1, lun 0
Jul  4 07:54:07 deepthought kernel:   Vendor: UMAX      Model: Astra 1200S       Rev: V2.9
Jul  4 07:54:07 deepthought kernel:   Type:   Scanner                            ANSI SCSI revision: 02
Jul  4 07:54:07 deepthought kernel: Detected scsi generic sg2 at scsi0, channel 0, id 6, lun 0
Jul  4 07:54:07 deepthought kernel:   Vendor: IOMEGA    Model: ZIP 100           Rev: J.03
Jul  4 07:54:07 deepthought kernel:   Type:   Direct-Access                      ANSI SCSI revision: 02
Jul  4 07:54:07 deepthought kernel: Detected scsi removable disk sdc at scsi1, channel 0, id 2, lun 0
Jul  4 07:54:07 deepthought kernel:   Vendor: CyberDrv  Model:  CD-ROM TW240S    Rev: 1.40
Jul  4 07:54:07 deepthought kernel:   Type:   CD-ROM                             ANSI SCSI revision: 02
Jul  4 07:54:07 deepthought kernel: Detected scsi CD-ROM sr0 at scsi1, channel 0, id 3, lun 0
Jul  4 07:54:07 deepthought kernel:   Vendor: PLEXTOR   Model: CD-ROM PX-20TS    Rev: 1.02
Jul  4 07:54:07 deepthought kernel:   Type:   CD-ROM                             ANSI SCSI revision: 02
Jul  4 07:54:07 deepthought kernel: Detected scsi CD-ROM sr1 at scsi1, channel 0, id 5, lun 0
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 70, scsi1, channel 0, id 6, lun 0 Inquiry 00 00 00 ff 00 
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 70, scsi1, channel 0, id 6, lun 0 Inquiry 00 00 00 ff 00 
Jul  4 07:54:07 deepthought kernel: SCSI host 1 abort (pid 70) timed out - resetting
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: SCSI host 1 channel 0 reset (pid 70) timed out - trying harder
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel:   Vendor: GENERIC   Model: CRD-BP4           Rev: 4.28
Jul  4 07:54:07 deepthought kernel:   Type:   CD-ROM                             ANSI SCSI revision: 02
Jul  4 07:54:07 deepthought kernel: Detected scsi CD-ROM sr2 at scsi1, channel 0, id 6, lun 0
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 72, scsi1, channel 0, id 6, lun 1 Inquiry 20 00 00 ff 00 
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 72, scsi1, channel 0, id 6, lun 1 Inquiry 20 00 00 ff 00 
Jul  4 07:54:07 deepthought kernel: SCSI host 1 abort (pid 72) timed out - resetting
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: SCSI host 1 channel 0 reset (pid 72) timed out - trying harder
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 72, scsi1, channel 0, id 6, lun 1 Inquiry 20 00 00 ff 00 
Jul  4 07:54:07 deepthought kernel: SCSI host 1 abort (pid 72) timed out - resetting
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: SCSI host 1 channel 0 reset (pid 72) timed out - trying harder
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 72, scsi1, channel 0, id 6, lun 1 Inquiry 20 00 00 ff 00 
Jul  4 07:54:07 deepthought kernel: SCSI host 1 abort (pid 72) timed out - resetting
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: SCSI host 1 channel 0 reset (pid 72) timed out - trying harder
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: scsi : detected 7 SCSI generics 3 SCSI cdroms 3 SCSI disks total.
Jul  4 07:54:07 deepthought kernel: sr0: scsi3-mmc drive: 24x/24x cd/rw xa/form2 cdda tray
Jul  4 07:54:07 deepthought kernel: Uniform CD-ROM driver Revision: 3.11
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 85, scsi1, channel 0, id 6, lun 0 Mode Sense 00 2a 00 80 00 
Jul  4 07:54:07 deepthought kernel: ini9100u: 13 0
Jul  4 07:54:07 deepthought kernel: scsi1 channel 0 : resetting for second half of retries.
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: SCSI host 1 channel 0 reset (pid 85) timed out - trying harder
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 85, scsi1, channel 0, id 6, lun 0 Mode Sense 00 2a 00 80 00 
Jul  4 07:54:07 deepthought kernel: SCSI host 1 abort (pid 85) timed out - resetting
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: SCSI host 1 channel 0 reset (pid 85) timed out - trying harder
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 86, scsi1, channel 0, id 6, lun 0 Mode Sense 00 2a 00 80 00 
Jul  4 07:54:07 deepthought kernel: ini9100u: 13 0
Jul  4 07:54:07 deepthought kernel: scsi1 channel 0 : resetting for second half of retries.
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: SCSI host 1 channel 0 reset (pid 86) timed out - trying harder
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 87, scsi1, channel 0, id 6, lun 0 Mode Sense 00 2a 00 80 00 
Jul  4 07:54:07 deepthought kernel: ini9100u: 13 0
Jul  4 07:54:07 deepthought kernel: scsi1 channel 0 : resetting for second half of retries.
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: SCSI host 1 channel 0 reset (pid 87) timed out - trying harder
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 87, scsi1, channel 0, id 6, lun 0 Mode Sense 00 2a 00 80 00 
Jul  4 07:54:07 deepthought kernel: SCSI host 1 abort (pid 87) timed out - resetting
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: SCSI host 1 channel 0 reset (pid 87) timed out - trying harder
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 88, scsi1, channel 0, id 6, lun 0 Mode Sense 00 2a 00 80 00 
Jul  4 07:54:07 deepthought kernel: ini9100u: 13 0
Jul  4 07:54:07 deepthought kernel: scsi1 channel 0 : resetting for second half of retries.
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: SCSI host 1 channel 0 reset (pid 88) timed out - trying harder
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: scsi : aborting command due to timeout : pid 89, scsi1, channel 0, id 6, lun 0 Mode Sense 00 2a 00 80 00 
Jul  4 07:54:07 deepthought kernel: ini9100u: 13 0
Jul  4 07:54:07 deepthought kernel: scsi1 channel 0 : resetting for second half of retries.
Jul  4 07:54:07 deepthought kernel: SCSI bus is being reset for host 1 channel 0.
Jul  4 07:54:07 deepthought kernel: tul_bad_seg c=1
Jul  4 07:54:07 deepthought kernel: ini9100u: 13 0
Jul  4 07:54:07 deepthought kernel: sr00:00: old sense key None
Jul  4 07:54:07 deepthought kernel: Non-extended sense class 0 code 0x0 sr2: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda tray
Jul  4 07:54:07 deepthought kernel: SCSI device sda: hdwr sector= 512 bytes. Sectors= 17850000 [8715 MB] [8.7 GB]
Jul  4 07:54:07 deepthought kernel: SCSI device sdb: hdwr sector= 512 bytes. Sectors= 8467200 [4134 MB] [4.1 GB]
Jul  4 07:54:07 deepthought kernel: sdc : READ CAPACITY failed.
Jul  4 07:54:07 deepthought kernel: sdc : status = 1, message = 00, host = 0, driver = 28 
Jul  4 07:54:07 deepthought kernel: sdc : extended sense code = 2 
Jul  4 07:54:07 deepthought kernel: sdc : block size assumed to be 512 bytes, disk size 1GB.  
Jul  4 07:54:07 deepthought kernel: 3c59x.c 18Feb01 Donald Becker and others http://www.scyld.com/network/vortex.html
Jul  4 07:54:07 deepthought kernel: eth0: 3Com 3c905B Cyclone 100baseTx at 0xec00,  00:01:02:0d:58:15, IRQ 17
Jul  4 07:54:07 deepthought kernel:   8K byte-wide RAM 5:3 Rx:Tx split, autoselect/Autonegotiate interface.
Jul  4 07:54:07 deepthought kernel:   MII transceiver found at address 24, status 786d.
Jul  4 07:54:07 deepthought kernel:   Enabling bus-master transmits and whole-frame receives.
Jul  4 07:54:07 deepthought kernel: Partition check:
Jul  4 07:54:07 deepthought kernel:  sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
Jul  4 07:54:07 deepthought kernel:  sdb: sdb1
Jul  4 07:54:07 deepthought kernel:  sdc:<6>Device not ready.  Make sure there is a disc in the drive.
Jul  4 07:54:07 deepthought kernel: scsidisk I/O error: dev 08:20, sector 0
Jul  4 07:54:07 deepthought kernel:  unable to read partition table
Jul  4 07:54:07 deepthought kernel: VFS: Mounted root (ext2 filesystem) readonly.
Jul  4 07:54:07 deepthought kernel: Freeing unused kernel memory: 60k freed
Jul  4 07:54:07 deepthought kernel: Adding Swap: 208804k swap-space (priority -1)
Jul  4 07:54:07 deepthought kernel: st: bufsize 32768, wrt 30720, max buffers 5, s/g segs 16.
Jul  4 07:54:07 deepthought kernel: CSLIP: code copyright 1989 Regents of the University of California
Jul  4 07:54:07 deepthought kernel: ISDN subsystem Rev: 1.114.6.7/1.94/1.140.6.3/1.85.6.2/1.21/1.5.6.2 loaded
Jul  4 07:54:07 deepthought kernel: HiSax: Linux Driver for passive ISDN cards
Jul  4 07:54:07 deepthought kernel: HiSax: Version 3.5 (module)
Jul  4 07:54:07 deepthought kernel: HiSax: Layer1 Revision 2.41.6.1
Jul  4 07:54:07 deepthought kernel: HiSax: Layer2 Revision 2.25
Jul  4 07:54:07 deepthought kernel: HiSax: TeiMgr Revision 2.17
Jul  4 07:54:07 deepthought kernel: HiSax: Layer3 Revision 2.17.6.1
Jul  4 07:54:07 deepthought kernel: HiSax: LinkLayer Revision 2.51
Jul  4 07:54:07 deepthought kernel: HiSax: Approval certification failed because of
Jul  4 07:54:07 deepthought kernel: HiSax: unauthorized source code changes
Jul  4 07:54:07 deepthought kernel: HiSax: Card 1 Protocol EDSS1 Id=line0 (0)
Jul  4 07:54:07 deepthought kernel: HiSax: AVM driver Rev. 2.13
Jul  4 07:54:07 deepthought kernel: AVM A1: Byte at 1b00 is 2
Jul  4 07:54:07 deepthought kernel: AVM A1: Byte at 1b03 is 3
Jul  4 07:54:07 deepthought kernel: AVM A1: Byte at 1b02 is 2
Jul  4 07:54:07 deepthought kernel: AVM A1: Byte at 1b00 is 2
Jul  4 07:54:07 deepthought kernel: HiSax: AVM A1 config irq:10 cfg:0x1B00
Jul  4 07:54:07 deepthought kernel: HiSax: isac:0x1700/0x1300
Jul  4 07:54:07 deepthought kernel: HiSax: hscx A:0x700/0x300  hscx B:0xF00/0xB00
Jul  4 07:54:07 deepthought kernel: AVM A1: ISAC version (0): 2086/2186 V1.1
Jul  4 07:54:07 deepthought kernel: AVM A1: HSCX version A: V2.1  B: V2.1
Jul  4 07:54:07 deepthought kernel: AVM A1: IRQ 10 count 0
Jul  4 07:54:07 deepthought kernel: AVM A1: IRQ 10 count 5
Jul  4 07:54:07 deepthought kernel: HiSax: DSS1 Rev. 2.30
Jul  4 07:54:07 deepthought kernel: HiSax: 2 channels added
Jul  4 07:54:07 deepthought kernel: HiSax: MAX_WAITING_CALLS added
Jul  4 07:54:07 deepthought kernel: Soundblaster audio driver Copyright (C) by Hannu Savolainen 1993-1996
Jul  4 07:54:07 deepthought kernel: SB 4.13 detected OK (220)
Jul  4 07:54:07 deepthought kernel: Linux video capture interface: v1.00
Jul  4 07:54:07 deepthought kernel: i2c: initialized
Jul  4 07:54:07 deepthought kernel: bttv0: Brooktree Bt878 (rev 2) bus: 0, devfn: 152, irq: 19, memory: 0xfc8fe000.
Jul  4 07:54:07 deepthought kernel: bttv: 1 Bt8xx card(s) found.
Jul  4 07:54:07 deepthought kernel: bttv0: Hauppauge eeprom: tuner=Philips FM1216 (5)
Jul  4 07:54:07 deepthought kernel: bttv0: fader chip: TEA6300
Jul  4 07:54:07 deepthought kernel: bttv0: model: BT878(Hauppauge new)
Jul  4 07:54:07 deepthought kernel: msp3400: daemon started
Jul  4 07:54:07 deepthought kernel: msp3400: init: chip=MSP3410D-B4, has NICAM support
Jul  4 07:54:07 deepthought kernel: usb.c: registered new driver usbdevfs
Jul  4 07:54:07 deepthought kernel: usb.c: registered new driver hub
Jul  4 07:54:07 deepthought kernel: usb-uhci.c: $Revision: 1.237 $ time 17:25:59 Jul  1 2001
Jul  4 07:54:07 deepthought kernel: usb-uhci.c: High bandwidth mode enabled
Jul  4 07:54:07 deepthought kernel: usb-uhci.c: USB UHCI at I/O 0xef80, IRQ 19
Jul  4 07:54:07 deepthought kernel: usb-uhci.c: Detected 2 ports
Jul  4 07:54:07 deepthought kernel: usb.c: new USB bus registered, assigned bus number 1
Jul  4 07:54:07 deepthought kernel: usb.c: USB new device connect, assigned device number 1
Jul  4 07:54:07 deepthought kernel: Product: USB UHCI Root Hub
Jul  4 07:54:07 deepthought kernel: SerialNumber: ef80
Jul  4 07:54:07 deepthought kernel: hub.c: USB hub found
Jul  4 07:54:07 deepthought kernel: hub.c: 2 ports detected
Jul  4 07:54:07 deepthought kernel: usb.c: registered new driver ov511
Jul  4 07:54:07 deepthought kernel: ov511.c: ov511 driver version 1.25 registered
Jul  4 07:54:07 deepthought kernel: Checking ReiserFS transaction log (device 08:06) ...
Jul  4 07:54:07 deepthought kernel: usb.c: USB new device connect, assigned device number 2
Jul  4 07:54:07 deepthought kernel: Product: Standard USB Hub
Jul  4 07:54:07 deepthought kernel: ov511.c: [ov511_probe:3156] probing for device...
Jul  4 07:54:07 deepthought kernel: hub.c: USB hub found
Jul  4 07:54:07 deepthought kernel: hub.c: 4 ports detected
Jul  4 07:54:07 deepthought kernel: usb.c: USB new device connect, assigned device number 3
Jul  4 07:54:07 deepthought kernel: ov511.c: [ov511_probe:3156] probing for device...
Jul  4 07:54:07 deepthought kernel: ov511.c: USB OV511+ camera found
Jul  4 07:54:07 deepthought kernel: ov511.c: camera: generic model (no ID)
Jul  4 07:54:07 deepthought kernel: ov511.c: [ov511_set_packet_size:768] set packet size: 0, mult=0, alt=0
Jul  4 07:54:07 deepthought kernel: ov511.c: [ov511_reset:706] Reset: type=0x3F
Jul  4 07:54:07 deepthought last message repeated 2 times
Jul  4 07:54:07 deepthought kernel: ov511.c: [ov76xx_configure:2810] I2C synced in 1 attempt(s) (method 1)
Jul  4 07:54:07 deepthought kernel: ov511.c: Sensor is an OV7620
Jul  4 07:54:07 deepthought kernel: ov511.c: [ov511_mode_init_regs:918] width:640, height:480, mode:4, sub:0
Jul  4 07:54:07 deepthought kernel: Replayed 7 transactions in 5 seconds
Jul  4 07:54:07 deepthought kernel: Using r5 hash to sort names
Jul  4 07:54:07 deepthought kernel: Primary Sponsor thresholdnetworks.com
Jul  4 07:54:07 deepthought kernel: Raid Tuning sponsored by emusic.com
Jul  4 07:54:07 deepthought kernel: HSM sponsored by bigstorage.com
Jul  4 07:54:07 deepthought kernel: Alpha port and SMP sponsored by www.api-networks.com, alpha port by www.innovative-software.com and www.quant-x.com.
Jul  4 07:54:07 deepthought kernel: ReiserFS version 3.5.33
Jul  4 07:54:07 deepthought kernel: Checking ReiserFS transaction log (device 08:07) ...
Jul  4 07:54:07 deepthought kernel: Using r5 hash to sort names
Jul  4 07:54:07 deepthought kernel: ReiserFS version 3.5.33
Jul  4 07:54:07 deepthought kernel: eth0: Initial media type Autonegotiate.
Jul  4 07:54:07 deepthought kernel: eth0: MII #24 status 786d, link partner capability 40a1, setting half-duplex.
Jul  4 07:54:07 deepthought kernel: nfs warning: mount version older than kernel
Jul  4 07:54:07 deepthought kernel: nfs warning: mount version older than kernel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-07-06 21:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <200107052057.WAA06239@arnhem.blackstar.nl>
2001-07-06  7:57 ` Initio 9100 Driver for Linux bvermeul
2001-07-06 20:43 Trevor Hemsley
  -- strict thread matches above, loose matches on Subject: below --
2001-07-05 21:08 Trevor Hemsley
2001-07-04  6:25 Ingo
2001-07-05  7:46 ` bvermeul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).