9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] ELNK3 and 3CSOHO100-TX
@ 2002-03-07  4:13 Plan9
  0 siblings, 0 replies; 4+ messages in thread
From: Plan9 @ 2002-03-07  4:13 UTC (permalink / raw)
  To: 9fans

Hi all,

Did anyone test the recent 3CSOHO100-TX
The elnk3 drv detects it but it seems that card registers make it crash (no debug output, violent rebbot)...
On the 9pcfs kernel, a "memory" error message appears on console before rebooting.

The chip is a :
	3Com	40-0483-004
	0201T  46919437
	AGERE  40-04834

Any experience ?



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

* Re: [9fans] ELNK3 and 3CSOHO100-TX
@ 2002-03-14 15:41 plan9
  0 siblings, 0 replies; 4+ messages in thread
From: plan9 @ 2002-03-14 15:41 UTC (permalink / raw)
  To: 9fans

As we needed more Plan9 machines, we also modified 
/sys/srv/boot/pc/9load  and /sys/src/9/pc/etherelnk3.c
accordingly to Jim's advices and it works fine : 

	* Now the 9load `powered' floppy initialized the 3CSOHO100-TX and get a 9pccpudisk via BOOTP

	* The 9pccpud also initialize and uses correctly the card

<plan9@itic.ca> a crit dans le message news:<FIEDLHOOAEHBJAPIKGJCCEKPCAAA.plan9@itic.ca>...
Many Thanks Jim,

It now works.

We have modified /sys/src/fs/plan9pc/etherelnk3.c

The 9pcfs serving through 3CSOHO100-TX worked fine while moving 876.15 MB in both directions (pccpud/kfs<->9fs) 

----------



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

* Re: [9fans] ELNK3 and 3CSOHO100-TX
@ 2002-03-10  1:06 plan9
  0 siblings, 0 replies; 4+ messages in thread
From: plan9 @ 2002-03-10  1:06 UTC (permalink / raw)
  To: 9fans

Many Thanks Jim,

It now works.

We have modified /sys/src/fs/plan9pc/etherelnk3.c

The 9pcfs serving through 3CSOHO100-TX worked fine while moving 876.15 MB in both directions (pccpud/kfs<->9fs) 



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

* Re: [9fans] ELNK3 and 3CSOHO100-TX
@ 2002-03-07  4:50 jmk
  0 siblings, 0 replies; 4+ messages in thread
From: jmk @ 2002-03-07  4:50 UTC (permalink / raw)
  To: 9fans

On Wed Mar  6 22:13:13 EST 2002, plan9@itic.ca wrote:
> Hi all,
> 
> Did anyone test the recent 3CSOHO100-TX
> The elnk3 drv detects it but it seems that card registers make it crash (no debug output, violent rebbot)...
> On the 9pcfs kernel, a "memory" error message appears on console before rebooting.
> 
> The chip is a :
> 	3Com	40-0483-004
> 	0201T  46919437
> 	AGERE  40-04834
> 
> Any experience ?

No experience, but if it has a PCI device id of 0x7646 then try adding this
to the etherelnk3reset function as I think it is just a 3C905B with a different
device id:

1) in the switch on the device id
	switch(did = eepromdata(did, port, 0x03)){
   add
	case 0x7646:
   after the
	case 0x9055:

2) later on there is a test for the 905B:
	if(did == 0x9055 || did == 0x9200 || did == 0x5157){
   (your version may or may not have the tests for 0x9200 and 0x5157)
   add a test for 0x7646 here too, e.g.
	if(did == 0x9055 || did == 0x7646 || did == 0x9200 || did == 0x5157){

--jim


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

end of thread, other threads:[~2002-03-14 15:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-03-07  4:13 [9fans] ELNK3 and 3CSOHO100-TX Plan9
2002-03-07  4:50 jmk
2002-03-10  1:06 plan9
2002-03-14 15:41 plan9

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).