hb.c revision 1.14 1 1.14 tsutsui /* $NetBSD: hb.c,v 1.14 2005/02/06 02:18:02 tsutsui Exp $ */
2 1.13 lukem
3 1.13 lukem #include <sys/cdefs.h>
4 1.14 tsutsui __KERNEL_RCSID(0, "$NetBSD: hb.c,v 1.14 2005/02/06 02:18:02 tsutsui Exp $");
5 1.1 tsubai
6 1.1 tsubai #include <sys/param.h>
7 1.1 tsubai #include <sys/systm.h>
8 1.1 tsubai #include <sys/device.h>
9 1.12 tsutsui #include <sys/malloc.h>
10 1.1 tsubai
11 1.1 tsubai #include <machine/autoconf.h>
12 1.12 tsutsui #include <machine/intr.h>
13 1.1 tsubai
14 1.11 tsutsui #include <newsmips/dev/hbvar.h>
15 1.11 tsutsui
16 1.14 tsutsui static int hb_match(struct device *, struct cfdata *, void *);
17 1.14 tsutsui static void hb_attach(struct device *, struct device *, void *);
18 1.14 tsutsui static int hb_search(struct device *, struct cfdata *, void *);
19 1.14 tsutsui static int hb_print(void *, const char *);
20 1.1 tsubai
21 1.9 thorpej CFATTACH_DECL(hb, sizeof(struct device),
22 1.9 thorpej hb_match, hb_attach, NULL, NULL);
23 1.1 tsubai
24 1.1 tsubai extern struct cfdriver hb_cd;
25 1.1 tsubai
26 1.12 tsutsui #define NLEVEL 4
27 1.12 tsutsui static struct newsmips_intr hbintr_tab[NLEVEL];
28 1.4 tsubai
29 1.1 tsubai static int
30 1.14 tsutsui hb_match(struct device *parent, struct cfdata *cf, void *aux)
31 1.1 tsubai {
32 1.1 tsubai struct confargs *ca = aux;
33 1.1 tsubai
34 1.1 tsubai if (strcmp(ca->ca_name, hb_cd.cd_name) != 0)
35 1.1 tsubai return 0;
36 1.1 tsubai
37 1.1 tsubai return 1;
38 1.1 tsubai }
39 1.1 tsubai
40 1.1 tsubai static void
41 1.14 tsutsui hb_attach(struct device *parent, struct device *self, void *aux)
42 1.1 tsubai {
43 1.11 tsutsui struct hb_attach_args ha;
44 1.12 tsutsui struct newsmips_intr *ip;
45 1.12 tsutsui int i;
46 1.1 tsubai
47 1.1 tsubai printf("\n");
48 1.12 tsutsui
49 1.11 tsutsui memset(&ha, 0, sizeof(ha));
50 1.12 tsutsui for (i = 0; i < NLEVEL; i++) {
51 1.12 tsutsui ip = &hbintr_tab[i];
52 1.12 tsutsui LIST_INIT(&ip->intr_q);
53 1.12 tsutsui }
54 1.12 tsutsui
55 1.11 tsutsui config_search(hb_search, self, &ha);
56 1.1 tsubai }
57 1.1 tsubai
58 1.2 tsubai static int
59 1.14 tsutsui hb_search(struct device *parent, struct cfdata *cf, void *aux)
60 1.2 tsubai {
61 1.11 tsutsui struct hb_attach_args *ha = aux;
62 1.2 tsubai
63 1.11 tsutsui ha->ha_name = cf->cf_name;
64 1.11 tsutsui ha->ha_addr = cf->cf_addr;
65 1.11 tsutsui ha->ha_level = cf->cf_level;
66 1.2 tsubai
67 1.11 tsutsui if (config_match(parent, cf, ha) > 0)
68 1.11 tsutsui config_attach(parent, cf, ha, hb_print);
69 1.2 tsubai
70 1.2 tsubai return 0;
71 1.2 tsubai }
72 1.2 tsubai
73 1.1 tsubai /*
74 1.1 tsubai * Print out the confargs. The (parent) name is non-NULL
75 1.1 tsubai * when there was no match found by config_found().
76 1.1 tsubai */
77 1.1 tsubai static int
78 1.14 tsutsui hb_print(void *args, const char *name)
79 1.1 tsubai {
80 1.11 tsutsui struct hb_attach_args *ha = args;
81 1.1 tsubai
82 1.1 tsubai /* Be quiet about empty HB locations. */
83 1.1 tsubai if (name)
84 1.3 tsubai return QUIET;
85 1.1 tsubai
86 1.11 tsutsui if (ha->ha_addr != -1)
87 1.11 tsutsui aprint_normal(" addr 0x%x", ha->ha_addr);
88 1.1 tsubai
89 1.3 tsubai return UNCONF;
90 1.4 tsubai }
91 1.4 tsubai
92 1.4 tsubai void *
93 1.14 tsutsui hb_intr_establish(int level, int mask, int priority, int (*func)(void *),
94 1.14 tsutsui void *arg)
95 1.4 tsubai {
96 1.12 tsutsui struct newsmips_intr *ip;
97 1.12 tsutsui struct newsmips_intrhand *ih, *curih;
98 1.12 tsutsui
99 1.12 tsutsui ip = &hbintr_tab[level];
100 1.4 tsubai
101 1.12 tsutsui ih = malloc(sizeof(*ih), M_DEVBUF, M_NOWAIT);
102 1.12 tsutsui if (ih == NULL)
103 1.12 tsutsui panic("hb_intr_establish: malloc failed");
104 1.12 tsutsui
105 1.12 tsutsui ih->ih_func = func;
106 1.12 tsutsui ih->ih_arg = arg;
107 1.12 tsutsui ih->ih_level = level;
108 1.12 tsutsui ih->ih_mask = mask;
109 1.12 tsutsui ih->ih_priority = priority;
110 1.12 tsutsui
111 1.12 tsutsui if (LIST_EMPTY(&ip->intr_q)) {
112 1.12 tsutsui LIST_INSERT_HEAD(&ip->intr_q, ih, ih_q);
113 1.12 tsutsui goto done;
114 1.4 tsubai }
115 1.4 tsubai
116 1.12 tsutsui for (curih = LIST_FIRST(&ip->intr_q);
117 1.12 tsutsui LIST_NEXT(curih, ih_q) != NULL;
118 1.12 tsutsui curih = LIST_NEXT(curih, ih_q)) {
119 1.12 tsutsui if (ih->ih_priority > curih->ih_priority) {
120 1.12 tsutsui LIST_INSERT_BEFORE(curih, ih, ih_q);
121 1.12 tsutsui goto done;
122 1.4 tsubai }
123 1.4 tsubai }
124 1.4 tsubai
125 1.12 tsutsui LIST_INSERT_AFTER(curih, ih, ih_q);
126 1.12 tsutsui
127 1.12 tsutsui done:
128 1.4 tsubai return ih;
129 1.4 tsubai }
130 1.4 tsubai
131 1.4 tsubai void
132 1.14 tsutsui hb_intr_dispatch(int level, int stat)
133 1.12 tsutsui {
134 1.12 tsutsui struct newsmips_intr *ip;
135 1.12 tsutsui struct newsmips_intrhand *ih;
136 1.12 tsutsui
137 1.12 tsutsui ip = &hbintr_tab[level];
138 1.12 tsutsui
139 1.12 tsutsui LIST_FOREACH(ih, &ip->intr_q, ih_q) {
140 1.12 tsutsui if (ih->ih_mask & stat)
141 1.12 tsutsui (*ih->ih_func)(ih->ih_arg);
142 1.4 tsubai }
143 1.1 tsubai }
144