]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/arm/gic.h
Merge libc++ trunk r338150 (just before the 7.0.0 branch point), and
[FreeBSD/FreeBSD.git] / sys / arm / arm / gic.h
1 /*-
2  * Copyright (c) 2011,2016 The FreeBSD Foundation
3  * All rights reserved.
4  *
5  * This software was developed by Andrew Turner under
6  * sponsorship from the FreeBSD Foundation.
7  *
8  * Developed by Damjan Marion <damjan.marion@gmail.com>
9  *
10  * Based on OMAP4 GIC code by Ben Gray
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. The name of the company nor the name of the author may be used to
21  *    endorse or promote products derived from this software without specific
22  *    prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  * $FreeBSD$
37  */
38
39 #ifndef _ARM_GIC_H_
40 #define _ARM_GIC_H_
41
42 #ifdef INTRNG
43 struct arm_gic_range {
44         uint64_t bus;
45         uint64_t host;
46         uint64_t size;
47 };
48 #endif
49
50 struct arm_gic_softc {
51         device_t                gic_dev;
52 #ifdef INTRNG
53         void *                  gic_intrhand;
54         struct gic_irqsrc *     gic_irqs;
55 #endif
56         struct resource *       gic_res[3];
57         bus_space_tag_t         gic_c_bst;
58         bus_space_tag_t         gic_d_bst;
59         bus_space_handle_t      gic_c_bsh;
60         bus_space_handle_t      gic_d_bsh;
61         uint8_t                 ver;
62         struct mtx              mutex;
63         uint32_t                nirqs;
64         uint32_t                typer;
65         uint32_t                last_irq[MAXCPU];
66
67 #ifdef INTRNG
68         uint32_t                gic_iidr;
69         u_int                   gic_bus;
70
71         int                     nranges;
72         struct arm_gic_range *  ranges;
73 #endif
74 };
75
76 DECLARE_CLASS(arm_gic_driver);
77
78 #ifdef INTRNG
79 struct arm_gicv2m_softc {
80         struct resource *sc_mem;
81         struct mtx      sc_mutex;
82         uintptr_t       sc_xref;
83         u_int           sc_spi_start;
84         u_int           sc_spi_end;
85         u_int           sc_spi_count;
86 };
87
88 DECLARE_CLASS(arm_gicv2m_driver);
89 #endif
90
91 int arm_gic_attach(device_t);
92 int arm_gic_detach(device_t);
93 int arm_gicv2m_attach(device_t);
94 int arm_gic_intr(void *);
95
96 #endif /* _ARM_GIC_H_ */