diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-02-24 00:57:50 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-02-24 00:57:50 +0000 |
commit | c17106b41067c5b5295f53ac64e18e0295f6176d (patch) | |
tree | 1b7076c2ed764bbffc3008d55841fbf1c456817e /sys/dev/pci/if_bcereg.h | |
parent | 5e5014427132924bb52ebb624213191b180a1638 (diff) |
clear the powerdown mode that Windows will put bce chips into
when soft rebooting a system, also set proper LED modes.
From FreeBSD's bfe driver.
Tested by Alexey E. Suslikov <suslikov at texnika dot com dot ua>
Diffstat (limited to 'sys/dev/pci/if_bcereg.h')
-rw-r--r-- | sys/dev/pci/if_bcereg.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bcereg.h b/sys/dev/pci/if_bcereg.h index 9de71f4f4e6..1b6c6066de8 100644 --- a/sys/dev/pci/if_bcereg.h +++ b/sys/dev/pci/if_bcereg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bcereg.h,v 1.1 2004/02/13 23:24:30 andreas Exp $ */ +/* $OpenBSD: if_bcereg.h,v 1.2 2006/02/24 00:57:49 brad Exp $ */ /* $NetBSD: if_bcereg.h,v 1.3 2003/09/29 01:53:02 mrg Exp $ */ /* @@ -72,7 +72,10 @@ /* Ethernet MAC Control */ #define BCE_MACCTL 0x00A8 /* ethernet mac control */ /* mac control bits */ -#define BCE_EMC_CG 0x00000001 /* crc32 generation */ +#define BCE_EMC_CRC32_ENAB 0x00000001 /* crc32 generation */ +#define BCE_EMC_PDOWN 0x00000004 /* PHY powerdown */ +#define BCE_EMC_EDET 0x00000008 /* PHY energy detect */ +#define BCE_EMC_LED 0x000000e0 /* PHY LED control */ /* DMA Interrupt control */ #define BCE_DMAI_CTL 0x0100 |