]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sys/arm/versatile/versatile_sic.c
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sys / arm / versatile / versatile_sic.c
1 /*-
2  * Copyright (c) 2012 Oleksandr Tymoshenko <gonzo@freebsd.org>
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 AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/bus.h>
34 #include <sys/kernel.h>
35 #include <sys/ktr.h>
36 #include <sys/module.h>
37 #include <sys/rman.h>
38 #include <machine/bus.h>
39 #include <machine/intr.h>
40
41 #include <dev/fdt/fdt_common.h>
42 #include <dev/ofw/openfirm.h>
43 #include <dev/ofw/ofw_bus.h>
44 #include <dev/ofw/ofw_bus_subr.h>
45
46 #ifdef  DEBUG
47 #define dprintf(fmt, args...) printf(fmt, ##args)
48 #else
49 #define dprintf(fmt, args...)
50 #endif
51
52 #define SIC_STATUS      0x00
53 #define SIC_RAWSTAT     0x04
54 #define SIC_ENABLE      0x08
55 #define SIC_ENSET       0x08
56 #define SIC_ENCLR       0x0C
57 #define SIC_SOFTINTSET  0x10
58 #define SIC_SOFTINTCLR  0x14
59 #define SIC_PICENABLE   0x20
60 #define SIC_PICENSET    0x20
61 #define SIC_PICENCLR    0x24
62
63 struct versatile_sic_softc {
64         device_t                sc_dev;
65         struct resource *       mem_res;
66 };
67
68 #define sic_read_4(sc, reg)                     \
69     bus_read_4(sc->mem_res, (reg))
70 #define sic_write_4(sc, reg, val)               \
71     bus_write_4(sc->mem_res, (reg), (val))
72
73 static int
74 versatile_sic_probe(device_t dev)
75 {
76         if (!ofw_bus_is_compatible(dev, "arm,versatile-sic"))
77                 return (ENXIO);
78         device_set_desc(dev, "ARM Versatile SIC");
79         return (BUS_PROBE_DEFAULT);
80 }
81
82 static int
83 versatile_sic_attach(device_t dev)
84 {
85         struct          versatile_sic_softc *sc = device_get_softc(dev);
86         uint32_t        pass_irqs;
87         int             rid;
88
89         sc->sc_dev = dev;
90
91         /* Request memory resources */
92         rid = 0;
93         sc->mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
94             RF_ACTIVE);
95         if (sc->mem_res == NULL) {
96                 device_printf(dev, "Error: could not allocate memory resources\n");
97                 return (ENXIO);
98         }
99
100         /* Disable all interrupts on SIC */
101         sic_write_4(sc, SIC_ENCLR, 0xffffffff);
102
103         /* 
104          * XXX: Enable IRQ3 for KMI
105          * Should be replaced by proper interrupts cascading
106          */
107         sic_write_4(sc, SIC_ENSET, (1 << 3));
108
109         /*
110          * Let PCI and Ethernet interrupts pass through
111          * IRQ25, IRQ27..IRQ31
112          */
113         pass_irqs = (0x1f << 27) | (1 << 25);
114         sic_write_4(sc, SIC_PICENSET, pass_irqs);
115
116         return (0);
117 }
118
119 static device_method_t versatile_sic_methods[] = {
120         DEVMETHOD(device_probe,         versatile_sic_probe),
121         DEVMETHOD(device_attach,        versatile_sic_attach),
122         { 0, 0 }
123 };
124
125 static driver_t versatile_sic_driver = {
126         "sic",
127         versatile_sic_methods,
128         sizeof(struct versatile_sic_softc),
129 };
130
131 static devclass_t versatile_sic_devclass;
132
133 DRIVER_MODULE(sic, simplebus, versatile_sic_driver, versatile_sic_devclass, 0, 0);