]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/at91/at91_tcb.c
Merge ACPICA 20180105.
[FreeBSD/FreeBSD.git] / sys / arm / at91 / at91_tcb.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2014 Warner Losh.  All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following 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 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 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
28 #include "opt_platform.h"
29
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 #include <sys/param.h>
34 #include <sys/bus.h>
35 #include <sys/kernel.h>
36 #include <sys/module.h>
37 #include <sys/resource.h>
38 #include <sys/systm.h>
39 #include <sys/rman.h>
40
41 #include <machine/bus.h>
42
43 #include <arm/at91/at91var.h>
44 #include <arm/at91/at91_aicreg.h>
45
46 #ifdef FDT
47 #include <dev/ofw/ofw_bus.h>
48 #include <dev/ofw/ofw_bus_subr.h>
49 #endif
50
51 struct tcb_softc {
52         struct resource *mem_res;       /* Memory resource */
53         device_t        sc_dev;
54 };
55
56 static int
57 at91_tcb_probe(device_t dev)
58 {
59 #ifdef FDT
60         if (!ofw_bus_is_compatible(dev, "atmel,at91rm9200-tcb"))
61                 return (ENXIO);
62 #endif
63         device_set_desc(dev, "TCB");
64         return (0);
65 }
66
67 static int
68 at91_tcb_attach(device_t dev)
69 {
70         int rid, err = 0;
71         struct tcb_softc *sc;
72
73         sc = device_get_softc(dev);
74         sc->sc_dev = dev;
75
76         rid = 0;
77         sc->mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
78             RF_ACTIVE);
79
80         if (sc->mem_res == NULL)
81                 panic("couldn't allocate register resources");
82
83         return (err);
84 }
85
86 static device_method_t at91_tcb_methods[] = {
87         DEVMETHOD(device_probe, at91_tcb_probe),
88         DEVMETHOD(device_attach, at91_tcb_attach),
89         DEVMETHOD_END
90 };
91
92 static driver_t at91_tcb_driver = {
93         "at91_tcb",
94         at91_tcb_methods,
95         sizeof(struct tcb_softc),
96 };
97
98 static devclass_t at91_tcb_devclass;
99
100 #ifdef FDT
101 DRIVER_MODULE(at91_tcb, simplebus, at91_tcb_driver, at91_tcb_devclass, NULL,
102     NULL);
103 #else
104 DRIVER_MODULE(at91_tcb, atmelarm, at91_tcb_driver, at91_tcb_devclass, NULL,
105     NULL);
106 #endif