summaryrefslogtreecommitdiffstats
path: root/sys/dev/puc
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/puc')
-rw-r--r--sys/dev/puc/puc.c616
-rw-r--r--sys/dev/puc/puc_ebus.c100
-rw-r--r--sys/dev/puc/puc_pccard.c112
-rw-r--r--sys/dev/puc/puc_pci.c293
-rw-r--r--sys/dev/puc/puc_sbus.c101
-rw-r--r--sys/dev/puc/pucdata.c1219
-rw-r--r--sys/dev/puc/pucvar.h165
7 files changed, 2606 insertions, 0 deletions
diff --git a/sys/dev/puc/puc.c b/sys/dev/puc/puc.c
new file mode 100644
index 0000000..3703ae3
--- /dev/null
+++ b/sys/dev/puc/puc.c
@@ -0,0 +1,616 @@
+/* $NetBSD: puc.c,v 1.7 2000/07/29 17:43:38 jlam Exp $ */
+
+/*-
+ * Copyright (c) 2002 JF Hay. All rights reserved.
+ * Copyright (c) 2000 M. Warner Losh. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice unmodified, this list of conditions, and the following
+ * disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+/*
+ * Copyright (c) 1996, 1998, 1999
+ * Christopher G. Demetriou. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Christopher G. Demetriou
+ * for the NetBSD Project.
+ * 4. The name of the author may not be used to endorse or promote products
+ * derived from this software without specific prior written permission
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+/*
+ * PCI "universal" communication card device driver, glues com, lpt,
+ * and similar ports to PCI via bridge chip often much larger than
+ * the devices being glued.
+ *
+ * Author: Christopher G. Demetriou, May 14, 1998 (derived from NetBSD
+ * sys/dev/pci/pciide.c, revision 1.6).
+ *
+ * These devices could be (and some times are) described as
+ * communications/{serial,parallel}, etc. devices with known
+ * programming interfaces, but those programming interfaces (in
+ * particular the BAR assignments for devices, etc.) in fact are not
+ * particularly well defined.
+ *
+ * After I/we have seen more of these devices, it may be possible
+ * to generalize some of these bits. In particular, devices which
+ * describe themselves as communications/serial/16[45]50, and
+ * communications/parallel/??? might be attached via direct
+ * 'com' and 'lpt' attachments to pci.
+ */
+
+#include "opt_puc.h"
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/bus.h>
+#include <sys/conf.h>
+#include <sys/malloc.h>
+
+#include <machine/bus.h>
+#include <machine/resource.h>
+#include <sys/rman.h>
+
+#include <dev/pci/pcireg.h>
+#include <dev/pci/pcivar.h>
+
+#define PUC_ENTRAILS 1
+#include <dev/puc/pucvar.h>
+
+struct puc_device {
+ struct resource_list resources;
+ int port;
+ int regshft;
+ u_int serialfreq;
+ u_int subtype;
+};
+
+static void puc_intr(void *arg);
+
+static int puc_find_free_unit(char *);
+#ifdef PUC_DEBUG
+static void puc_print_resource_list(struct resource_list *);
+#endif
+
+devclass_t puc_devclass;
+
+static int
+puc_port_bar_index(struct puc_softc *sc, int bar)
+{
+ int i;
+
+ for (i = 0; i < PUC_MAX_BAR; i += 1) {
+ if (!sc->sc_bar_mappings[i].used)
+ break;
+ if (sc->sc_bar_mappings[i].bar == bar)
+ return (i);
+ }
+ sc->sc_bar_mappings[i].bar = bar;
+ sc->sc_bar_mappings[i].used = 1;
+ return (i);
+}
+
+static int
+puc_probe_ilr(struct puc_softc *sc, struct resource *res)
+{
+ u_char t1, t2;
+ int i;
+
+ switch (sc->sc_desc.ilr_type) {
+ case PUC_ILR_TYPE_DIGI:
+ sc->ilr_st = rman_get_bustag(res);
+ sc->ilr_sh = rman_get_bushandle(res);
+ for (i = 0; i < 2 && sc->sc_desc.ilr_offset[i] != 0; i++) {
+ t1 = bus_space_read_1(sc->ilr_st, sc->ilr_sh,
+ sc->sc_desc.ilr_offset[i]);
+ t1 = ~t1;
+ bus_space_write_1(sc->ilr_st, sc->ilr_sh,
+ sc->sc_desc.ilr_offset[i], t1);
+ t2 = bus_space_read_1(sc->ilr_st, sc->ilr_sh,
+ sc->sc_desc.ilr_offset[i]);
+ if (t2 == t1)
+ return (0);
+ }
+ return (1);
+
+ default:
+ break;
+ }
+ return (0);
+}
+
+int
+puc_attach(device_t dev, const struct puc_device_description *desc)
+{
+ char *typestr;
+ int bidx, childunit, i, irq_setup, ressz, rid, type;
+ struct puc_softc *sc;
+ struct puc_device *pdev;
+ struct resource *res;
+ struct resource_list_entry *rle;
+
+ if (desc == NULL)
+ return (ENXIO);
+
+ sc = (struct puc_softc *)device_get_softc(dev);
+ bzero(sc, sizeof(*sc));
+ sc->sc_desc = *desc;
+
+#ifdef PUC_DEBUG
+ bootverbose = 1;
+
+ printf("puc: name: %s\n", sc->sc_desc.name);
+#endif
+ rid = 0;
+ res = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1,
+ RF_ACTIVE | RF_SHAREABLE);
+ if (!res)
+ return (ENXIO);
+
+ sc->irqres = res;
+ sc->irqrid = rid;
+#ifdef PUC_FASTINTR
+ irq_setup = BUS_SETUP_INTR(device_get_parent(dev), dev, res,
+ INTR_TYPE_TTY | INTR_FAST, puc_intr, sc, &sc->intr_cookie);
+ if (irq_setup == 0)
+ sc->fastintr = INTR_FAST;
+ else
+ irq_setup = BUS_SETUP_INTR(device_get_parent(dev), dev, res,
+ INTR_TYPE_TTY, puc_intr, sc, &sc->intr_cookie);
+#else
+ irq_setup = BUS_SETUP_INTR(device_get_parent(dev), dev, res,
+ INTR_TYPE_TTY, puc_intr, sc, &sc->intr_cookie);
+#endif
+ if (irq_setup != 0)
+ return (ENXIO);
+
+ rid = 0;
+ for (i = 0; PUC_PORT_VALID(sc->sc_desc, i); i++) {
+ if (i > 0 && rid == sc->sc_desc.ports[i].bar)
+ sc->barmuxed = 1;
+ rid = sc->sc_desc.ports[i].bar;
+ bidx = puc_port_bar_index(sc, rid);
+
+ if (sc->sc_bar_mappings[bidx].res != NULL)
+ continue;
+
+ type = (sc->sc_desc.ports[i].flags & PUC_FLAGS_MEMORY)
+ ? SYS_RES_MEMORY : SYS_RES_IOPORT;
+
+ res = bus_alloc_resource(dev, type, &rid, 0ul, ~0ul, 1,
+ RF_ACTIVE);
+ if (res == NULL &&
+ sc->sc_desc.ports[i].flags & PUC_FLAGS_ALTRES) {
+ type = (type == SYS_RES_IOPORT)
+ ? SYS_RES_MEMORY : SYS_RES_IOPORT;
+ res = bus_alloc_resource(dev, type, &rid, 0ul, ~0ul, 1,
+ RF_ACTIVE);
+ }
+ if (res == NULL) {
+ device_printf(dev, "could not get resource\n");
+ continue;
+ }
+ sc->sc_bar_mappings[bidx].type = type;
+ sc->sc_bar_mappings[bidx].res = res;
+
+ if (sc->sc_desc.ilr_type != PUC_ILR_TYPE_NONE) {
+ sc->ilr_enabled = puc_probe_ilr(sc, res);
+ if (sc->ilr_enabled)
+ device_printf(dev, "ILR enabled\n");
+ else
+ device_printf(dev, "ILR disabled\n");
+ }
+#ifdef PUC_DEBUG
+ printf("%s rid %d bst %lx, start %lx, end %lx\n",
+ (type == SYS_RES_MEMORY) ? "memory" : "port", rid,
+ (u_long)rman_get_bustag(res), (u_long)rman_get_start(res),
+ (u_long)rman_get_end(res));
+#endif
+ }
+
+ if (desc->init != NULL) {
+ i = desc->init(sc);
+ if (i != 0)
+ return (i);
+ }
+
+ for (i = 0; PUC_PORT_VALID(sc->sc_desc, i); i++) {
+ rid = sc->sc_desc.ports[i].bar;
+ bidx = puc_port_bar_index(sc, rid);
+ if (sc->sc_bar_mappings[bidx].res == NULL)
+ continue;
+
+ switch (sc->sc_desc.ports[i].type & ~PUC_PORT_SUBTYPE_MASK) {
+ case PUC_PORT_TYPE_COM:
+ typestr = "sio";
+ break;
+ case PUC_PORT_TYPE_LPT:
+ typestr = "ppc";
+ break;
+ case PUC_PORT_TYPE_UART:
+ typestr = "uart";
+ break;
+ default:
+ continue;
+ }
+ switch (sc->sc_desc.ports[i].type & PUC_PORT_SUBTYPE_MASK) {
+ case PUC_PORT_UART_SAB82532:
+ ressz = 64;
+ break;
+ case PUC_PORT_UART_Z8530:
+ ressz = 2;
+ break;
+ default:
+ ressz = 8;
+ break;
+ }
+ pdev = malloc(sizeof(struct puc_device), M_DEVBUF,
+ M_NOWAIT | M_ZERO);
+ if (!pdev)
+ continue;
+ resource_list_init(&pdev->resources);
+
+ /* First fake up an IRQ resource. */
+ resource_list_add(&pdev->resources, SYS_RES_IRQ, 0,
+ rman_get_start(sc->irqres), rman_get_end(sc->irqres),
+ rman_get_end(sc->irqres) - rman_get_start(sc->irqres) + 1);
+ rle = resource_list_find(&pdev->resources, SYS_RES_IRQ, 0);
+ rle->res = sc->irqres;
+
+ /* Now fake an IOPORT or MEMORY resource */
+ res = sc->sc_bar_mappings[bidx].res;
+ type = sc->sc_bar_mappings[bidx].type;
+ resource_list_add(&pdev->resources, type, 0,
+ rman_get_start(res) + sc->sc_desc.ports[i].offset,
+ rman_get_start(res) + sc->sc_desc.ports[i].offset
+ + ressz - 1, ressz);
+ rle = resource_list_find(&pdev->resources, type, 0);
+
+ if (sc->barmuxed == 0) {
+ rle->res = sc->sc_bar_mappings[bidx].res;
+ } else {
+ rle->res = malloc(sizeof(struct resource), M_DEVBUF,
+ M_WAITOK | M_ZERO);
+ if (rle->res == NULL) {
+ free(pdev, M_DEVBUF);
+ return (ENOMEM);
+ }
+
+ rle->res->r_start = rman_get_start(res) +
+ sc->sc_desc.ports[i].offset;
+ rle->res->r_end = rle->res->r_start + ressz - 1;
+ rle->res->r_bustag = rman_get_bustag(res);
+ bus_space_subregion(rle->res->r_bustag,
+ rman_get_bushandle(res),
+ sc->sc_desc.ports[i].offset, ressz,
+ &rle->res->r_bushandle);
+ }
+
+ pdev->port = i + 1;
+ pdev->serialfreq = sc->sc_desc.ports[i].serialfreq;
+ pdev->subtype = sc->sc_desc.ports[i].type &
+ PUC_PORT_SUBTYPE_MASK;
+ pdev->regshft = sc->sc_desc.ports[i].regshft;
+
+ childunit = puc_find_free_unit(typestr);
+ if (childunit < 0 && strcmp(typestr, "uart") != 0) {
+ typestr = "uart";
+ childunit = puc_find_free_unit(typestr);
+ }
+ sc->sc_ports[i].dev = device_add_child(dev, typestr,
+ childunit);
+ if (sc->sc_ports[i].dev == NULL) {
+ if (sc->barmuxed) {
+ bus_space_unmap(rman_get_bustag(rle->res),
+ rman_get_bushandle(rle->res), ressz);
+ free(rle->res, M_DEVBUF);
+ free(pdev, M_DEVBUF);
+ }
+ continue;
+ }
+ device_set_ivars(sc->sc_ports[i].dev, pdev);
+ device_set_desc(sc->sc_ports[i].dev, sc->sc_desc.name);
+#ifdef PUC_DEBUG
+ printf("puc: type %d, bar %x, offset %x\n",
+ sc->sc_desc.ports[i].type,
+ sc->sc_desc.ports[i].bar,
+ sc->sc_desc.ports[i].offset);
+ puc_print_resource_list(&pdev->resources);
+#endif
+ device_set_flags(sc->sc_ports[i].dev,
+ sc->sc_desc.ports[i].flags);
+ if (device_probe_and_attach(sc->sc_ports[i].dev) != 0) {
+ if (sc->barmuxed) {
+ bus_space_unmap(rman_get_bustag(rle->res),
+ rman_get_bushandle(rle->res), ressz);
+ free(rle->res, M_DEVBUF);
+ free(pdev, M_DEVBUF);
+ }
+ }
+ }
+
+#ifdef PUC_DEBUG
+ bootverbose = 0;
+#endif
+ return (0);
+}
+
+static u_int32_t
+puc_ilr_read(struct puc_softc *sc)
+{
+ u_int32_t mask;
+ int i;
+
+ mask = 0;
+ switch (sc->sc_desc.ilr_type) {
+ case PUC_ILR_TYPE_DIGI:
+ for (i = 1; i >= 0 && sc->sc_desc.ilr_offset[i] != 0; i--) {
+ mask = (mask << 8) | (bus_space_read_1(sc->ilr_st,
+ sc->ilr_sh, sc->sc_desc.ilr_offset[i]) & 0xff);
+ }
+ break;
+
+ default:
+ mask = 0xffffffff;
+ break;
+ }
+ return (mask);
+}
+
+/*
+ * This is an interrupt handler. For boards that can't tell us which
+ * device generated the interrupt it just calls all the registered
+ * handlers sequencially, but for boards that can tell us which
+ * device(s) generated the interrupt it calls only handlers for devices
+ * that actually generated the interrupt.
+ */
+static void
+puc_intr(void *arg)
+{
+ int i;
+ u_int32_t ilr_mask;
+ struct puc_softc *sc;
+
+ sc = (struct puc_softc *)arg;
+ ilr_mask = sc->ilr_enabled ? puc_ilr_read(sc) : 0xffffffff;
+ for (i = 0; i < PUC_MAX_PORTS; i++)
+ if (sc->sc_ports[i].ihand != NULL &&
+ ((ilr_mask >> i) & 0x00000001))
+ (sc->sc_ports[i].ihand)(sc->sc_ports[i].ihandarg);
+}
+
+static int
+puc_find_free_unit(char *name)
+{
+ devclass_t dc;
+ int start;
+ int unit;
+
+ unit = 0;
+ start = 0;
+ while (resource_int_value(name, unit, "port", &start) == 0 &&
+ start > 0)
+ unit++;
+ dc = devclass_find(name);
+ if (dc == NULL)
+ return (-1);
+ while (devclass_get_device(dc, unit))
+ unit++;
+#ifdef PUC_DEBUG
+ printf("puc: Using %s%d\n", name, unit);
+#endif
+ return (unit);
+}
+
+#ifdef PUC_DEBUG
+static void
+puc_print_resource_list(struct resource_list *rl)
+{
+#if 0
+ struct resource_list_entry *rle;
+
+ printf("print_resource_list: rl %p\n", rl);
+ SLIST_FOREACH(rle, rl, link)
+ printf(" type %x, rid %x start %lx end %lx count %lx\n",
+ rle->type, rle->rid, rle->start, rle->end, rle->count);
+ printf("print_resource_list: end.\n");
+#endif
+}
+#endif
+
+struct resource *
+puc_alloc_resource(device_t dev, device_t child, int type, int *rid,
+ u_long start, u_long end, u_long count, u_int flags)
+{
+ struct puc_device *pdev;
+ struct resource *retval;
+ struct resource_list *rl;
+ struct resource_list_entry *rle;
+ device_t my_child;
+
+ /*
+ * in the case of a child of child we need to find our immediate child
+ */
+ for (my_child = child; device_get_parent(my_child) != dev;
+ my_child = device_get_parent(my_child));
+
+ pdev = device_get_ivars(my_child);
+ rl = &pdev->resources;
+
+#ifdef PUC_DEBUG
+ printf("puc_alloc_resource: pdev %p, looking for t %x, r %x\n",
+ pdev, type, *rid);
+ puc_print_resource_list(rl);
+#endif
+ retval = NULL;
+ rle = resource_list_find(rl, type, *rid);
+ if (rle) {
+#ifdef PUC_DEBUG
+ printf("found rle, %lx, %lx, %lx\n", rle->start, rle->end,
+ rle->count);
+#endif
+ retval = rle->res;
+ }
+#ifdef PUC_DEBUG
+ else
+ printf("oops rle is gone\n");
+#endif
+
+ return (retval);
+}
+
+int
+puc_release_resource(device_t dev, device_t child, int type, int rid,
+ struct resource *res)
+{
+ return (0);
+}
+
+int
+puc_get_resource(device_t dev, device_t child, int type, int rid,
+ u_long *startp, u_long *countp)
+{
+ struct puc_device *pdev;
+ struct resource_list *rl;
+ struct resource_list_entry *rle;
+
+ pdev = device_get_ivars(child);
+ rl = &pdev->resources;
+
+#ifdef PUC_DEBUG
+ printf("puc_get_resource: pdev %p, looking for t %x, r %x\n", pdev,
+ type, rid);
+ puc_print_resource_list(rl);
+#endif
+ rle = resource_list_find(rl, type, rid);
+ if (rle) {
+#ifdef PUC_DEBUG
+ printf("found rle %p,", rle);
+#endif
+ if (startp != NULL)
+ *startp = rle->start;
+ if (countp != NULL)
+ *countp = rle->count;
+#ifdef PUC_DEBUG
+ printf(" %lx, %lx\n", rle->start, rle->count);
+#endif
+ return (0);
+ } else
+ printf("oops rle is gone\n");
+ return (ENXIO);
+}
+
+int
+puc_setup_intr(device_t dev, device_t child, struct resource *r, int flags,
+ void (*ihand)(void *), void *arg, void **cookiep)
+{
+ int i;
+ struct puc_softc *sc;
+
+ sc = (struct puc_softc *)device_get_softc(dev);
+ if ((flags & INTR_FAST) != sc->fastintr)
+ return (ENXIO);
+ for (i = 0; PUC_PORT_VALID(sc->sc_desc, i); i++) {
+ if (sc->sc_ports[i].dev == child) {
+ if (sc->sc_ports[i].ihand != 0)
+ return (ENXIO);
+ sc->sc_ports[i].ihand = ihand;
+ sc->sc_ports[i].ihandarg = arg;
+ *cookiep = arg;
+ return (0);
+ }
+ }
+ return (ENXIO);
+}
+
+int
+puc_teardown_intr(device_t dev, device_t child, struct resource *r,
+ void *cookie)
+{
+ int i;
+ struct puc_softc *sc;
+
+ sc = (struct puc_softc *)device_get_softc(dev);
+ for (i = 0; PUC_PORT_VALID(sc->sc_desc, i); i++) {
+ if (sc->sc_ports[i].dev == child) {
+ sc->sc_ports[i].ihand = NULL;
+ sc->sc_ports[i].ihandarg = NULL;
+ return (0);
+ }
+ }
+ return (ENXIO);
+}
+
+int
+puc_read_ivar(device_t dev, device_t child, int index, uintptr_t *result)
+{
+ struct puc_device *pdev;
+
+ pdev = device_get_ivars(child);
+ if (pdev == NULL)
+ return (ENOENT);
+
+ switch(index) {
+ case PUC_IVAR_FREQ:
+ *result = pdev->serialfreq;
+ break;
+ case PUC_IVAR_PORT:
+ *result = pdev->port;
+ break;
+ case PUC_IVAR_REGSHFT:
+ *result = pdev->regshft;
+ break;
+ case PUC_IVAR_SUBTYPE:
+ *result = pdev->subtype;
+ break;
+ default:
+ return (ENOENT);
+ }
+ return (0);
+}
diff --git a/sys/dev/puc/puc_ebus.c b/sys/dev/puc/puc_ebus.c
new file mode 100644
index 0000000..78fc6d4
--- /dev/null
+++ b/sys/dev/puc/puc_ebus.c
@@ -0,0 +1,100 @@
+/*
+ * Copyright (c) 2003 Marcel Moolenaar
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include "opt_puc.h"
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/bus.h>
+#include <sys/conf.h>
+#include <machine/bus.h>
+#include <sys/rman.h>
+#include <machine/resource.h>
+
+#include <dev/ofw/openfirm.h>
+#include <sparc64/ebus/ebusvar.h>
+
+#define PUC_ENTRAILS 1
+#include <dev/puc/pucvar.h>
+
+static int
+puc_ebus_probe(device_t dev)
+{
+ const char *nm;
+
+ nm = ebus_get_name(dev);
+ if (!strcmp(nm, "se")) {
+ device_set_desc(dev, "Siemens SAB 82532 dual channel SCC");
+ return (0);
+ }
+ return (ENXIO);
+}
+
+static int
+puc_ebus_attach(device_t dev)
+{
+ struct puc_device_description dd;
+ int i;
+
+ bzero(&dd, sizeof(dd));
+ dd.name = device_get_desc(dev);
+ for (i = 0; i < 2; i++) {
+ dd.ports[i].type = PUC_PORT_TYPE_UART | PUC_PORT_UART_SAB82532;
+ dd.ports[i].bar = 0;
+ dd.ports[i].offset = 0x40 * i;
+ dd.ports[i].serialfreq = 0;
+ dd.ports[i].flags = 0;
+ }
+ return (puc_attach(dev, &dd));
+}
+
+static device_method_t puc_ebus_methods[] = {
+ /* Device interface */
+ DEVMETHOD(device_probe, puc_ebus_probe),
+ DEVMETHOD(device_attach, puc_ebus_attach),
+
+ DEVMETHOD(bus_alloc_resource, puc_alloc_resource),
+ DEVMETHOD(bus_release_resource, puc_release_resource),
+ DEVMETHOD(bus_get_resource, puc_get_resource),
+ DEVMETHOD(bus_read_ivar, puc_read_ivar),
+ DEVMETHOD(bus_setup_intr, puc_setup_intr),
+ DEVMETHOD(bus_teardown_intr, puc_teardown_intr),
+ DEVMETHOD(bus_print_child, bus_generic_print_child),
+ DEVMETHOD(bus_driver_added, bus_generic_driver_added),
+ { 0, 0 }
+};
+
+static driver_t puc_ebus_driver = {
+ "puc",
+ puc_ebus_methods,
+ sizeof(struct puc_softc),
+};
+
+DRIVER_MODULE(puc, ebus, puc_ebus_driver, puc_devclass, 0, 0);
diff --git a/sys/dev/puc/puc_pccard.c b/sys/dev/puc/puc_pccard.c
new file mode 100644
index 0000000..6bb816c
--- /dev/null
+++ b/sys/dev/puc/puc_pccard.c
@@ -0,0 +1,112 @@
+/*-
+ * Copyright (c) 2002 Poul-Henning Kamp. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice unmodified, this list of conditions, and the following
+ * disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include "opt_puc.h"
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/bus.h>
+#include <sys/conf.h>
+#include <sys/malloc.h>
+
+#include <machine/bus.h>
+#include <machine/resource.h>
+#include <sys/rman.h>
+
+#define PUC_ENTRAILS 1
+#include <dev/puc/pucvar.h>
+
+#include <dev/sio/sioreg.h>
+#include <dev/pccard/pccardvar.h>
+
+const struct puc_device_description rscom_devices = {
+
+ "ARGOSY SP320 Dual port serial PCMCIA",
+ /* http://www.argosy.com.tw/product/sp320.htm */
+ NULL,
+ { 0, 0, 0, 0 },
+ { 0, 0, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x0, 0x00, DEFAULT_RCLK, 0x100000 },
+ { PUC_PORT_TYPE_COM, 0x1, 0x00, DEFAULT_RCLK, 0 },
+ }
+};
+
+
+static int
+puc_pccard_probe(device_t dev)
+{
+ const char *vendor, *product;
+ int error;
+
+ error = pccard_get_vendor_str(dev, &vendor);
+ if (error)
+ return(error);
+ error = pccard_get_product_str(dev, &product);
+ if (error)
+ return(error);
+ if (!strcmp(vendor, "PCMCIA") && !strcmp(product, "RS-COM 2P")) {
+ device_set_desc(dev, rscom_devices.name);
+ return (0);
+ }
+
+ return (ENXIO);
+}
+
+static int
+puc_pccard_attach(device_t dev)
+{
+
+ return (puc_attach(dev, &rscom_devices));
+}
+
+static device_method_t puc_pccard_methods[] = {
+ /* Device interface */
+ DEVMETHOD(device_probe, puc_pccard_probe),
+ DEVMETHOD(device_attach, puc_pccard_attach),
+
+ DEVMETHOD(bus_alloc_resource, puc_alloc_resource),
+ DEVMETHOD(bus_release_resource, puc_release_resource),
+ DEVMETHOD(bus_get_resource, puc_get_resource),
+ DEVMETHOD(bus_read_ivar, puc_read_ivar),
+ DEVMETHOD(bus_setup_intr, puc_setup_intr),
+ DEVMETHOD(bus_teardown_intr, puc_teardown_intr),
+ DEVMETHOD(bus_print_child, bus_generic_print_child),
+ DEVMETHOD(bus_driver_added, bus_generic_driver_added),
+ { 0, 0 }
+};
+
+static driver_t puc_pccard_driver = {
+ "puc",
+ puc_pccard_methods,
+ sizeof(struct puc_softc),
+};
+
+DRIVER_MODULE(puc, pccard, puc_pccard_driver, puc_devclass, 0, 0);
diff --git a/sys/dev/puc/puc_pci.c b/sys/dev/puc/puc_pci.c
new file mode 100644
index 0000000..74d7a2e
--- /dev/null
+++ b/sys/dev/puc/puc_pci.c
@@ -0,0 +1,293 @@
+/* $NetBSD: puc.c,v 1.7 2000/07/29 17:43:38 jlam Exp $ */
+
+/*-
+ * Copyright (c) 2002 JF Hay. All rights reserved.
+ * Copyright (c) 2000 M. Warner Losh. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice unmodified, this list of conditions, and the following
+ * disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+/*
+ * Copyright (c) 1996, 1998, 1999
+ * Christopher G. Demetriou. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Christopher G. Demetriou
+ * for the NetBSD Project.
+ * 4. The name of the author may not be used to endorse or promote products
+ * derived from this software without specific prior written permission
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include "opt_puc.h"
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/bus.h>
+#include <sys/conf.h>
+#include <sys/malloc.h>
+
+#include <machine/bus.h>
+#include <machine/resource.h>
+#include <sys/rman.h>
+
+#include <dev/pci/pcireg.h>
+#include <dev/pci/pcivar.h>
+
+#define PUC_ENTRAILS 1
+#include <dev/puc/pucvar.h>
+
+extern const struct puc_device_description puc_devices[];
+
+int puc_config_win877(struct puc_softc *);
+
+static const struct puc_device_description *
+puc_find_description(uint32_t vend, uint32_t prod, uint32_t svend,
+ uint32_t sprod)
+{
+ int i;
+
+#define checkreg(val, index) \
+ (((val) & puc_devices[i].rmask[(index)]) == puc_devices[i].rval[(index)])
+
+ for (i = 0; puc_devices[i].name != NULL; i++) {
+ if (checkreg(vend, PUC_REG_VEND) &&
+ checkreg(prod, PUC_REG_PROD) &&
+ checkreg(svend, PUC_REG_SVEND) &&
+ checkreg(sprod, PUC_REG_SPROD))
+ return (&puc_devices[i]);
+ }
+
+#undef checkreg
+
+ return (NULL);
+}
+
+static int
+puc_pci_probe(device_t dev)
+{
+ uint32_t v1, v2, d1, d2;
+ const struct puc_device_description *desc;
+
+ if ((pci_read_config(dev, PCIR_HDRTYPE, 1) & PCIM_HDRTYPE) != 0)
+ return (ENXIO);
+
+ v1 = pci_read_config(dev, PCIR_VENDOR, 2);
+ d1 = pci_read_config(dev, PCIR_DEVICE, 2);
+ v2 = pci_read_config(dev, PCIR_SUBVEND_0, 2);
+ d2 = pci_read_config(dev, PCIR_SUBDEV_0, 2);
+
+ desc = puc_find_description(v1, d1, v2, d2);
+ if (desc == NULL)
+ return (ENXIO);
+ device_set_desc(dev, desc->name);
+ return (0);
+}
+
+static int
+puc_pci_attach(device_t dev)
+{
+ uint32_t v1, v2, d1, d2;
+
+ v1 = pci_read_config(dev, PCIR_VENDOR, 2);
+ d1 = pci_read_config(dev, PCIR_DEVICE, 2);
+ v2 = pci_read_config(dev, PCIR_SUBVEND_0, 2);
+ d2 = pci_read_config(dev, PCIR_SUBDEV_0, 2);
+ return (puc_attach(dev, puc_find_description(v1, d1, v2, d2)));
+}
+
+static device_method_t puc_pci_methods[] = {
+ /* Device interface */
+ DEVMETHOD(device_probe, puc_pci_probe),
+ DEVMETHOD(device_attach, puc_pci_attach),
+
+ DEVMETHOD(bus_alloc_resource, puc_alloc_resource),
+ DEVMETHOD(bus_release_resource, puc_release_resource),
+ DEVMETHOD(bus_get_resource, puc_get_resource),
+ DEVMETHOD(bus_read_ivar, puc_read_ivar),
+ DEVMETHOD(bus_setup_intr, puc_setup_intr),
+ DEVMETHOD(bus_teardown_intr, puc_teardown_intr),
+ DEVMETHOD(bus_print_child, bus_generic_print_child),
+ DEVMETHOD(bus_driver_added, bus_generic_driver_added),
+ { 0, 0 }
+};
+
+static driver_t puc_pci_driver = {
+ "puc",
+ puc_pci_methods,
+ sizeof(struct puc_softc),
+};
+
+DRIVER_MODULE(puc, pci, puc_pci_driver, puc_devclass, 0, 0);
+DRIVER_MODULE(puc, cardbus, puc_pci_driver, puc_devclass, 0, 0);
+
+
+#define rdspio(indx) (bus_space_write_1(bst, bsh, efir, indx), \
+ bus_space_read_1(bst, bsh, efdr))
+#define wrspio(indx,data) (bus_space_write_1(bst, bsh, efir, indx), \
+ bus_space_write_1(bst, bsh, efdr, data))
+
+#ifdef PUC_DEBUG
+static void
+puc_print_win877(bus_space_tag_t bst, bus_space_handle_t bsh, u_int efir,
+ u_int efdr)
+{
+ u_char cr00, cr01, cr04, cr09, cr0d, cr14, cr15, cr16, cr17;
+ u_char cr18, cr19, cr24, cr25, cr28, cr2c, cr31, cr32;
+
+ cr00 = rdspio(0x00);
+ cr01 = rdspio(0x01);
+ cr04 = rdspio(0x04);
+ cr09 = rdspio(0x09);
+ cr0d = rdspio(0x0d);
+ cr14 = rdspio(0x14);
+ cr15 = rdspio(0x15);
+ cr16 = rdspio(0x16);
+ cr17 = rdspio(0x17);
+ cr18 = rdspio(0x18);
+ cr19 = rdspio(0x19);
+ cr24 = rdspio(0x24);
+ cr25 = rdspio(0x25);
+ cr28 = rdspio(0x28);
+ cr2c = rdspio(0x2c);
+ cr31 = rdspio(0x31);
+ cr32 = rdspio(0x32);
+ printf("877T: cr00 %x, cr01 %x, cr04 %x, cr09 %x, cr0d %x, cr14 %x, "
+ "cr15 %x, cr16 %x, cr17 %x, cr18 %x, cr19 %x, cr24 %x, cr25 %x, "
+ "cr28 %x, cr2c %x, cr31 %x, cr32 %x\n", cr00, cr01, cr04, cr09,
+ cr0d, cr14, cr15, cr16, cr17,
+ cr18, cr19, cr24, cr25, cr28, cr2c, cr31, cr32);
+}
+#endif
+
+int
+puc_config_win877(struct puc_softc *sc)
+{
+ u_char val;
+ u_int efir, efdr;
+ bus_space_tag_t bst;
+ bus_space_handle_t bsh;
+ struct resource *res;
+
+ res = sc->sc_bar_mappings[0].res;
+
+ bst = rman_get_bustag(res);
+ bsh = rman_get_bushandle(res);
+
+ /* configure the first W83877TF */
+ bus_space_write_1(bst, bsh, 0x250, 0x89);
+ efir = 0x251;
+ efdr = 0x252;
+ val = rdspio(0x09) & 0x0f;
+ if (val != 0x0c) {
+ printf("conf_win877: Oops not a W83877TF\n");
+ return (ENXIO);
+ }
+
+#ifdef PUC_DEBUG
+ printf("before: ");
+ puc_print_win877(bst, bsh, efir, efdr);
+#endif
+
+ val = rdspio(0x16);
+ val |= 0x04;
+ wrspio(0x16, val);
+ val &= ~0x04;
+ wrspio(0x16, val);
+
+ wrspio(0x24, 0x2e8 >> 2);
+ wrspio(0x25, 0x2f8 >> 2);
+ wrspio(0x17, 0x03);
+ wrspio(0x28, 0x43);
+
+#ifdef PUC_DEBUG
+ printf("after: ");
+ puc_print_win877(bst, bsh, efir, efdr);
+#endif
+
+ bus_space_write_1(bst, bsh, 0x250, 0xaa);
+
+ /* configure the second W83877TF */
+ bus_space_write_1(bst, bsh, 0x3f0, 0x87);
+ bus_space_write_1(bst, bsh, 0x3f0, 0x87);
+ efir = 0x3f0;
+ efdr = 0x3f1;
+ val = rdspio(0x09) & 0x0f;
+ if (val != 0x0c) {
+ printf("conf_win877: Oops not a W83877TF\n");
+ return(ENXIO);
+ }
+
+#ifdef PUC_DEBUG
+ printf("before: ");
+ puc_print_win877(bst, bsh, efir, efdr);
+#endif
+
+ val = rdspio(0x16);
+ val |= 0x04;
+ wrspio(0x16, val);
+ val &= ~0x04;
+ wrspio(0x16, val);
+
+ wrspio(0x24, 0x3e8 >> 2);
+ wrspio(0x25, 0x3f8 >> 2);
+ wrspio(0x17, 0x03);
+ wrspio(0x28, 0x43);
+
+#ifdef PUC_DEBUG
+ printf("after: ");
+ puc_print_win877(bst, bsh, efir, efdr);
+#endif
+
+ bus_space_write_1(bst, bsh, 0x3f0, 0xaa);
+ return (0);
+}
+
+#undef rdspio
+#undef wrspio
+
diff --git a/sys/dev/puc/puc_sbus.c b/sys/dev/puc/puc_sbus.c
new file mode 100644
index 0000000..313d52e
--- /dev/null
+++ b/sys/dev/puc/puc_sbus.c
@@ -0,0 +1,101 @@
+/*
+ * Copyright (c) 2003 Marcel Moolenaar
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include "opt_puc.h"
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/bus.h>
+#include <sys/conf.h>
+#include <machine/bus.h>
+#include <sys/rman.h>
+#include <machine/resource.h>
+
+#include <dev/ofw/openfirm.h>
+#include <sparc64/sbus/sbusvar.h>
+
+#define PUC_ENTRAILS 1
+#include <dev/puc/pucvar.h>
+
+static int
+puc_sbus_probe(device_t dev)
+{
+ const char *nm;
+
+ nm = sbus_get_name(dev);
+ if (!strcmp(nm, "zs")) {
+ device_set_desc(dev, "Zilog Z8530 dual channel SCC");
+ return (0);
+ }
+ return (ENXIO);
+}
+
+static int
+puc_sbus_attach(device_t dev)
+{
+ struct puc_device_description dd;
+ int i;
+
+ bzero(&dd, sizeof(dd));
+ dd.name = device_get_desc(dev);
+ for (i = 0; i < 2; i++) {
+ dd.ports[i].type = PUC_PORT_TYPE_UART | PUC_PORT_UART_Z8530;
+ dd.ports[i].bar = 0;
+ dd.ports[i].offset = 4 * i;
+ dd.ports[i].serialfreq = 0;
+ dd.ports[i].flags = PUC_FLAGS_MEMORY;
+ dd.ports[i].regshft = 1;
+ }
+ return (puc_attach(dev, &dd));
+}
+
+static device_method_t puc_sbus_methods[] = {
+ /* Device interface */
+ DEVMETHOD(device_probe, puc_sbus_probe),
+ DEVMETHOD(device_attach, puc_sbus_attach),
+
+ DEVMETHOD(bus_alloc_resource, puc_alloc_resource),
+ DEVMETHOD(bus_release_resource, puc_release_resource),
+ DEVMETHOD(bus_get_resource, puc_get_resource),
+ DEVMETHOD(bus_read_ivar, puc_read_ivar),
+ DEVMETHOD(bus_setup_intr, puc_setup_intr),
+ DEVMETHOD(bus_teardown_intr, puc_teardown_intr),
+ DEVMETHOD(bus_print_child, bus_generic_print_child),
+ DEVMETHOD(bus_driver_added, bus_generic_driver_added),
+ { 0, 0 }
+};
+
+static driver_t puc_sbus_driver = {
+ "puc",
+ puc_sbus_methods,
+ sizeof(struct puc_softc),
+};
+
+DRIVER_MODULE(puc, sbus, puc_sbus_driver, puc_devclass, 0, 0);
diff --git a/sys/dev/puc/pucdata.c b/sys/dev/puc/pucdata.c
new file mode 100644
index 0000000..cd8554e
--- /dev/null
+++ b/sys/dev/puc/pucdata.c
@@ -0,0 +1,1219 @@
+/* $NetBSD: pucdata.c,v 1.25 2001/12/16 22:23:01 thorpej Exp $ */
+
+/*
+ * Copyright (c) 1998, 1999 Christopher G. Demetriou. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Christopher G. Demetriou
+ * for the NetBSD Project.
+ * 4. The name of the author may not be used to endorse or promote products
+ * derived from this software without specific prior written permission
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+/*
+ * PCI "universal" communications card driver configuration data (used to
+ * match/attach the cards).
+ */
+
+#include <sys/param.h>
+
+#include <dev/pci/pcireg.h>
+#include <dev/pci/pcivar.h>
+#include <dev/sio/sioreg.h>
+#include <dev/puc/pucvar.h>
+
+#define COM_FREQ DEFAULT_RCLK
+
+int puc_config_win877(struct puc_softc *);
+
+const struct puc_device_description puc_devices[] = {
+
+ { "Diva Serial [GSP] Multiport UART",
+ NULL,
+ { 0x103c, 0x1048, 0x103c, 0x1282 },
+ { 0xffff, 0xffff, 0xffff, 0xffff },
+ {
+ { PUC_PORT_TYPE_UART, 0x10, 0x00, 0, PUC_FLAGS_MEMORY },
+ { PUC_PORT_TYPE_UART, 0x10, 0x10, 0, PUC_FLAGS_MEMORY },
+ { PUC_PORT_TYPE_UART, 0x10, 0x38, 0, PUC_FLAGS_MEMORY },
+ },
+ },
+
+ { "Comtrol RocketPort 550/4 RJ45",
+ NULL,
+ { 0x11fe, 0x8014, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4 },
+ },
+ },
+
+ { "Comtrol RocketPort 550/Quad",
+ NULL,
+ { 0x11fe, 0x8015, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4 },
+ },
+ },
+
+ { "Comtrol RocketPort 550/8 RJ11 part A",
+ NULL,
+ { 0x11fe, 0x8010, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4 },
+ },
+ },
+ { "Comtrol RocketPort 550/8 RJ11 part B",
+ NULL,
+ { 0x11fe, 0x8011, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4 },
+ },
+ },
+
+ { "Comtrol RocketPort 550/8 Octa part A",
+ NULL,
+ { 0x11fe, 0x8012, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4 },
+ },
+ },
+ { "Comtrol RocketPort 550/8 Octa part B",
+ NULL,
+ { 0x11fe, 0x8013, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4 },
+ },
+ },
+
+ { "Comtrol RocketPort 550/8 part A",
+ NULL,
+ { 0x11fe, 0x8018, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4 },
+ },
+ },
+ { "Comtrol RocketPort 550/8 part B",
+ NULL,
+ { 0x11fe, 0x8019, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4 },
+ },
+ },
+
+ { "Comtrol RocketPort 550/16 part A",
+ NULL,
+ { 0x11fe, 0x8016, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4 },
+ },
+ },
+ { "Comtrol RocketPort 550/16 part B",
+ NULL,
+ { 0x11fe, 0x8017, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x20, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x28, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x30, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x38, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x40, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x48, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x50, COM_FREQ * 4 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x58, COM_FREQ * 4 },
+ },
+ },
+
+ /*
+ * XXX no entry because I have no data:
+ * XXX Dolphin Peripherals 4006 (single parallel)
+ */
+
+ /*
+ * Dolphin Peripherals 4014 (dual parallel port) card. PLX 9050, with
+ * a seemingly-lame EEPROM setup that puts the Dolphin IDs
+ * into the subsystem fields, and claims that it's a
+ * network/misc (0x02/0x80) device.
+ */
+ { "Dolphin Peripherals 4014",
+ NULL,
+ { 0x10b5, 0x9050, 0xd84d, 0x6810 },
+ { 0xffff, 0xffff, 0xffff, 0xffff },
+ {
+ { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
+ { PUC_PORT_TYPE_LPT, 0x24, 0x00, 0x00 },
+ },
+ },
+
+ /*
+ * XXX Dolphin Peripherals 4025 (single serial)
+ * (clashes with Dolphin Peripherals 4036 (2s variant)
+ */
+
+ /*
+ * Dolphin Peripherals 4035 (dual serial port) card. PLX 9050, with
+ * a seemingly-lame EEPROM setup that puts the Dolphin IDs
+ * into the subsystem fields, and claims that it's a
+ * network/misc (0x02/0x80) device.
+ */
+ { "Dolphin Peripherals 4035",
+ NULL,
+ { 0x10b5, 0x9050, 0xd84d, 0x6808 },
+ { 0xffff, 0xffff, 0xffff, 0xffff },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ },
+ },
+
+ /*
+ * Dolphin Peripherals 4036 (dual serial port) card.
+ * (Dolpin 4025 has the same ID but only one port)
+ */
+ { "Dolphin Peripherals 4036",
+ NULL,
+ { 0x1409, 0x7168, 0x0, 0x0 },
+ { 0xffff, 0xffff, 0x0, 0x0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
+ },
+ },
+
+ /*
+ * XXX no entry because I have no data:
+ * XXX Dolphin Peripherals 4078 (dual serial and single parallel)
+ */
+
+
+ /*
+ * SIIG Boards.
+ *
+ * SIIG provides documentation for their boards at:
+ * <URL:http://www.siig.com/driver.htm>
+ *
+ * Please excuse the weird ordering, it's the order they
+ * use in their documentation.
+ */
+
+ /*
+ * SIIG "10x" family boards.
+ */
+
+ /* SIIG Cyber Serial PCI 16C550 (10x family): 1S */
+ { "SIIG Cyber Serial PCI 16C550 (10x family)",
+ NULL,
+ { 0x131f, 0x1000, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber Serial PCI 16C650 (10x family): 1S */
+ { "SIIG Cyber Serial PCI 16C650 (10x family)",
+ NULL,
+ { 0x131f, 0x1001, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber Serial PCI 16C850 (10x family): 1S */
+ { "SIIG Cyber Serial PCI 16C850 (10x family)",
+ NULL,
+ { 0x131f, 0x1002, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber I/O PCI 16C550 (10x family): 1S, 1P */
+ { "SIIG Cyber I/O PCI 16C550 (10x family)",
+ NULL,
+ { 0x131f, 0x1010, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber I/O PCI 16C650 (10x family): 1S, 1P */
+ { "SIIG Cyber I/O PCI 16C650 (10x family)",
+ NULL,
+ { 0x131f, 0x1011, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber I/O PCI 16C850 (10x family): 1S, 1P */
+ { "SIIG Cyber I/O PCI 16C850 (10x family)",
+ NULL,
+ { 0x131f, 0x1012, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber Parallel PCI (10x family): 1P */
+ { "SIIG Cyber Parallel PCI (10x family)",
+ NULL,
+ { 0x131f, 0x1020, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber Parallel Dual PCI (10x family): 2P */
+ { "SIIG Cyber Parallel Dual PCI (10x family)",
+ NULL,
+ { 0x131f, 0x1021, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
+ { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber Serial Dual PCI 16C550 (10x family): 2S */
+ { "SIIG Cyber Serial Dual PCI 16C550 (10x family)",
+ NULL,
+ { 0x131f, 0x1030, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber Serial Dual PCI 16C650 (10x family): 2S */
+ { "SIIG Cyber Serial Dual PCI 16C650 (10x family)",
+ NULL,
+ { 0x131f, 0x1031, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber Serial Dual PCI 16C850 (10x family): 2S */
+ { "SIIG Cyber Serial Dual PCI 16C850 (10x family)",
+ NULL,
+ { 0x131f, 0x1032, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber 2S1P PCI 16C550 (10x family): 2S, 1P */
+ { "SIIG Cyber 2S1P PCI 16C550 (10x family)",
+ NULL,
+ { 0x131f, 0x1034, 0, 0 }, /* XXX really? */
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber 2S1P PCI 16C650 (10x family): 2S, 1P */
+ { "SIIG Cyber 2S1P PCI 16C650 (10x family)",
+ NULL,
+ { 0x131f, 0x1035, 0, 0 }, /* XXX really? */
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber 2S1P PCI 16C850 (10x family): 2S, 1P */
+ { "SIIG Cyber 2S1P PCI 16C850 (10x family)",
+ NULL,
+ { 0x131f, 0x1036, 0, 0 }, /* XXX really? */
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber 4S PCI 16C550 (10x family): 4S */
+ { "SIIG Cyber 4S PCI 16C550 (10x family)",
+ NULL,
+ { 0x131f, 0x1050, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber 4S PCI 16C650 (10x family): 4S */
+ { "SIIG Cyber 4S PCI 16C650 (10x family)",
+ NULL,
+ { 0x131f, 0x1051, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber 4S PCI 16C850 (10x family): 4S */
+ { "SIIG Cyber 4S PCI 16C850 (10x family)",
+ NULL,
+ { 0x131f, 0x1052, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ },
+ },
+ },
+
+ /*
+ * SIIG "20x" family boards.
+ */
+
+ /* SIIG Cyber Parallel PCI (20x family): 1P */
+ { "SIIG Cyber Parallel PCI (20x family)",
+ NULL,
+ { 0x131f, 0x2020, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber Parallel Dual PCI (20x family): 2P */
+ { "SIIG Cyber Parallel Dual PCI (20x family)",
+ NULL,
+ { 0x131f, 0x2021, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
+ { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber 2P1S PCI 16C550 (20x family): 1S, 2P */
+ { "SIIG Cyber 2P1S PCI 16C550 (20x family)",
+ NULL,
+ { 0x131f, 0x2040, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
+ { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber 2P1S PCI 16C650 (20x family): 1S, 2P */
+ { "SIIG Cyber 2P1S PCI 16C650 (20x family)",
+ NULL,
+ { 0x131f, 0x2041, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
+ { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber 2P1S PCI 16C850 (20x family): 1S, 2P */
+ { "SIIG Cyber 2P1S PCI 16C850 (20x family)",
+ NULL,
+ { 0x131f, 0x2042, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
+ { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber Serial PCI 16C550 (20x family): 1S */
+ { "SIIG Cyber Serial PCI 16C550 (20x family)",
+ NULL,
+ { 0x131f, 0x2000, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber Serial PCI 16C650 (20x family): 1S */
+ { "SIIG Cyber Serial PCI 16C650 (20x family)",
+ NULL,
+ { 0x131f, 0x2001, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber Serial PCI 16C850 (20x family): 1S */
+ { "SIIG Cyber Serial PCI 16C850 (20x family)",
+ NULL,
+ { 0x131f, 0x2002, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber I/O PCI 16C550 (20x family): 1S, 1P */
+ { "SIIG Cyber I/O PCI 16C550 (20x family)",
+ NULL,
+ { 0x131f, 0x2010, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber I/O PCI 16C650 (20x family): 1S, 1P */
+ { "SIIG Cyber I/O PCI 16C650 (20x family)",
+ NULL,
+ { 0x131f, 0x2011, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber I/O PCI 16C850 (20x family): 1S, 1P */
+ { "SIIG Cyber I/O PCI 16C850 (20x family)",
+ NULL,
+ { 0x131f, 0x2012, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber Serial Dual PCI 16C550 (20x family): 2S */
+ { "SIIG Cyber Serial Dual PCI 16C550 (20x family)",
+ NULL,
+ { 0x131f, 0x2030, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber Serial Dual PCI 16C650 (20x family): 2S */
+ { "SIIG Cyber Serial Dual PCI 16C650 (20x family)",
+ NULL,
+ { 0x131f, 0x2031, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber Serial Dual PCI 16C850 (20x family): 2S */
+ { "SIIG Cyber Serial Dual PCI 16C850 (20x family)",
+ NULL,
+ { 0x131f, 0x2032, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber 2S1P PCI 16C550 (20x family): 2S, 1P */
+ { "SIIG Cyber 2S1P PCI 16C550 (20x family)",
+ NULL,
+ { 0x131f, 0x2060, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber 2S1P PCI 16C650 (20x family): 2S, 1P */
+ { "SIIG Cyber 2S1P PCI 16C650 (20x family)",
+ NULL,
+ { 0x131f, 0x2061, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber 2S1P PCI 16C850 (20x family): 2S, 1P */
+ { "SIIG Cyber 2S1P PCI 16C850 (20x family)",
+ NULL,
+ { 0x131f, 0x2062, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
+ },
+ },
+
+ /* SIIG Cyber 4S PCI 16C550 (20x family): 4S */
+ { "SIIG Cyber 4S PCI 16C550 (20x family)",
+ NULL,
+ { 0x131f, 0x2050, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber 4S PCI 16C650 (20x family): 4S */
+ { "SIIG Cyber 4S PCI 16C650 (20x family)",
+ NULL,
+ { 0x131f, 0x2051, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SIIG Cyber 4S PCI 16C850 (20x family): 4S */
+ { "SIIG Cyber 4S PCI 16C850 (20x family)",
+ NULL,
+ { 0x131f, 0x2052, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ },
+ },
+
+ /* VScom PCI-200L: 2S */
+ { "VScom PCI-200L",
+ NULL,
+ { 0x14d2, 0x8020, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8},
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8},
+ },
+ },
+
+ /* VScom PCI-400: 4S */
+ { "VScom PCI-400",
+ NULL,
+ { 0x10b5, 0x1077, 0x10b5, 0x1077 },
+ { 0xffff, 0xffff, 0xffff, 0xffff },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
+ },
+ },
+
+ /* VScom PCI-800: 8S */
+ { "VScom PCI-800",
+ NULL,
+ { 0x10b5, 0x1076, 0x10b5, 0x1076 },
+ { 0xffff, 0xffff, 0xffff, 0xffff },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },
+ },
+ },
+ /*
+ * VScom PCI-800H. Uses 8 16950 UART, behind a PCI chips that offers
+ * 4 com port on PCI device 0 and 4 on PCI device 1. PCI device 0 has
+ * device ID 3 and PCI device 1 device ID 4.
+ */
+ { "Titan PCI-800H",
+ NULL,
+ { 0x14d2, 0xa003, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
+ },
+ },
+ { "Titan PCI-800H",
+ NULL,
+ { 0x14d2, 0xa004, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
+ },
+ },
+ { "Titan PCI-200H",
+ NULL,
+ { 0x14d2, 0xa005, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
+ },
+ },
+
+ { "Titan VScom PCI-200HV2", /* 2S */
+ NULL,
+ { 0x14d2, 0xe020, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
+ },
+ },
+ /*
+ * VScom (Titan?) PCI-800L. More modern variant of the
+ * PCI-800. Uses 6 discrete 16550 UARTs, plus another
+ * two of them obviously implemented as macro cells in
+ * the ASIC. This causes the weird port access pattern
+ * below, where two of the IO port ranges each access
+ * one of the ASIC UARTs, and a block of IO addresses
+ * access the external UARTs.
+ */
+ { "Titan VScom PCI-800L",
+ NULL,
+ { 0x14d2, 0x8080, 0x14d2, 0x8080 },
+ { 0xffff, 0xffff, 0xffff, 0xffff },
+ {
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x20, 0x10, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x20, 0x18, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x20, 0x20, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x20, 0x28, COM_FREQ * 8 },
+ },
+ },
+
+ /* NEC PK-UG-X001 K56flex PCI Modem card.
+ NEC MARTH bridge chip and Rockwell RCVDL56ACF/SP using. */
+ { "NEC PK-UG-X001 K56flex PCI Modem",
+ NULL,
+ { 0x1033, 0x0074, 0x1033, 0x8014 },
+ { 0xffff, 0xffff, 0xffff, 0xffff },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ },
+ },
+
+ /* NEC PK-UG-X008 */
+ { "NEC PK-UG-X008",
+ NULL,
+ { 0x1033, 0x007d, 0x1033, 0x8012 },
+ { 0xffff, 0xffff, 0xffff, 0xffff },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ},
+ },
+ },
+
+ /* Lava Computers 2SP-PCI */
+ { "Lava Computers 2SP-PCI parallel port",
+ NULL,
+ { 0x1407, 0x8000, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
+ },
+ },
+
+ /* Lava Computers 2SP-PCI and Quattro-PCI serial ports */
+ { "Lava Computers dual serial port",
+ NULL,
+ { 0x1407, 0x0100, 0, 0 },
+ { 0xffff, 0xfffc, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ },
+ },
+
+ /* Lava Computers newer Quattro-PCI serial ports */
+ { "Lava Computers Quattro-PCI serial port",
+ NULL,
+ { 0x1407, 0x0120, 0, 0 },
+ { 0xffff, 0xfffc, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ },
+ },
+
+ /* Lava Computers DSerial PCI serial ports */
+ { "Lava Computers serial port",
+ NULL,
+ { 0x1407, 0x0110, 0, 0 },
+ { 0xffff, 0xfffc, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ },
+ },
+
+ /* Lava Computers Octopus-550 serial ports */
+ { "Lava Computers Octopus-550 8-port serial",
+ NULL,
+ { 0x1407, 0x0180, 0, 0 },
+ { 0xffff, 0xfffc, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ },
+ },
+
+ /* US Robotics (3Com) PCI Modems */
+ { "US Robotics (3Com) 3CP5609 PCI 16550 Modem",
+ NULL,
+ { 0x12b9, 0x1008, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ },
+ },
+
+ /* Actiontec 56K PCI Master */
+ { "Actiontec 56K PCI Master",
+ NULL,
+ { 0x11c1, 0x0480, 0x0, 0x0 },
+ { 0xffff, 0xffff, 0x0, 0x0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ },
+ },
+
+ /*
+ * Boards with an Oxford Semiconductor chip.
+ *
+ * Oxford Semiconductor provides documentation for their chip at:
+ * <URL:http://www.oxsemi.com/products/uarts/index.html>
+ *
+ * As sold by Kouwell <URL:http://www.kouwell.com/>.
+ * I/O Flex PCI I/O Card Model-223 with 4 serial and 1 parallel ports.
+ */
+
+ /* Oxford Semiconductor OX16PCI954 PCI UARTs */
+ { "Oxford Semiconductor OX16PCI954 UARTs",
+ NULL,
+ { 0x1415, 0x9501, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ },
+ },
+ },
+
+ /* Oxford Semiconductor OX16PCI954 PCI UARTs */
+ { "Oxford Semiconductor OX16PCI954 UARTs",
+ NULL,
+ { 0x1415, 0x950a, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ },
+ },
+ },
+
+ /* Oxford Semiconductor OX16PCI954 PCI Parallel port */
+ { "Oxford Semiconductor OX16PCI954 Parallel port",
+ NULL,
+ { 0x1415, 0x9513, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
+ },
+ },
+
+ /* Oxford Semiconductor OX12PCI840 PCI Parallel port */
+ { "Qxford Semiconductor OX12PCI840 Parallel port",
+ NULL,
+ { 0x1415, 0x8403, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
+ },
+ },
+
+ /* NetMos 2S1P PCI 16C650 : 2S, 1P */
+ { "NetMos NM9835 Dual UART and 1284 Printer port",
+ NULL,
+ { 0x9710, 0x9835, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
+ },
+ },
+
+ /* NetMos 4S0P PCI: 4S, 0P */
+ { "NetMos NM9845 Quad UART",
+ NULL,
+ { 0x9710, 0x9845, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ },
+ },
+
+ /*
+ * This is the Middle Digital, Inc. PCI-Weasel, which
+ * uses a PCI interface implemented in FPGA.
+ */
+ { "Middle Digital, Inc. Weasel serial port",
+ NULL,
+ { 0xdeaf, 0x9051, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ },
+ },
+
+ /* SD-LAB PCI I/O Card 4S2P */
+ { "Syba Tech Ltd. PCI-4S2P-550-ECP",
+ puc_config_win877,
+ { 0x1592, 0x0781, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x2e8, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x2f8, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x10, 0x000, 0x00 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x3e8, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x3f8, COM_FREQ },
+ { PUC_PORT_TYPE_LPT, 0x10, 0x000, 0x00 },
+ },
+ },
+
+ /* Moxa Technologies Co., Ltd. PCI I/O Card 4S RS232 */
+ { "Moxa Technologies, Smartio C104H/PCI",
+ NULL,
+ { 0x1393, 0x1040, 0, 0 },
+ { 0xffff, 0xffff, 0, 0, },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
+ },
+ },
+
+ /* Moxa Technologies Co., Ltd. PCI I/O Card 4S RS232 */
+ { "Moxa Technologies, Smartio CP-104UL/PCI",
+ NULL,
+ { 0x1393, 0x1041, 0, 0 },
+ { 0xffff, 0xffff, 0, 0, },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
+ },
+ },
+
+ /* Moxa Technologies Co., Ltd. PCI I/O Card 4S RS232/422/485 */
+ { "Moxa Technologies, Industio CP-114",
+ NULL,
+ { 0x1393, 0x1141, 0, 0 },
+ { 0xffff, 0xffff, 0, 0, },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
+ },
+ },
+
+ /* Moxa Technologies Co., Ltd. PCI I/O Card 8S RS232 */
+ { "Moxa Technologies, C168H/PCI",
+ NULL,
+ { 0x1393, 0x1680, 0, 0 },
+ { 0xffff, 0xffff, 0, 0, },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },
+ },
+ },
+
+ /* Moxa Technologies Co., Ltd. PCI I/O Card 8S RS232 */
+ { "Moxa Technologies, C168U/PCI",
+ NULL,
+ { 0x1393, 0x1681, 0, 0 },
+ { 0xffff, 0xffff, 0, 0, },
+ {
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },
+ },
+ },
+
+ { "Avlab Technology, PCI IO 2S",
+ NULL,
+ { 0x14db, 0x2130, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ },
+ },
+
+ /* Avlab Technology, Inc. Low Profile PCI 4 Serial: 4S */
+ { "Avlab Low Profile PCI 4 Serial",
+ NULL,
+ { 0x14db, 0x2150, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ },
+ },
+
+ /* Decision Computer Inc, serial ports */
+ { "Decision Computer Inc, PCCOM 4-port serial",
+ NULL,
+ { 0x6666, 0x0001, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x10, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x18, COM_FREQ },
+ },
+ },
+
+ { "PCCOM dual port RS232/422/485",
+ NULL,
+ { 0x6666, 0x0004, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_FREQ },
+ },
+ },
+
+ { "IC Book Labs Ironclad x8 Lite",
+ NULL,
+ { 0xb00c, 0x041c, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x20, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x28, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x30, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x38, COM_FREQ }
+ },
+ PUC_ILR_TYPE_DIGI, { 0x07 },
+ },
+
+ { "IC Book Labs Ironclad x8 Pro",
+ NULL,
+ { 0xb00c, 0x051c, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x20, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x28, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x30, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x38, COM_FREQ }
+ },
+ PUC_ILR_TYPE_DIGI, { 0x07 },
+ },
+
+ { "IC Book Labs Dreadnought x16 Lite",
+ NULL,
+ { 0xb00c, 0x091c, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x20, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x28, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x30, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x38, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x40, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x48, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x50, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x58, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x60, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x68, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x70, COM_FREQ },
+ { PUC_PORT_TYPE_COM, 0x10, 0x78, COM_FREQ },
+ },
+ PUC_ILR_TYPE_DIGI, { 0x07, 0x47 },
+ },
+
+ { "IC Book Labs Dreadnought x16 Pro",
+ NULL,
+ { 0xb00c, 0x081c, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x20, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x28, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x30, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x38, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x40, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x48, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x50, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x58, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x60, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x68, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x70, COM_FREQ * 8, 0x200000 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x78, COM_FREQ * 8, 0x200000 },
+ },
+ PUC_ILR_TYPE_DIGI, { 0x07, 0x47 },
+ },
+
+ { "Sunix SUN1889",
+ NULL,
+ { 0x0009, 0x7168, 0, 0 },
+ { 0xffff, 0xffff, 0, 0 },
+ {
+ { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
+ { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
+ },
+ },
+
+ { 0 }
+};
diff --git a/sys/dev/puc/pucvar.h b/sys/dev/puc/pucvar.h
new file mode 100644
index 0000000..4ea07dc
--- /dev/null
+++ b/sys/dev/puc/pucvar.h
@@ -0,0 +1,165 @@
+/* $NetBSD: pucvar.h,v 1.2 1999/02/06 06:29:54 cgd Exp $ */
+/* $FreeBSD$ */
+
+/*-
+ * Copyright (c) 2002 JF Hay. All rights reserved.
+ * Copyright (c) 2000 M. Warner Losh. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice unmodified, this list of conditions, and the following
+ * disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+/*
+ * Copyright (c) 1998, 1999 Christopher G. Demetriou. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Christopher G. Demetriou
+ * for the NetBSD Project.
+ * 4. The name of the author may not be used to endorse or promote products
+ * derived from this software without specific prior written permission
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+/*
+ * Exported (or conveniently located) PCI "universal" communications card
+ * software structures.
+ *
+ * Author: Christopher G. Demetriou, May 14, 1998.
+ */
+
+#define PUC_MAX_PORTS 16
+
+struct puc_softc;
+typedef int puc_init_t(struct puc_softc *sc);
+struct puc_device_description {
+ const char *name;
+ puc_init_t *init;
+ uint32_t rval[4];
+ uint32_t rmask[4];
+ struct {
+ int type;
+ int bar;
+ int offset;
+ u_int serialfreq;
+ u_int flags;
+ int regshft;
+ } ports[PUC_MAX_PORTS];
+ uint32_t ilr_type;
+ uint32_t ilr_offset[2];
+};
+
+#define PUC_REG_VEND 0
+#define PUC_REG_PROD 1
+#define PUC_REG_SVEND 2
+#define PUC_REG_SPROD 3
+
+#define PUC_PORT_TYPE_NONE 0
+#define PUC_PORT_TYPE_COM 1
+#define PUC_PORT_TYPE_LPT 2
+#define PUC_PORT_TYPE_UART 3
+
+/* UART subtypes. */
+#define PUC_PORT_SUBTYPE_MASK (~0xff)
+#define PUC_PORT_UART_NS8250 (0<<8)
+#define PUC_PORT_UART_SAB82532 (1<<8)
+#define PUC_PORT_UART_Z8530 (2<<8)
+
+/* Interrupt Latch Register (ILR) types */
+#define PUC_ILR_TYPE_NONE 0
+#define PUC_ILR_TYPE_DIGI 1
+
+#define PUC_FLAGS_MEMORY 0x0001 /* Use memory mapped I/O. */
+#define PUC_FLAGS_ALTRES 0x0002 /* Use alternate I/O type. */
+
+#define PUC_PORT_VALID(desc, port) \
+ ((port) < PUC_MAX_PORTS && (desc).ports[(port)].type != PUC_PORT_TYPE_NONE)
+
+#define PUC_MAX_BAR 6
+
+enum puc_device_ivars {
+ PUC_IVAR_FREQ,
+ PUC_IVAR_SUBTYPE,
+ PUC_IVAR_REGSHFT,
+ PUC_IVAR_PORT
+};
+
+#ifdef PUC_ENTRAILS
+int puc_attach(device_t dev, const struct puc_device_description *desc);
+extern devclass_t puc_devclass;
+struct resource *puc_alloc_resource(device_t, device_t, int, int *,
+ u_long, u_long, u_long, u_int);
+int puc_release_resource(device_t, device_t, int, int, struct resource *);
+int puc_get_resource(device_t, device_t, int, int, u_long *, u_long *);
+int puc_read_ivar(device_t, device_t, int, uintptr_t *);
+int puc_setup_intr(device_t, device_t, struct resource *, int,
+ void (*)(void *), void *, void **);
+int puc_teardown_intr(device_t, device_t, struct resource *,
+ void *);
+
+struct puc_softc {
+ struct puc_device_description sc_desc;
+
+ /* card-global dynamic data */
+ int fastintr;
+ int barmuxed;
+ int irqrid;
+ struct resource *irqres;
+ void *intr_cookie;
+ int ilr_enabled;
+ bus_space_tag_t ilr_st;
+ bus_space_handle_t ilr_sh;
+
+ struct {
+ int used;
+ int bar;
+ int type; /* SYS_RES_IOPORT or SYS_RES_MEMORY. */
+ struct resource *res;
+ } sc_bar_mappings[PUC_MAX_BAR];
+
+ /* per-port dynamic data */
+ struct {
+ struct device *dev;
+ /* filled in by bus_setup_intr() */
+ void (*ihand)(void *);
+ void *ihandarg;
+ } sc_ports[PUC_MAX_PORTS];
+};
+
+#endif /* PUC_ENTRAILS */
OpenPOWER on IntegriCloud