diff options
| author | David Greenman <dg@FreeBSD.org> | 1993-07-20 23:16:50 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1993-07-20 23:16:50 +0000 |
| commit | 69a164c5e32a6cb46f5679ffec5977e4b52bd1fd (patch) | |
| tree | 262e9ce959b87a21625a50c2ac3fab8f5db36904 /sys/dev/ed/if_edreg.h | |
| parent | 7b0d50fdfe581aea83657b48bddcc7b4baee754e (diff) | |
Notes
Diffstat (limited to 'sys/dev/ed/if_edreg.h')
| -rw-r--r-- | sys/dev/ed/if_edreg.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/sys/dev/ed/if_edreg.h b/sys/dev/ed/if_edreg.h index f44ea59f3a826..b9a76fa803251 100644 --- a/sys/dev/ed/if_edreg.h +++ b/sys/dev/ed/if_edreg.h @@ -2,6 +2,10 @@ * National Semiconductor DS8390 NIC register definitions * * $Log: if_edreg.h,v $ + * Revision 1.3 93/07/20 15:25:25 davidg + * added config flags for forcing 8/16bit mode and disabling double + * xmit buffers. + * * Revision 1.2 93/06/23 03:03:05 davidg * added some additional definitions for the 83C584 bus interface * chip (SMC/WD boards) @@ -561,7 +565,19 @@ struct ed_ring { /* * this sets the default for enabling/disablng the tranceiver */ -#define ED_FLAGS_DISABLE_TRANCEIVER 0x01 +#define ED_FLAGS_DISABLE_TRANCEIVER 0x01 + +/* + * This forces the board to be used in 8/16bit mode even if it + * autoconfigs differently + */ +#define ED_FLAGS_FORCE_8BIT_MODE 0x02 +#define ED_FLAGS_FORCE_16BIT_MODE 0x04 + +/* + * This disables the use of double transmit buffers. + */ +#define ED_FLAGS_NO_DOUBLE_BUFFERING 0x08 /* * Definitions for Western digital/SMC WD80x3 series ASIC |
