1239709Srwatson/*-
2239709Srwatson * Copyright (c) 2012 Robert N. M. Watson
3239709Srwatson * All rights reserved.
4239709Srwatson *
5239709Srwatson * This software was developed by SRI International and the University of
6239709Srwatson * Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237)
7239709Srwatson * ("CTSRD"), as part of the DARPA CRASH research programme.
8239709Srwatson *
9239709Srwatson * Redistribution and use in source and binary forms, with or without
10239709Srwatson * modification, are permitted provided that the following conditions
11239709Srwatson * are met:
12239709Srwatson * 1. Redistributions of source code must retain the above copyright
13239709Srwatson *    notice, this list of conditions and the following disclaimer.
14239709Srwatson * 2. Redistributions in binary form must reproduce the above copyright
15239709Srwatson *    notice, this list of conditions and the following disclaimer in the
16239709Srwatson *    documentation and/or other materials provided with the distribution.
17239709Srwatson *
18239709Srwatson * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19239709Srwatson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20239709Srwatson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21239709Srwatson * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22239709Srwatson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23239709Srwatson * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24239709Srwatson * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25239709Srwatson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26239709Srwatson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27239709Srwatson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28239709Srwatson * SUCH DAMAGE.
29239709Srwatson */
30239709Srwatson
31239709Srwatson#include <sys/cdefs.h>
32239709Srwatson__FBSDID("$FreeBSD$");
33239709Srwatson
34239709Srwatson#include <sys/param.h>
35239709Srwatson#include <sys/bus.h>
36239709Srwatson#include <sys/condvar.h>
37239709Srwatson#include <sys/conf.h>
38239709Srwatson#include <sys/bio.h>
39239709Srwatson#include <sys/kernel.h>
40239709Srwatson#include <sys/lock.h>
41239709Srwatson#include <sys/malloc.h>
42239709Srwatson#include <sys/module.h>
43239709Srwatson#include <sys/mutex.h>
44239709Srwatson#include <sys/rman.h>
45239709Srwatson#include <sys/systm.h>
46239709Srwatson
47239709Srwatson#include <machine/bus.h>
48239709Srwatson#include <machine/resource.h>
49239709Srwatson
50239709Srwatson#include <dev/terasic/de4led/terasic_de4led.h>
51239709Srwatson
52239709Srwatson/*
53239709Srwatson * Nexus bus attachment for the 8-element LED on the Terasic DE-4 FPGA board,
54239709Srwatson * which is hooked up to the processor via a memory-mapped Avalon bus.
55239709Srwatson */
56239709Srwatsonstatic int
57239709Srwatsonterasic_de4led_nexus_probe(device_t dev)
58239709Srwatson{
59239709Srwatson
60239709Srwatson	device_set_desc(dev, "Terasic DE4 8-element LED");
61257334Snwhitehorn	return (BUS_PROBE_NOWILDCARD);
62239709Srwatson}
63239709Srwatson
64239709Srwatsonstatic int
65239709Srwatsonterasic_de4led_nexus_attach(device_t dev)
66239709Srwatson{
67239709Srwatson	struct terasic_de4led_softc *sc;
68239709Srwatson
69239709Srwatson	sc = device_get_softc(dev);
70239709Srwatson	sc->tdl_dev = dev;
71239709Srwatson	sc->tdl_unit = device_get_unit(dev);
72239709Srwatson	sc->tdl_rid = 0;
73239709Srwatson	sc->tdl_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
74239709Srwatson	    &sc->tdl_rid, RF_ACTIVE);
75239709Srwatson	if (sc->tdl_res == NULL) {
76239709Srwatson		device_printf(dev, "couldn't map memory\n");
77239709Srwatson		return (ENXIO);
78239709Srwatson	}
79239709Srwatson	terasic_de4led_attach(sc);
80239709Srwatson	return (0);
81239709Srwatson}
82239709Srwatson
83239709Srwatsonstatic int
84239709Srwatsonterasic_de4led_nexus_detach(device_t dev)
85239709Srwatson{
86239709Srwatson	struct terasic_de4led_softc *sc;
87239709Srwatson
88239709Srwatson	sc = device_get_softc(dev);
89239709Srwatson	KASSERT(sc->tdl_res != NULL, ("%s: resources not allocated",
90239709Srwatson	    __func__));
91239709Srwatson	terasic_de4led_detach(sc);
92239709Srwatson	bus_release_resource(dev, SYS_RES_MEMORY, sc->tdl_rid, sc->tdl_res);
93239709Srwatson	return (0);
94239709Srwatson}
95239709Srwatson
96239709Srwatsonstatic device_method_t terasic_de4led_nexus_methods[] = {
97239709Srwatson	DEVMETHOD(device_probe,		terasic_de4led_nexus_probe),
98239709Srwatson	DEVMETHOD(device_attach,	terasic_de4led_nexus_attach),
99239709Srwatson	DEVMETHOD(device_detach,	terasic_de4led_nexus_detach),
100239709Srwatson	{ 0, 0 }
101239709Srwatson};
102239709Srwatson
103239709Srwatsonstatic driver_t terasic_de4led_nexus_driver = {
104239709Srwatson	"terasic_de4led",
105239709Srwatson	terasic_de4led_nexus_methods,
106239709Srwatson	sizeof(struct terasic_de4led_softc),
107239709Srwatson};
108239709Srwatson
109239709SrwatsonDRIVER_MODULE(terasic_de4led, nexus, terasic_de4led_nexus_driver,
110239709Srwatson    terasic_de4led_devclass, 0, 0);
111