summaryrefslogtreecommitdiffstats
path: root/sys/dev/ep/if_ep_mca.c
diff options
context:
space:
mode:
authormdodd <mdodd@FreeBSD.org>1999-09-26 06:42:36 +0000
committermdodd <mdodd@FreeBSD.org>1999-09-26 06:42:36 +0000
commit5272c65210119098f91f9749539447f2945f26a9 (patch)
tree1686bbf05ff020787377386cdef3689839bbc67f /sys/dev/ep/if_ep_mca.c
parent07038f1e994b4a14bbf31e08277be3a83b8b95d1 (diff)
downloadFreeBSD-src-5272c65210119098f91f9749539447f2945f26a9.zip
FreeBSD-src-5272c65210119098f91f9749539447f2945f26a9.tar.gz
- Split out the ISA and PCCARD specific code.
- Split out the prototypes, externs and struct decls from if_epreg.h into if_epvar.h. - Add support for MCA based Etherlink III (3c529) devices. None of this code is used right now; the old if_ep driver is still in place and used. I will eventually get around to converting if_ep_isa.c to newbus once I've had a talk with Peter and DFR about the DEVICE_IDENTIFY() method. I have tested this code on my PS/2. It works. I would like EISA and ISA testers since my example hardware hasn't arrived yet. Add: dev/ep/if_ep.c optional ep dev/ep/if_ep_isa.c optional ep isa dev/ep/if_ep_eisa.c optional ep eisa dev/ep/if_ep_mca.c optional ep mca dev/ep/if_ep_pccard.c optional ep card to sys/conf/files Remove: i386/eisa/3c5x9.c optional ep i386/isa/if_ep.c optional ep from sys/i386/conf/files.i386 PCCARD testers wanted! I will switch off and cvs rm the old driver in favor of this copy once I've had positive feedback or have the hardware to verify that it works.
Diffstat (limited to 'sys/dev/ep/if_ep_mca.c')
-rw-r--r--sys/dev/ep/if_ep_mca.c219
1 files changed, 219 insertions, 0 deletions
diff --git a/sys/dev/ep/if_ep_mca.c b/sys/dev/ep/if_ep_mca.c
new file mode 100644
index 0000000..6e0b9e3
--- /dev/null
+++ b/sys/dev/ep/if_ep_mca.c
@@ -0,0 +1,219 @@
+/*-
+ * Copyright (c) 1999 Matthew N. Dodd <winter@jurai.net>
+ * 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 AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
+ *
+ * $FreeBSD$
+ */
+
+#include <sys/types.h>
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/socket.h>
+
+#include <vm/vm.h>
+#include <vm/vm_param.h>
+#include <vm/pmap.h>
+
+#include <machine/clock.h>
+#include <machine/cpufunc.h>
+#include <machine/md_var.h>
+
+#include <sys/module.h>
+#include <sys/bus.h>
+#include <machine/bus.h>
+#include <machine/resource.h>
+#include <sys/rman.h>
+
+#include <net/if.h>
+#include <net/if_mib.h>
+
+#include <netinet/in.h>
+#include <netinet/if_ether.h>
+
+#include <dev/mca/mca_busreg.h>
+#include <dev/mca/mca_busvar.h>
+
+#include <dev/ep/if_epreg.h>
+#include <dev/ep/if_epvar.h>
+
+#define EP_MCA_627C 0x627C
+#define EP_MCA_627D 0x627D
+#define EP_MCA_62DB 0x62db
+#define EP_MCA_62F6 0x62f6
+#define EP_MCA_62F7 0x62f7
+
+static struct mca_ident ep_mca_devs[] = {
+ { EP_MCA_627C, "3Com 3C529 Network Adapter" },
+ { EP_MCA_627D, "3Com 3C529-TP Network Adapter" },
+
+ /*
+ * These are from the linux 3c509 driver.
+ * I have not seen the ADFs for them and have
+ * not tested or even seen the hardware.
+ * Someone with the ADFs should replace the names with
+ * whatever is in the AdapterName field of the ADF.
+ * (and fix the media setup for the cards as well.)
+ */
+ { EP_MCA_62DB, "3Com 3c529 EtherLink III (test mode)" },
+ { EP_MCA_62F6, "3Com 3c529 EtherLink III (TP or coax)" },
+ { EP_MCA_62F7, "3Com 3c529 EtherLink III (TP)" },
+
+ { 0, NULL },
+};
+
+#define EP_MCA_IOPORT_POS MCA_ADP_POS(MCA_POS2)
+#define EP_MCA_IOPORT_MASK 0xfc
+#define EP_MCA_IOPORT_SIZE 0x0f
+#define EP_MCA_IOPORT(pos) ((((u_int32_t)pos & EP_MCA_IOPORT_MASK) \
+ | 0x02) << 8)
+
+#define EP_MCA_IRQ_POS MCA_ADP_POS(MCA_POS3)
+#define EP_MCA_IRQ_MASK 0x0f
+#define EP_MCA_IRQ(pos) (pos & EP_MCA_IRQ_MASK)
+
+#define EP_MCA_MEDIA_POS MCA_ADP_POS(MCA_POS2)
+#define EP_MCA_MEDIA_MASK 0x03
+#define EP_MCA_MEDIA(pos) (pos & EP_MCA_MEDIA_MASK)
+
+static int
+ep_mca_probe (device_t dev)
+{
+ const char * desc;
+ u_int32_t iobase = 0;
+ u_int8_t irq = 0;
+ u_int8_t pos;
+
+ desc = mca_match_id(mca_get_id(dev), ep_mca_devs);
+ if (!desc)
+ return (ENXIO);
+ device_set_desc(dev, desc);
+
+ pos = mca_pos_read(dev, EP_MCA_IOPORT_POS);
+ iobase = EP_MCA_IOPORT(pos);
+
+ pos = mca_pos_read(dev, EP_MCA_IRQ_POS);
+ irq = EP_MCA_IRQ(pos);
+
+ mca_add_iospace(dev, iobase, EP_MCA_IOPORT_SIZE);
+ mca_add_irq(dev, irq);
+
+ return (0);
+}
+
+static int
+ep_mca_attach (device_t dev)
+{
+ struct ep_softc * sc;
+ struct ep_board * epb;
+ struct resource * io = 0;
+ struct resource * irq = 0;
+ u_int8_t pos;
+ int unit = device_get_unit(dev);
+ int i, rid;
+ void * ih;
+
+ rid = 0;
+ io = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
+ 0, ~0, 1, RF_ACTIVE);
+ if (!io) {
+ device_printf(dev, "No I/O space?!\n");
+ goto bad;
+ }
+
+ rid = 0;
+ irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid,
+ 0, ~0, 1, RF_ACTIVE);
+ if (!irq) {
+ device_printf(dev, "No irq?!\n");
+ goto bad;
+ }
+
+ epb = &ep_board[ep_boards];
+
+ epb->epb_addr = rman_get_start(io);
+ epb->epb_used = 1;
+
+ if(!(sc = ep_alloc(unit, epb)))
+ goto bad;
+
+ ep_boards++;
+
+ sc->stat = F_ACCESS_32_BITS;
+
+ switch(mca_get_id(dev)) {
+ case EP_MCA_627C:
+ sc->ep_connectors = BNC|AUI;
+ break;
+ case EP_MCA_627D:
+ sc->ep_connectors = UTP|AUI;
+ break;
+ default:
+ break;
+ }
+ pos = mca_pos_read(dev, EP_MCA_MEDIA_POS);
+ sc->ep_connector = EP_MCA_MEDIA(pos);
+
+ /*
+ * Retrieve our ethernet address
+ */
+ GO_WINDOW(0);
+ for(i = 0; i < 3; i++)
+ sc->epb->eth_addr[i] = get_e(sc, i);
+
+ GO_WINDOW(0);
+ SET_IRQ(BASE, rman_get_start(irq));
+
+ ep_attach(sc);
+
+ bus_setup_intr(dev, irq, INTR_TYPE_NET, ep_intr, sc, &ih);
+
+ return (0);
+
+bad:
+ if (io)
+ bus_release_resource(dev, SYS_RES_IOPORT, 0, io);
+ if (irq)
+ bus_release_resource(dev, SYS_RES_IRQ, 0, irq);
+
+ return (-1);
+}
+
+static device_method_t ep_mca_methods[] = {
+ /* Device interface */
+ DEVMETHOD(device_probe, ep_mca_probe),
+ DEVMETHOD(device_attach, ep_mca_attach),
+
+ { 0, 0 }
+};
+
+static driver_t ep_mca_driver = {
+ "ep",
+ ep_mca_methods,
+ 1, /* unusep */
+};
+
+static devclass_t ep_devclass;
+
+DRIVER_MODULE(ep, mca, ep_mca_driver, ep_devclass, 0, 0);
OpenPOWER on IntegriCloud