PCI power states (was Re: fxp driver not reset after Windows reboot? )

2000-12-11 Thread Mike Smith
Based on the above, I would say that Windows has powered-down the NIC. This is outside of the scope of the driver, so I don't think a solution should be implemented there. Probably something for our APM folks. It's actually an ACPI-ish issue, however drivers are probably going to have to

Re: PCI power states (was Re: fxp driver not reset after Windows reboot? )

2000-12-11 Thread Mark Huizer
All of these can be abstracted as PCI methods, so they won't require lots of cut-n-paste in each driver: pci_enable_busmaster(dev); pci_enable_io(dev, SYS_RES_IOPORT | SYS_RES_MEMORY); pci_set_powerstate(dev, PCI_POWERSTATE_D0); Consider the above a request for review

Re: PCI power states (was Re: fxp driver not reset after Windows reboot? )

2000-12-11 Thread Stefan Esser
On 2000-12-11 01:04 -0800, Mike Smith [EMAIL PROTECTED] wrote: All of these can be abstracted as PCI methods, so they won't require lots of cut-n-paste in each driver: pci_enable_busmaster(dev); pci_enable_io(dev, SYS_RES_IOPORT | SYS_RES_MEMORY); pci_set_powerstate(dev,

Re: PCI power states (was Re: fxp driver not reset after Windows reboot? )

2000-12-11 Thread Mike Smith
pci_enable_busmaster(dev); pci_enable_io(dev, SYS_RES_IOPORT | SYS_RES_MEMORY); pci_set_powerstate(dev, PCI_POWERSTATE_D0); Consider the above a request for review on the matter. Shouldn't that be: pci_enable_io(dev, SYS_RES_IOPORT | SYS_RES_MEMORY);