Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci Don't enable the interrupt until after we cycle ...



details:   https://anonhg.NetBSD.org/src/rev/ce2e2a89b247
branches:  trunk
changeset: 481244:ce2e2a89b247
user:      chopps <chopps%NetBSD.org@localhost>
date:      Tue Jan 25 06:16:34 2000 +0000

description:
Don't enable the interrupt until after we cycle the power, disable
interrupt at disable, and make this code look more like the std pcic
code.  From Mycroft and I.

diffstat:

 sys/dev/pci/pccbb.c |  20 +++++++++-----------
 1 files changed, 9 insertions(+), 11 deletions(-)

diffs (62 lines):

diff -r 08dbb746e53f -r ce2e2a89b247 sys/dev/pci/pccbb.c
--- a/sys/dev/pci/pccbb.c       Tue Jan 25 06:11:25 2000 +0000
+++ b/sys/dev/pci/pccbb.c       Tue Jan 25 06:16:34 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pccbb.c,v 1.17 2000/01/24 15:51:59 joda Exp $  */
+/*     $NetBSD: pccbb.c,v 1.18 2000/01/25 06:16:34 chopps Exp $        */
 
 /*
  * Copyright (c) 1998 and 1999 HAYAKAWA Koichi.  All rights reserved.
@@ -2074,10 +2074,8 @@
   }
 
   /* assert reset bit */
-
-  intr = Pcic_read(ph, PCIC_INTR);
-  intr &= ~PCIC_INTR_RESET;
-  intr |= PCIC_INTR_PCI;       /* XXX */
+  intr = Pcic_read(ph, PCIC_INTR); 
+  intr &= ~(PCIC_INTR_RESET|PCIC_INTR_ENABLE|PCIC_INTR_CARDTYPE_MASK); 
   Pcic_write(ph, PCIC_INTR, intr);
 
   /* disable socket i/o: negate output enable bit */
@@ -2109,7 +2107,8 @@
   /* delay((100 + 20 + 200)*1000); too much */
 
   power = Pcic_read(ph, PCIC_PWRCTL);
-  Pcic_write(ph, PCIC_PWRCTL, power | PCIC_PWRCTL_OE);
+  power |= PCIC_PWRCTL_OE;
+  Pcic_write(ph, PCIC_PWRCTL, power);
 
   /*
    * hold RESET at least 10us.
@@ -2120,8 +2119,8 @@
 
   /* clear the reset flag */
 
-  intr = Pcic_read(ph, PCIC_INTR);
-  Pcic_write(ph, PCIC_INTR, intr | PCIC_INTR_RESET);
+  intr |= PCIC_INTR_RESET;
+  Pcic_write(ph, PCIC_INTR, intr);
 
   /* wait 20ms as per pc card standard (r2.01) section 4.3.6 */
 
@@ -2139,8 +2138,7 @@
 
   cardtype = pcmcia_card_gettype(ph->pcmcia);
 
-  intr = Pcic_read(ph, PCIC_INTR);
-  intr &= ~PCIC_INTR_CARDTYPE_MASK;
+  intr |= PCIC_INTR_PCI;
   intr |= ((cardtype == PCMCIA_IFTYPE_IO) ?
           PCIC_INTR_CARDTYPE_IO :
           PCIC_INTR_CARDTYPE_MEM);
@@ -2186,7 +2184,7 @@
   /* reset signal asserting... */
 
   intr = Pcic_read(ph, PCIC_INTR);
-  intr &= ~PCIC_INTR_RESET;
+  intr &= ~(PCIC_INTR_RESET|PCIC_INTR_ENABLE|PCIC_INTR_CARDTYPE_MASK); 
   Pcic_write(ph, PCIC_INTR, intr);
   delay(2*1000);
 



Home | Main Index | Thread Index | Old Index