]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/dev/isf/isf_nexus.c
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / sys / dev / isf / isf_nexus.c
1 /*-
2  * Copyright (c) 2012 Robert N. M. Watson
3  * Copyright (c) 2012 SRI International
4  * All rights reserved.
5  *
6  * This software was developed by SRI International and the University of
7  * Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237)
8  * ("CTSRD"), as part of the DARPA CRASH research programme.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34
35 #include <sys/param.h>
36 #include <sys/bus.h>
37 #include <sys/condvar.h>
38 #include <sys/conf.h>
39 #include <sys/bio.h>
40 #include <sys/kernel.h>
41 #include <sys/lock.h>
42 #include <sys/malloc.h>
43 #include <sys/module.h>
44 #include <sys/mutex.h>
45 #include <sys/rman.h>
46 #include <sys/systm.h>
47 #include <sys/taskqueue.h>
48
49 #include <machine/bus.h>
50 #include <machine/resource.h>
51
52 #include <geom/geom_disk.h>
53
54 #include <dev/isf/isf.h>
55
56 /*
57  * Nexus bus attachment for the Intel Strata Flash devices.  Appropriate for
58  * most Altera FPGA SoC-style configurations in which the part will be exposed
59  * to the processor via a memory-mapped Avalon bus.
60  */
61 static int
62 isf_nexus_probe(device_t dev)
63 {
64
65         device_set_desc(dev, "Intel StrataFlash NOR flash device");
66         return (BUS_PROBE_DEFAULT);
67 }
68
69 static int
70 isf_nexus_attach(device_t dev)
71 {
72         int                      error;
73         struct isf_softc        *sc;
74
75         sc = device_get_softc(dev);
76         sc->isf_dev = dev;
77         sc->isf_unit = device_get_unit(dev);
78         sc->isf_rid = 0;
79         sc->isf_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
80             &sc->isf_rid, RF_ACTIVE);
81         if (sc->isf_res == NULL) {
82                 device_printf(dev, "couldn't map memory\n");
83                 return (ENXIO);
84         }
85         error = isf_attach(sc);
86         if (error)
87                 bus_release_resource(dev, SYS_RES_MEMORY, sc->isf_rid,
88                     sc->isf_res);
89         return (error);
90 }
91
92 static int
93 isf_nexus_detach(device_t dev)
94 {
95         struct isf_softc *sc;
96
97         sc = device_get_softc(dev);
98         KASSERT(sc->isf_res != NULL, ("%s: resources not allocated",
99             __func__));
100         isf_detach(sc);
101         bus_release_resource(dev, SYS_RES_MEMORY, sc->isf_rid, sc->isf_res);
102         return (0);
103 }
104
105 static device_method_t isf_nexus_methods[] = {
106         DEVMETHOD(device_probe,         isf_nexus_probe),
107         DEVMETHOD(device_attach,        isf_nexus_attach),
108         DEVMETHOD(device_detach,        isf_nexus_detach),
109         { 0, 0 }
110 };
111
112 static driver_t isf_nexus_driver = {
113         "isf",
114         isf_nexus_methods,
115         sizeof(struct isf_softc),
116 };
117
118 DRIVER_MODULE(isf, nexus, isf_nexus_driver, isf_devclass, 0, 0);