Merge from vendor branch FILE:
[dragonfly.git] / sys / dev / netif / cs / if_cs_isa.c
1 /*
2  * Copyright (c) 1997,1998 Maxim Bolotin and Oleg Sharoiko.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice unmodified, this list of conditions, and the following
10  *    disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD: src/sys/dev/cs/if_cs_isa.c,v 1.1.2.1 2001/01/25 20:13:48 imp Exp $
28  * $DragonFly: src/sys/dev/netif/cs/if_cs_isa.c,v 1.8 2006/10/25 20:55:56 dillon Exp $
29  */
30
31 #include <sys/param.h>
32 #include <sys/kernel.h>
33 #include <sys/socket.h>
34 #include <sys/module.h>
35 #include <sys/bus.h>
36
37 #include <net/ethernet.h> 
38 #include <net/if.h>
39 #include <net/if_arp.h>
40
41 #include <bus/isa/isavar.h>
42
43 #include "if_csvar.h"
44
45 static int              cs_isa_probe    (device_t);
46
47 static struct isa_pnp_id cs_ids[] = {
48         { 0x4060630e, NULL },           /* CSC6040 */
49         { 0x10104d24, NULL },           /* IBM EtherJet */
50         { 0, NULL }
51 };
52
53 /*
54  * Determine if the device is present
55  */
56 static int
57 cs_isa_probe(device_t dev)
58 {
59         int error = 0;
60
61         /* Check isapnp ids */
62         error = ISA_PNP_PROBE(device_get_parent(dev), dev, cs_ids);
63
64         /* If the card had a PnP ID that didn't match any we know about */
65         if (!(error == 0 || error == ENOENT))
66                 return error;
67
68         error = cs_cs89x0_probe(dev);
69         if (error == 0)
70                 error = cs_alloc_irq(dev, 0, 0);
71
72         cs_release_resources(dev);
73         return (error);
74 }
75
76 static device_method_t cs_isa_methods[] = {
77         /* Device interface */
78         DEVMETHOD(device_probe,         cs_isa_probe),
79         DEVMETHOD(device_attach,        cs_attach),
80         DEVMETHOD(device_detach,        cs_detach),
81
82         { 0, 0 }
83 };
84
85 static driver_t cs_isa_driver = {
86         "cs",
87         cs_isa_methods,
88         sizeof(struct cs_softc),
89 };
90
91 extern devclass_t cs_devclass;
92
93 DRIVER_MODULE(if_cs, isa, cs_isa_driver, cs_devclass, 0, 0);