diff options
author | se <se@FreeBSD.org> | 1995-08-15 09:43:42 +0000 |
---|---|---|
committer | se <se@FreeBSD.org> | 1995-08-15 09:43:42 +0000 |
commit | bd57cefcd43308ad8d8339889d3d712bf970a75d (patch) | |
tree | 95a8d314032d72fb88be9f929ffaac5ac8b74f86 /sys/pci/pcisupport.c | |
parent | 921314719cb2f9b731042a8c8980787b35294427 (diff) | |
download | FreeBSD-src-bd57cefcd43308ad8d8339889d3d712bf970a75d.zip FreeBSD-src-bd57cefcd43308ad8d8339889d3d712bf970a75d.tar.gz |
Add more chip set register decodings:
ISA GAT mode and hidden refresh seem to cause reliability problems
on Saturn based systems and are now reported when booting with '-v'.
Submitted by: Danny J. Zerkel <dzerkel@feephi.phofarm.com>
Diffstat (limited to 'sys/pci/pcisupport.c')
-rw-r--r-- | sys/pci/pcisupport.c | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c index 5954ee9..a1be2f7 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pcisupport.c,v 1.16 1995/07/27 22:04:57 se Exp $ +** $Id: pcisupport.c,v 1.17 1995/07/27 22:14:25 se Exp $ ** ** Device driver for DEC/INTEL PCI chipsets. ** @@ -276,6 +276,11 @@ static const struct condmsg conf82434lx[] = { 0x54, 0x01, 0x00, M_NE, "ON" }, { 0x54, 0x01, 0x00, M_EQ, "OFF" }, + { 0x57, 0x01, 0x01, M_EQ, "\n\tRefresh:" }, + { 0x57, 0x03, 0x03, M_EQ, " CAS#/RAS#(Hidden)" }, + { 0x57, 0x03, 0x01, M_EQ, " RAS#Only" }, + { 0x57, 0x05, 0x05, M_EQ, " BurstOf4" }, + { 0x00, 0x00, 0x00, TRUE, "\n" }, /* end marker */ @@ -284,8 +289,13 @@ static const struct condmsg conf82434lx[] = static const struct condmsg conf82378[] = { - { 0x4d, 0x20, 0x20, M_EQ, "\tCoprocessor errors enabled" }, - { 0x4d, 0x10, 0x10, M_EQ, "\tMouse function enabled" }, + { 0x00, 0x00, 0x00, TRUE, "\tBus Modes:" }, + { 0x41, 0x04, 0x04, M_EQ, " Bus Park," }, + { 0x41, 0x02, 0x02, M_EQ, " Bus Lock," }, + { 0x41, 0x02, 0x00, M_EQ, " Resource Lock," }, + { 0x41, 0x01, 0x01, M_EQ, " GAT" }, + { 0x4d, 0x20, 0x20, M_EQ, "\n\tCoprocessor errors enabled" }, + { 0x4d, 0x10, 0x10, M_EQ, "\n\tMouse function enabled" }, { 0x4e, 0x30, 0x10, M_EQ, "\n\tIDE controller: Primary (1F0h-1F7h,3F6h,3F7h)" }, { 0x4e, 0x30, 0x30, M_EQ, "\n\tIDE controller: Secondary (170h-177h,376h,377h)" }, |