Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci Enable the 5700 DMA bug and producer-pointer fix...



details:   https://anonhg.NetBSD.org/src/rev/28bd635ca63d
branches:  trunk
changeset: 541694:28bd635ca63d
user:      jonathan <jonathan%NetBSD.org@localhost>
date:      Fri Jan 17 00:11:00 2003 +0000

description:
Enable the 5700 DMA bug and producer-pointer fixes, by setting the
quirk on all 5700 revision B devices. (These fixes have not been
tested against NetBSD recently; committing the fix and the enable separately
gives us flexibility about which fixes get pulled into the NetBSD-1.6 branch.)

diffstat:

 sys/dev/pci/if_bge.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (34 lines):

diff -r d387df9b0237 -r 28bd635ca63d sys/dev/pci/if_bge.c
--- a/sys/dev/pci/if_bge.c      Fri Jan 17 00:02:56 2003 +0000
+++ b/sys/dev/pci/if_bge.c      Fri Jan 17 00:11:00 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_bge.c,v 1.25 2003/01/17 00:02:56 jonathan Exp $     */
+/*     $NetBSD: if_bge.c,v 1.26 2003/01/17 00:11:00 jonathan Exp $     */
 
 /*
  * Copyright (c) 2001 Wind River Systems
@@ -1638,20 +1638,20 @@
          "BCM5700 A1" },
 
        { BGE_ASICREV_BCM5700_B0,
-         BGE_QUIRK_LINK_STATE_BROKEN|BGE_QUIRK_CSUM_BROKEN,
+         BGE_QUIRK_LINK_STATE_BROKEN|BGE_QUIRK_CSUM_BROKEN|BGE_QUIRK_5700_COMMON,
          "BCM5700 B0" },
 
        { BGE_ASICREV_BCM5700_B1,
-         BGE_QUIRK_LINK_STATE_BROKEN,
+         BGE_QUIRK_LINK_STATE_BROKEN|BGE_QUIRK_5700_COMMON,
          "BCM5700 B1" },
 
        { BGE_ASICREV_BCM5700_B2,
-         BGE_QUIRK_LINK_STATE_BROKEN,
+         BGE_QUIRK_LINK_STATE_BROKEN|BGE_QUIRK_5700_COMMON,
          "BCM5700 B2" },
 
        /* This is treated like a BCM5700 Bx */
        { BGE_ASICREV_BCM5700_ALTIMA,
-         BGE_QUIRK_LINK_STATE_BROKEN,
+         BGE_QUIRK_LINK_STATE_BROKEN|BGE_QUIRK_5700_COMMON,
          "BCM5700 Altima" },
 
        { BGE_ASICREV_BCM5700_C0,



Home | Main Index | Thread Index | Old Index