picvar.h revision 1.8 1 1.8 matt /* $NetBSD: picvar.h,v 1.8 2014/03/03 08:50:48 matt Exp $ */
2 1.2 matt /*-
3 1.2 matt * Copyright (c) 2008 The NetBSD Foundation, Inc.
4 1.2 matt * All rights reserved.
5 1.2 matt *
6 1.2 matt * This code is derived from software contributed to The NetBSD Foundation
7 1.2 matt * by Matt Thomas.
8 1.2 matt *
9 1.2 matt * Redistribution and use in source and binary forms, with or without
10 1.2 matt * modification, are permitted provided that the following conditions
11 1.2 matt * are met:
12 1.2 matt * 1. Redistributions of source code must retain the above copyright
13 1.2 matt * notice, this list of conditions and the following disclaimer.
14 1.2 matt * 2. Redistributions in binary form must reproduce the above copyright
15 1.2 matt * notice, this list of conditions and the following disclaimer in the
16 1.2 matt * documentation and/or other materials provided with the distribution.
17 1.2 matt *
18 1.2 matt * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 1.2 matt * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 1.2 matt * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 1.2 matt * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 1.2 matt * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 1.2 matt * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 1.2 matt * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 1.2 matt * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 1.2 matt * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 1.2 matt * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 1.2 matt * POSSIBILITY OF SUCH DAMAGE.
29 1.2 matt */
30 1.2 matt #ifndef _ARM_PIC_PICVAR_H_
31 1.2 matt #define _ARM_PIC_PICVAR_H_
32 1.2 matt
33 1.7 matt #ifdef MULTIPROCESSOR
34 1.7 matt #include <sys/kcpuset.h>
35 1.7 matt #endif
36 1.7 matt
37 1.2 matt int _splraise(int);
38 1.2 matt int _spllower(int);
39 1.2 matt void splx(int);
40 1.2 matt const char *
41 1.2 matt intr_typename(int);
42 1.2 matt
43 1.2 matt struct pic_softc;
44 1.2 matt struct intrsource;
45 1.7 matt struct cpu_info;
46 1.7 matt
47 1.7 matt #define IPI_AST 0 /* just get an interrupt */
48 1.7 matt #define IPI_XCALL 1 /* xcall */
49 1.7 matt #define IPI_NOP 2 /* just get an interrupt (armv6) */
50 1.7 matt #ifndef __HAVE_PREEMPTION
51 1.7 matt #define NIPI 3
52 1.7 matt #else
53 1.7 matt #define IPI_KPREEMPT 4 /* cause a preemption */
54 1.7 matt #define NIPI 4
55 1.7 matt #endif
56 1.2 matt
57 1.2 matt int pic_handle_intr(void *);
58 1.2 matt void pic_mark_pending(struct pic_softc *pic, int irq);
59 1.2 matt void pic_mark_pending_source(struct pic_softc *pic, struct intrsource *is);
60 1.2 matt uint32_t pic_mark_pending_sources(struct pic_softc *pic, size_t irq_base,
61 1.2 matt uint32_t pending);
62 1.2 matt void *pic_establish_intr(struct pic_softc *pic, int irq, int ipl, int type,
63 1.2 matt int (*func)(void *), void *arg);
64 1.2 matt int pic_alloc_irq(struct pic_softc *pic);
65 1.2 matt void pic_disestablish_source(struct intrsource *is);
66 1.2 matt void pic_do_pending_ints(register_t psw, int newipl, void *frame);
67 1.2 matt void pic_dispatch(struct intrsource *is, void *frame);
68 1.2 matt
69 1.2 matt void *intr_establish(int irq, int ipl, int type, int (*func)(void *),
70 1.2 matt void *arg);
71 1.2 matt void intr_disestablish(void *);
72 1.7 matt #ifdef MULTIPROCESSOR
73 1.7 matt void intr_cpu_init(struct cpu_info *);
74 1.7 matt void intr_ipi_send(const kcpuset_t *, u_long ipi);
75 1.7 matt #endif
76 1.2 matt
77 1.2 matt #ifdef _INTR_PRIVATE
78 1.2 matt
79 1.7 matt #include "opt_arm_intr_impl.h"
80 1.7 matt
81 1.5 bsh #include <sys/evcnt.h>
82 1.7 matt #include <sys/percpu.h>
83 1.5 bsh
84 1.2 matt #ifndef PIC_MAXPICS
85 1.2 matt #define PIC_MAXPICS 32
86 1.2 matt #endif
87 1.2 matt #ifndef PIC_MAXSOURCES
88 1.2 matt #define PIC_MAXSOURCES 64
89 1.2 matt #endif
90 1.2 matt #ifndef PIC_MAXMAXSOURCES
91 1.2 matt #define PIC_MAXMAXSOURCES 128
92 1.2 matt #endif
93 1.2 matt
94 1.2 matt struct intrsource {
95 1.2 matt int (*is_func)(void *);
96 1.2 matt void *is_arg;
97 1.2 matt struct pic_softc *is_pic; /* owning PIC */
98 1.2 matt uint8_t is_type; /* IST_xxx */
99 1.2 matt uint8_t is_ipl; /* IPL_xxx */
100 1.2 matt uint8_t is_irq; /* local to pic */
101 1.2 matt uint8_t is_iplidx;
102 1.8 matt bool is_mpsafe;
103 1.2 matt char is_source[16];
104 1.2 matt };
105 1.2 matt
106 1.7 matt struct pic_percpu {
107 1.7 matt struct evcnt *pcpu_evs;
108 1.7 matt char *pcpu_name;
109 1.7 matt uint32_t pcpu_magic;
110 1.7 matt };
111 1.7 matt
112 1.7 matt #define PICPERCPU_MAGIC 0xfeedface
113 1.7 matt
114 1.2 matt struct pic_softc {
115 1.2 matt const struct pic_ops *pic_ops;
116 1.2 matt struct intrsource **pic_sources;
117 1.4 matt volatile uint32_t pic_pending_irqs[(PIC_MAXSOURCES + 31) / 32];
118 1.4 matt volatile uint32_t pic_blocked_irqs[(PIC_MAXSOURCES + 31) / 32];
119 1.4 matt volatile uint32_t pic_pending_ipls;
120 1.2 matt size_t pic_maxsources;
121 1.7 matt percpu_t *pic_percpu;
122 1.2 matt uint8_t pic_id;
123 1.2 matt int16_t pic_irqbase;
124 1.2 matt char pic_name[14];
125 1.2 matt };
126 1.2 matt
127 1.2 matt struct pic_ops {
128 1.2 matt void (*pic_unblock_irqs)(struct pic_softc *, size_t, uint32_t);
129 1.2 matt void (*pic_block_irqs)(struct pic_softc *, size_t, uint32_t);
130 1.2 matt int (*pic_find_pending_irqs)(struct pic_softc *);
131 1.2 matt
132 1.2 matt void (*pic_establish_irq)(struct pic_softc *, struct intrsource *);
133 1.2 matt void (*pic_source_name)(struct pic_softc *, int, char *, size_t);
134 1.6 matt
135 1.6 matt #ifdef __HAVE_PIC_SET_PRIORITY
136 1.6 matt void (*pic_set_priority)(struct pic_softc *, int);
137 1.6 matt #endif
138 1.7 matt #ifdef MULTIPROCESSOR
139 1.7 matt void (*pic_cpu_init)(struct pic_softc *, struct cpu_info *);
140 1.7 matt void (*pic_ipi_send)(struct pic_softc *, const kcpuset_t *, u_long);
141 1.7 matt #endif
142 1.2 matt };
143 1.2 matt
144 1.6 matt #ifdef __HAVE_PIC_SET_PRIORITY
145 1.6 matt /*
146 1.6 matt * This is used to update a hardware pic with a value corresponding
147 1.6 matt * to the ipl being set.
148 1.6 matt */
149 1.6 matt struct cpu_info;
150 1.6 matt void pic_set_priority(struct cpu_info *, int);
151 1.6 matt #else
152 1.6 matt /* Using an inline causes catch-22 problems with cpu.h */
153 1.6 matt #define pic_set_priority(ci, newipl) ((void)((ci)->ci_cpl = (newipl)))
154 1.6 matt #endif
155 1.2 matt
156 1.2 matt void pic_add(struct pic_softc *, int);
157 1.2 matt void pic_do_pending_int(void);
158 1.7 matt #ifdef MULTIPROCESSOR
159 1.7 matt int pic_ipi_nop(void *);
160 1.7 matt int pic_ipi_xcall(void *);
161 1.7 matt #endif
162 1.7 matt #ifdef __HAVE_PIC_FAST_SOFTINTS
163 1.7 matt int pic_handle_softint(void *);
164 1.7 matt #endif
165 1.2 matt
166 1.2 matt extern struct pic_softc * pic_list[PIC_MAXPICS];
167 1.2 matt #endif /* _INTR_PRIVATE */
168 1.2 matt
169 1.2 matt #endif /* _ARM_PIC_PICVAR_H_ */
170