]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/versatile/if_smc_fdt.c
Move remaining code and data related to static device mapping into the
[FreeBSD/FreeBSD.git] / sys / arm / versatile / if_smc_fdt.c
1 /*-
2  * Copyright (c) 2008 Benno Rice
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, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <sys/param.h>
31 #include <sys/bus.h>
32 #include <sys/kernel.h>
33 #include <sys/module.h>
34 #include <sys/socket.h>
35 #include <sys/systm.h>
36 #include <sys/taskqueue.h>
37
38 #include <machine/bus.h>
39 #include <machine/resource.h>
40
41 #include <net/ethernet.h>
42 #include <net/if.h>
43 #include <net/if_arp.h>
44 #include <net/if_media.h>
45
46 #include <dev/smc/if_smcvar.h>
47
48 #include <dev/mii/mii.h>
49 #include <dev/mii/miivar.h>
50
51 #include <dev/fdt/fdt_common.h>
52 #include <dev/ofw/openfirm.h>
53 #include <dev/ofw/ofw_bus.h>
54 #include <dev/ofw/ofw_bus_subr.h>
55
56 #include "miibus_if.h"
57
58 static int              smc_fdt_probe(device_t);
59 static int              smc_fdt_attach(device_t);
60 static int              smc_fdt_detach(device_t);
61
62 static int
63 smc_fdt_probe(device_t dev)
64 {
65         struct  smc_softc *sc;
66
67         if (ofw_bus_is_compatible(dev, "smsc,lan91c111")) {
68                 sc = device_get_softc(dev);
69                 sc->smc_usemem = 1;
70
71                 if (smc_probe(dev) != 0) {
72                         return (ENXIO);
73                 }
74
75                 return (0);
76         }
77
78         return (ENXIO);
79 }
80
81 static int
82 smc_fdt_attach(device_t dev)
83 {
84         int     err;
85         struct  smc_softc *sc;
86
87         sc = device_get_softc(dev);
88
89         err = smc_attach(dev);
90         if (err) {
91                 return (err);
92         }
93
94         return (0);
95 }
96
97 static int
98 smc_fdt_detach(device_t dev)
99 {
100
101         smc_detach(dev);
102
103         return (0);
104 }
105
106 static device_method_t smc_fdt_methods[] = {
107         /* Device interface */
108         DEVMETHOD(device_probe,         smc_fdt_probe),
109         DEVMETHOD(device_attach,        smc_fdt_attach),
110         DEVMETHOD(device_detach,        smc_fdt_detach),
111
112         /* MII interface */
113         DEVMETHOD(miibus_readreg,       smc_miibus_readreg),
114         DEVMETHOD(miibus_writereg,      smc_miibus_writereg),
115         DEVMETHOD(miibus_statchg,       smc_miibus_statchg),
116
117         { 0, 0 }
118 };
119
120 static driver_t smc_fdt_driver = {
121         "smc",
122         smc_fdt_methods,
123         sizeof(struct smc_softc),
124 };
125
126 extern devclass_t smc_devclass;
127
128 DRIVER_MODULE(smc, simplebus, smc_fdt_driver, smc_devclass, 0, 0);
129 DRIVER_MODULE(miibus, smc, miibus_driver, miibus_devclass, 0, 0);
130 MODULE_DEPEND(smc, fdt, 1, 1, 1);
131 MODULE_DEPEND(smc, ether, 1, 1, 1);
132 MODULE_DEPEND(smc, miibus, 1, 1, 1);