Support of Ethernet on CSA interface of 865 chipset?

Is the Intel 82562EZ 10/100 LAN supported on the
CSA interface of the Springdale and Canterwood chipsets?


Art Hays
avhays@comcast.net

The speedo driver should work with this chipset, but you might have to
specify the vendor and device on the command line. The output from
‘pci -v’ will quickly tell me.

Previously, Art Hays wrote in qdn.public.qnxrtp.os:

Is the Intel 82562EZ 10/100 LAN supported on the
CSA interface of the Springdale and Canterwood chipsets?


Art Hays
avhays@comcast.net

Would this still show up as a PCI device if it’s on the CSA?

I dont have a machine to try a ‘pci -v’.

“Hugh Brown” <hsbrown@qnx.com> wrote in message
news:Voyager.030604133106.1953A@node90.ott.qnx.com

The speedo driver should work with this chipset, but you might have to
specify the vendor and device on the command line. The output from
‘pci -v’ will quickly tell me.

Previously, Art Hays wrote in qdn.public.qnxrtp.os:
Is the Intel 82562EZ 10/100 LAN supported on the
CSA interface of the Springdale and Canterwood chipsets?


Art Hays
avhays@comcast.net
\

Previously, Art Hays wrote in qdn.public.qnxrtp.os:

Would this still show up as a PCI device if it’s on the CSA?

Well if it doesn’t, then we can’t support it, as the speedo driver
looks for PCI devices.

I dont have a machine to try a ‘pci -v’.

“Hugh Brown” <> hsbrown@qnx.com> > wrote in message
news:> Voyager.030604133106.1953A@node90.ott.qnx.com> …
The speedo driver should work with this chipset, but you might have to
specify the vendor and device on the command line. The output from
‘pci -v’ will quickly tell me.

Previously, Art Hays wrote in qdn.public.qnxrtp.os:
Is the Intel 82562EZ 10/100 LAN supported on the
CSA interface of the Springdale and Canterwood chipsets?


Art Hays
avhays@comcast.net



\

The 82562EZ does work if I enter this command:

io-net -d speedo did=0x1050,pci=0x0,vid=0x8086 -p tcpip

I have a question- how do I make this automagic when the system boots
so I dont have to configure the interface again?

I cant offhand see how ‘io-net’ is started from any of the scripts in /etc.


“Hugh Brown” <hsbrown@qnx.com> wrote in message
news:Voyager.030604133106.1953A@node90.ott.qnx.com

The speedo driver should work with this chipset, but you might have to
specify the vendor and device on the command line. The output from
‘pci -v’ will quickly tell me.

Previously, Art Hays wrote in qdn.public.qnxrtp.os:
Is the Intel 82562EZ 10/100 LAN supported on the
CSA interface of the Springdale and Canterwood chipsets?


Art Hays
avhays@comcast.net
\

Art Hays <avhays@nih.gov> wrote:

The 82562EZ does work if I enter this command:
io-net -d speedo did=0x1050,pci=0x0,vid=0x8086 -p tcpip
I have a question- how do I make this automagic when the system boots
so I dont have to configure the interface again?
I cant offhand see how ‘io-net’ is started from any of the scripts in /etc.

Look in “/etc/system/enum/devices/net” …

I have a question- how do I make this automagic when the system boots

I cant offhand see how ‘io-net’ is started from any of the scripts in /etc.

cf. URL:nntp://inn.qnx.com/qdn.public.sysadmin/95

something like this?

/etc/system/enum/oem/82562EZ

device(pci, ven=$(PCI_VEND_INTEL), dev=1050)
tag(devn)
append(legacy, “,nonet”)
requires($(IONET_CMD),)
uniq(netnum, devn-en, 0)
mount(-Tio-net “-opci=$(index)” /lib/dll/devn-speedo.so, “/dev/io-net/en$(netnum)”)
use(symbolic=netmgr)

device(symbolic=netmgr)

requires(@devn)

waitfor(/dev/socket)
waitfor(/dev/io-net/ip0, 5)
start(netmanager)


kabe