summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>1999-09-06 06:45:20 +0000
committerimp <imp@FreeBSD.org>1999-09-06 06:45:20 +0000
commitac1dd5e87701bcb353765524dd68fa4d24472a74 (patch)
treec1cae6a4d5f44ad7b688862e8588ffad2d6f9dfa
parentd5b25eded4268e62234dfa82e03cdf19cfd3636d (diff)
downloadFreeBSD-src-ac1dd5e87701bcb353765524dd68fa4d24472a74.zip
FreeBSD-src-ac1dd5e87701bcb353765524dd68fa4d24472a74.tar.gz
Start to disentangle the isa attachments from other buses. Partially
rewrite the pccard attachment case. This is a work in progress, but doesn't break the isa case. I left the #if 0...#endif around the pccard stuff, at Peter's request, so that normal users don't shoot themselves in the foot. While I was here: o Indent a comment to the right location o Spell Unknown with a final 'n'. Reviewed by: peter
-rw-r--r--sys/dev/sio/sio.c30
-rw-r--r--sys/isa/sio.c30
2 files changed, 28 insertions, 32 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c
index 04bc850..4788bf9 100644
--- a/sys/dev/sio/sio.c
+++ b/sys/dev/sio/sio.c
@@ -87,15 +87,13 @@
#endif
#include <isa/ic/ns16550.h>
-#if 0
-
#include "card.h"
+#if 0
#if NCARD > 0
#include <sys/module.h>
#include <pccard/cardinfo.h>
#include <pccard/slot.h>
#endif
-
#endif
#ifndef __i386__
@@ -278,6 +276,9 @@ struct com_s {
u_int delta_error_counts[CE_NTYPES];
u_long error_counts[CE_NTYPES];
+ struct resource *irqres;
+ struct resource *ioportres;
+
/*
* Data area for output buffers. Someday we should build the output
* buffer queue without copying data.
@@ -493,12 +494,9 @@ sioinit(struct pccard_devinfo *devi)
devi->isahd.id_flags |= COM_C_NOPROBE;
/*
- * Probe the device. If a value is returned, the
- * device was found at the location.
+ * attach the device.
*/
- if (sioprobe(&devi->isahd) == 0)
- return(ENXIO);
- if (sioattach(&devi->isahd) == 0)
+ if (sioattach(devi->isahd.id_device) == 0)
return(ENXIO);
return(0);
@@ -738,7 +736,7 @@ sioprobe(dev)
/* EXTRA DELAY? */
outb(iobase + com_mcr, mcr_image);
- /*
+ /*
* It's a definitly Serial PCMCIA(16550A), but still be required
* for IIR_TXRDY implementation ( Palido 321s, DC-1S... )
*/
@@ -757,7 +755,7 @@ sioprobe(dev)
/* Ok. we're familia this gang */
SET_FLAG(dev, COM_C_IIR_TXRDYBUG); /* Set IIR_TXRDYBUG */
} else {
- /* Unknow, Just omit this chip.. XXX*/
+ /* Unknown, Just omit this chip.. XXX */
result = ENXIO;
}
} else {
@@ -912,8 +910,6 @@ sioattach(dev)
Port_t iobase;
int unit;
void *ih;
- struct resource *res;
- int zero = 0;
u_int flags = isa_get_flags(dev);
int rid;
struct resource *port;
@@ -942,6 +938,7 @@ sioattach(dev)
*/
bzero(com, sizeof *com);
com->unit = unit;
+ com->ioportres = port;
com->cfcr_image = CFCR_8BITS;
com->dtr_wait = 3 * hz;
com->loses_outints = COM_LOSESOUTINTS(flags) != 0;
@@ -1121,13 +1118,14 @@ determined_type: ;
UID_UUCP, GID_DIALER, 0660, "cuaia%r", unit);
make_dev(&sio_cdevsw, unit | CALLOUT_MASK | CONTROL_LOCK_STATE,
UID_UUCP, GID_DIALER, 0660, "cuala%r", unit);
- com->flags = isa_get_flags(dev); /* Heritate id_flags for later */
+ com->flags = flags;
com->pps.ppscap = PPS_CAPTUREASSERT | PPS_CAPTURECLEAR;
pps_init(&com->pps);
- res = bus_alloc_resource(dev, SYS_RES_IRQ, &zero, 0ul, ~0ul, 1,
- RF_SHAREABLE | RF_ACTIVE);
- BUS_SETUP_INTR(device_get_parent(dev), dev, res,
+ rid = 0;
+ com->irqres = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0ul, ~0ul, 1,
+ RF_SHAREABLE | RF_ACTIVE);
+ BUS_SETUP_INTR(device_get_parent(dev), dev, com->irqres,
INTR_TYPE_TTY | INTR_TYPE_FAST,
siointr, com, &ih);
diff --git a/sys/isa/sio.c b/sys/isa/sio.c
index 04bc850..4788bf9 100644
--- a/sys/isa/sio.c
+++ b/sys/isa/sio.c
@@ -87,15 +87,13 @@
#endif
#include <isa/ic/ns16550.h>
-#if 0
-
#include "card.h"
+#if 0
#if NCARD > 0
#include <sys/module.h>
#include <pccard/cardinfo.h>
#include <pccard/slot.h>
#endif
-
#endif
#ifndef __i386__
@@ -278,6 +276,9 @@ struct com_s {
u_int delta_error_counts[CE_NTYPES];
u_long error_counts[CE_NTYPES];
+ struct resource *irqres;
+ struct resource *ioportres;
+
/*
* Data area for output buffers. Someday we should build the output
* buffer queue without copying data.
@@ -493,12 +494,9 @@ sioinit(struct pccard_devinfo *devi)
devi->isahd.id_flags |= COM_C_NOPROBE;
/*
- * Probe the device. If a value is returned, the
- * device was found at the location.
+ * attach the device.
*/
- if (sioprobe(&devi->isahd) == 0)
- return(ENXIO);
- if (sioattach(&devi->isahd) == 0)
+ if (sioattach(devi->isahd.id_device) == 0)
return(ENXIO);
return(0);
@@ -738,7 +736,7 @@ sioprobe(dev)
/* EXTRA DELAY? */
outb(iobase + com_mcr, mcr_image);
- /*
+ /*
* It's a definitly Serial PCMCIA(16550A), but still be required
* for IIR_TXRDY implementation ( Palido 321s, DC-1S... )
*/
@@ -757,7 +755,7 @@ sioprobe(dev)
/* Ok. we're familia this gang */
SET_FLAG(dev, COM_C_IIR_TXRDYBUG); /* Set IIR_TXRDYBUG */
} else {
- /* Unknow, Just omit this chip.. XXX*/
+ /* Unknown, Just omit this chip.. XXX */
result = ENXIO;
}
} else {
@@ -912,8 +910,6 @@ sioattach(dev)
Port_t iobase;
int unit;
void *ih;
- struct resource *res;
- int zero = 0;
u_int flags = isa_get_flags(dev);
int rid;
struct resource *port;
@@ -942,6 +938,7 @@ sioattach(dev)
*/
bzero(com, sizeof *com);
com->unit = unit;
+ com->ioportres = port;
com->cfcr_image = CFCR_8BITS;
com->dtr_wait = 3 * hz;
com->loses_outints = COM_LOSESOUTINTS(flags) != 0;
@@ -1121,13 +1118,14 @@ determined_type: ;
UID_UUCP, GID_DIALER, 0660, "cuaia%r", unit);
make_dev(&sio_cdevsw, unit | CALLOUT_MASK | CONTROL_LOCK_STATE,
UID_UUCP, GID_DIALER, 0660, "cuala%r", unit);
- com->flags = isa_get_flags(dev); /* Heritate id_flags for later */
+ com->flags = flags;
com->pps.ppscap = PPS_CAPTUREASSERT | PPS_CAPTURECLEAR;
pps_init(&com->pps);
- res = bus_alloc_resource(dev, SYS_RES_IRQ, &zero, 0ul, ~0ul, 1,
- RF_SHAREABLE | RF_ACTIVE);
- BUS_SETUP_INTR(device_get_parent(dev), dev, res,
+ rid = 0;
+ com->irqres = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0ul, ~0ul, 1,
+ RF_SHAREABLE | RF_ACTIVE);
+ BUS_SETUP_INTR(device_get_parent(dev), dev, com->irqres,
INTR_TYPE_TTY | INTR_TYPE_FAST,
siointr, com, &ih);
OpenPOWER on IntegriCloud