hpcioman.c revision 1.19.54.1 1 /* $NetBSD: hpcioman.c,v 1.19.54.1 2021/03/20 19:33:40 thorpej Exp $ */
2
3 /*-
4 * Copyright (c) 1999-2001 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by UCHIYAMA Yasushi.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 #include <sys/cdefs.h>
33 __KERNEL_RCSID(0, "$NetBSD: hpcioman.c,v 1.19.54.1 2021/03/20 19:33:40 thorpej Exp $");
34
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/device.h>
38
39 #include <machine/config_hook.h>
40 #include <machine/platid.h>
41 #include <machine/platid_mask.h>
42
43 #include <sys/bus.h>
44 #include <dev/hpc/hpciovar.h>
45 #include <dev/hpc/hpciomanvar.h>
46
47 #include "locators.h"
48
49 int hpcioman_match(device_t, cfdata_t, void *);
50 void hpcioman_attach(device_t, device_t, void *);
51 int hpcioman_print(void *, const char *);
52 int hpcioman_search(device_t, cfdata_t, const int *, void *);
53
54 CFATTACH_DECL_NEW(hpcioman, 0,
55 hpcioman_match, hpcioman_attach, NULL, NULL);
56
57 int
58 hpcioman_match(device_t parent, cfdata_t cf, void *aux)
59 {
60 struct hpcio_attach_args *haa = aux;
61 platid_mask_t mask;
62
63 if (strcmp(haa->haa_busname, HPCIO_BUSNAME))
64 return (0);
65 /* select platform */
66 mask = PLATID_DEREF(cf->cf_loc[HPCIOIFCF_PLATFORM]);
67
68 return (platid_match(&platid, &mask));
69 }
70
71 void
72 hpcioman_attach(device_t parent, device_t self, void *aux)
73 {
74 printf("\n");
75
76 config_search(self, aux,
77 CFARG_SUBMATCH, hpcioman_search,
78 CFARG_IATTR, "hpcioman",
79 CFARG_EOL);
80 }
81
82 int
83 hpcioman_search(device_t parent, cfdata_t cf, const int *ldesc, void *aux)
84 {
85 struct hpcio_attach_args *haa = aux;
86 struct hpcioman_attach_args hma;
87
88 /* get io chip */
89 hma.hma_hc = (*haa->haa_getchip)(haa->haa_sc, cf->cf_iochip);
90
91 /* interrupt mode */
92 if (cf->cf_level != HPCIOMANCF_LEVEL_DEFAULT) {
93 switch (cf->cf_hold) {
94 case 1:
95 hma.hma_intr_mode = HPCIO_INTR_HOLD;
96 break;
97 case 0:
98 case HPCIOMANCF_HOLD_DEFAULT:
99 default:
100 hma.hma_intr_mode = HPCIO_INTR_THROUGH;
101 break;
102 }
103 hma.hma_intr_mode |= HPCIO_INTR_LEVEL;
104 if (cf->cf_level == 0)
105 hma.hma_intr_mode |= HPCIO_INTR_LOW;
106 else
107 hma.hma_intr_mode |= HPCIO_INTR_HIGH;
108 } else {
109 switch (cf->cf_hold) {
110 case 0:
111 hma.hma_intr_mode = HPCIO_INTR_THROUGH;
112 break;
113 case 1:
114 case HPCIOMANCF_HOLD_DEFAULT:
115 default:
116 hma.hma_intr_mode = HPCIO_INTR_HOLD;
117 break;
118 }
119 hma.hma_intr_mode |= HPCIO_INTR_EDGE;
120 switch (cf->cf_edge) {
121 case 1:
122 hma.hma_intr_mode |= HPCIO_INTR_POSEDGE;
123 break;
124 case 2:
125 hma.hma_intr_mode |= HPCIO_INTR_NEGEDGE;
126 break;
127 case 0:
128 case 3:
129 case HPCIOMANCF_EDGE_DEFAULT:
130 hma.hma_intr_mode |= HPCIO_INTR_POSEDGE;
131 hma.hma_intr_mode |= HPCIO_INTR_NEGEDGE;
132 break;
133 default:
134 printf("%s(%d): invalid configuration, edge=%d",
135 __FILE__, __LINE__, cf->cf_edge);
136 break;
137 }
138 }
139
140 hma.hma_type = cf->cf_type;
141 hma.hma_id = cf->cf_id;
142 hma.hma_port = cf->cf_port;
143 if (cf->cf_active == 0) {
144 hma.hma_on = 0;
145 hma.hma_off = 1;
146 } else {
147 hma.hma_on = 1;
148 hma.hma_off = 0;
149 }
150 hma.hma_initvalue = -1; /* none */
151 if (cf->cf_initvalue != HPCIOMANCF_INITVALUE_DEFAULT) {
152 if (cf->cf_initvalue == 0)
153 hma.hma_initvalue = hma.hma_off;
154 else
155 hma.hma_initvalue = hma.hma_on;
156 }
157 hma.hma_connect = cf->cf_connect;
158
159 config_attach(parent, cf, &hma, hpcioman_print);
160
161 return (0);
162 }
163
164 int
165 hpcioman_print(void *aux, const char *pnp)
166 {
167 struct hpcioman_attach_args *hma = aux;
168 int type = hma->hma_type;
169
170 if (!pnp) {
171 aprint_normal(" iochip %s, port %d, type %d, id %d",
172 hma->hma_hc ? hma->hma_hc->hc_name : "not found",
173 hma->hma_port, type, hma->hma_id);
174 if (type == CONFIG_HOOK_BUTTONEVENT ||
175 type == CONFIG_HOOK_PMEVENT ||
176 type == CONFIG_HOOK_EVENT ||
177 type == CONFIG_HOOK_PCIINTR) {
178 if (hma->hma_intr_mode & HPCIO_INTR_EDGE)
179 aprint_normal (", interrupt edge [%s%s]",
180 (hma->hma_intr_mode&HPCIO_INTR_POSEDGE)
181 ? "p" : "",
182 (hma->hma_intr_mode&HPCIO_INTR_NEGEDGE)
183 ? "n" : "");
184 else
185 aprint_normal (", interrupt level %s",
186 (hma->hma_intr_mode&HPCIO_INTR_HIGH) ?
187 "high" : "low");
188 }
189 if (hma->hma_initvalue != -1)
190 aprint_normal(", initial value %d", hma->hma_initvalue);
191 if (hma->hma_on == 0)
192 aprint_normal(", active low");
193 }
194
195 return (QUIET);
196 }
197