summaryrefslogtreecommitdiffstats
path: root/sys/pccard/pcic_isa.c
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2001-05-21 03:22:52 +0000
committerimp <imp@FreeBSD.org>2001-05-21 03:22:52 +0000
commitc647eb3dd3a3fe40270d6f28f46bb14b0e82f03f (patch)
treee32e014d12f98b72a7d509d506384d5e681a77aa /sys/pccard/pcic_isa.c
parent9ff3821aa3027d9a1088a351417d00294fb2e394 (diff)
downloadFreeBSD-src-c647eb3dd3a3fe40270d6f28f46bb14b0e82f03f.zip
FreeBSD-src-c647eb3dd3a3fe40270d6f28f46bb14b0e82f03f.tar.gz
Next step towards pcic_pci: the ability to allocate mapped memory in attach.
o Introduce flags word to the softc. This will be used to control various aspects of the driver. Right now there are two bits defined, PCIC_IO_MAPPED and PCIC_MEM_MAPPED. One for ISA cards that are I/O mapped, the other is for PCI cards that are memory mapped. Only the ISA side is implemented with this commit. o Introduce a pcic_dealloc which will cleanly dealloc resources used. Right now it is only supported when called from probe/attach. o Keep track of resources allocated in the pcic_softc. o move pcictimeout_ch to the softc so we can support multiple devices in polling mode. o In ISA probe, set PCIC_IO_MAPPED. o Introduce and compute the slot mask. This will be used later when we expand the number of slots on ISA from 2 to 4. In such a case, we appear to have to use polling mode otherwise we get two different cards trying to drive the same interrupt line. I don't have hardware to test this configuration, so I'll stop here.
Diffstat (limited to 'sys/pccard/pcic_isa.c')
-rw-r--r--sys/pccard/pcic_isa.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/pccard/pcic_isa.c b/sys/pccard/pcic_isa.c
index 130e670..ae79a03 100644
--- a/sys/pccard/pcic_isa.c
+++ b/sys/pccard/pcic_isa.c
@@ -282,6 +282,10 @@ pcic_isa_probe(device_t dev)
static int
pcic_isa_attach(device_t dev)
{
+ struct pcic_softc *sc;
+
+ sc = device_get_softc(dev);
+ sc->flags |= PCIC_IO_MAPPED;
return (pcic_attach(dev));
}
OpenPOWER on IntegriCloud