summaryrefslogtreecommitdiffstats
path: root/sys/pci
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2000-03-13 09:13:36 +0000
committerphk <phk@FreeBSD.org>2000-03-13 09:13:36 +0000
commitd3e2bed6b77e35d594420a707394a3646520ed81 (patch)
tree6c3242be5c357610d777ec3d0914f06261280339 /sys/pci
parenteeed1bb1509fa2ec81b08c924d22e4db471bd5f1 (diff)
downloadFreeBSD-src-d3e2bed6b77e35d594420a707394a3646520ed81.zip
FreeBSD-src-d3e2bed6b77e35d594420a707394a3646520ed81.tar.gz
Updates for new FALC chips and other nits.
(And try to make it first post-freeze commit :-)
Diffstat (limited to 'sys/pci')
-rw-r--r--sys/pci/if_mn.c24
1 files changed, 5 insertions, 19 deletions
diff --git a/sys/pci/if_mn.c b/sys/pci/if_mn.c
index 092e984..c7af95f 100644
--- a/sys/pci/if_mn.c
+++ b/sys/pci/if_mn.c
@@ -839,24 +839,7 @@ static int
mn_reset(struct softc *sc)
{
u_int32_t u;
- int i, j;
-
- u = 0;
- for(i = 5; i >= 0; i-- ) {
- sc->m32x->gpdir = i;
- for (j = 0; j < 8; j ++) {
- sc->m32x->gpdata = j;
- u += sc->m32x->gpdata;
- }
- }
- if (u != 0xe4) {
- printf("mn%d: WARNING: Controller failed to initialize.\n",
- sc->unit);
-#if 0
- return (0);
-#endif
- printf("mn%d: %x\n", sc->unit, u);
- }
+ int i;
sc->m32x->ccba = vtophys(&sc->m32_mem.csa);
sc->m32_mem.csa = vtophys(&sc->m32_mem.ccb);
@@ -1273,7 +1256,7 @@ mn_attach (pcici_t tag, int unit)
printf("mn%d: Munich32X", sc->unit);
switch (pci_class & 0xff) {
case 0x13:
- printf(" Rev 1.3");
+ printf(" Rev 2.2");
break;
default:
printf(" Rev 0x%x\n", pci_class & 0xff);
@@ -1292,6 +1275,9 @@ mn_attach (pcici_t tag, int unit)
case 0x10:
printf("-LH Rev 1.1\n");
break;
+ case 0x13:
+ printf("-LH Rev 1.3\n");
+ break;
default:
printf(" Rev 0x%x\n", sc->f54r->vstr);
}
OpenPOWER on IntegriCloud