acpi_ec.c revision 1.57 1 1.57 mlelstv /* $NetBSD: acpi_ec.c,v 1.57 2009/09/16 10:47:54 mlelstv Exp $ */
2 1.1 thorpej
3 1.44 jmcneill /*-
4 1.44 jmcneill * Copyright (c) 2007 Joerg Sonnenberger <joerg (at) NetBSD.org>.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Redistribution and use in source and binary forms, with or without
8 1.1 thorpej * modification, are permitted provided that the following conditions
9 1.1 thorpej * are met:
10 1.1 thorpej *
11 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
12 1.1 thorpej * notice, this list of conditions and the following disclaimer.
13 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
14 1.44 jmcneill * notice, this list of conditions and the following disclaimer in
15 1.44 jmcneill * the documentation and/or other materials provided with the
16 1.44 jmcneill * distribution.
17 1.44 jmcneill *
18 1.44 jmcneill * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 1.44 jmcneill * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 1.44 jmcneill * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 1.44 jmcneill * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 1.44 jmcneill * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23 1.44 jmcneill * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 1.44 jmcneill * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 1.44 jmcneill * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26 1.44 jmcneill * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27 1.44 jmcneill * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
28 1.44 jmcneill * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 thorpej * SUCH DAMAGE.
30 1.1 thorpej */
31 1.1 thorpej
32 1.46 joerg /*
33 1.46 joerg * The ACPI Embedded Controller (EC) driver serves two different purposes:
34 1.46 joerg * - read and write access from ASL, e.g. to read battery state
35 1.46 joerg * - notification of ASL of System Control Interrupts.
36 1.46 joerg *
37 1.46 joerg * Access to the EC is serialised by sc_access_mtx and optionally the
38 1.46 joerg * ACPI global mutex. Both locks are held until the request is fulfilled.
39 1.46 joerg * All access to the softc has to hold sc_mtx to serialise against the GPE
40 1.46 joerg * handler and the callout. sc_mtx is also used for wakeup conditions.
41 1.46 joerg *
42 1.46 joerg * SCIs are processed in a kernel thread. Handling gets a bit complicated
43 1.46 joerg * by the lock order (sc_mtx must be acquired after sc_access_mtx and the
44 1.46 joerg * ACPI global mutex).
45 1.46 joerg *
46 1.46 joerg * Read and write requests spin around for a short time as many requests
47 1.46 joerg * can be handled instantly by the EC. During normal processing interrupt
48 1.46 joerg * mode is used exclusively. At boot and resume time interrupts are not
49 1.46 joerg * working and the handlers just busy loop.
50 1.46 joerg *
51 1.46 joerg * A callout is scheduled to compensate for missing interrupts on some
52 1.46 joerg * hardware. If the EC doesn't process a request for 5s, it is most likely
53 1.46 joerg * in a wedged state. No method to reset the EC is currently known.
54 1.46 joerg *
55 1.46 joerg * Special care has to be taken to not poll the EC in a busy loop without
56 1.46 joerg * delay. This can prevent processing of Power Button events. At least some
57 1.46 joerg * Lenovo Thinkpads seem to be implement the Power Button Override in the EC
58 1.46 joerg * and the only option to recover on those models is to cut off all power.
59 1.46 joerg */
60 1.46 joerg
61 1.3 lukem #include <sys/cdefs.h>
62 1.57 mlelstv __KERNEL_RCSID(0, "$NetBSD: acpi_ec.c,v 1.57 2009/09/16 10:47:54 mlelstv Exp $");
63 1.1 thorpej
64 1.1 thorpej #include <sys/param.h>
65 1.1 thorpej #include <sys/systm.h>
66 1.44 jmcneill #include <sys/condvar.h>
67 1.1 thorpej #include <sys/device.h>
68 1.1 thorpej #include <sys/kernel.h>
69 1.44 jmcneill #include <sys/kthread.h>
70 1.44 jmcneill #include <sys/mutex.h>
71 1.1 thorpej
72 1.42 ad #include <sys/bus.h>
73 1.1 thorpej
74 1.57 mlelstv #include <dev/acpi/acpireg.h>
75 1.1 thorpej #include <dev/acpi/acpivar.h>
76 1.48 jmcneill #include <dev/acpi/acpi_ecvar.h>
77 1.1 thorpej
78 1.57 mlelstv #define _COMPONENT ACPI_EC_COMPONENT
79 1.57 mlelstv ACPI_MODULE_NAME ("acpi_ec")
80 1.57 mlelstv
81 1.44 jmcneill /* Maximum time to wait for global ACPI lock in ms */
82 1.44 jmcneill #define EC_LOCK_TIMEOUT 5
83 1.23 kochi
84 1.44 jmcneill /* Maximum time to poll for completion of a command in ms */
85 1.44 jmcneill #define EC_POLL_TIMEOUT 5
86 1.1 thorpej
87 1.46 joerg /* Maximum time to give a single EC command in s */
88 1.46 joerg #define EC_CMD_TIMEOUT 10
89 1.46 joerg
90 1.44 jmcneill /* From ACPI 3.0b, chapter 12.3 */
91 1.44 jmcneill #define EC_COMMAND_READ 0x80
92 1.44 jmcneill #define EC_COMMAND_WRITE 0x81
93 1.44 jmcneill #define EC_COMMAND_BURST_EN 0x82
94 1.44 jmcneill #define EC_COMMAND_BURST_DIS 0x83
95 1.44 jmcneill #define EC_COMMAND_QUERY 0x84
96 1.44 jmcneill
97 1.44 jmcneill /* From ACPI 3.0b, chapter 12.2.1 */
98 1.44 jmcneill #define EC_STATUS_OBF 0x01
99 1.44 jmcneill #define EC_STATUS_IBF 0x02
100 1.44 jmcneill #define EC_STATUS_CMD 0x08
101 1.44 jmcneill #define EC_STATUS_BURST 0x10
102 1.44 jmcneill #define EC_STATUS_SCI 0x20
103 1.44 jmcneill #define EC_STATUS_SMI 0x40
104 1.1 thorpej
105 1.44 jmcneill static const char *ec_hid[] = {
106 1.44 jmcneill "PNP0C09",
107 1.44 jmcneill NULL,
108 1.44 jmcneill };
109 1.44 jmcneill
110 1.44 jmcneill enum ec_state_t {
111 1.44 jmcneill EC_STATE_QUERY,
112 1.44 jmcneill EC_STATE_QUERY_VAL,
113 1.44 jmcneill EC_STATE_READ,
114 1.44 jmcneill EC_STATE_READ_ADDR,
115 1.44 jmcneill EC_STATE_READ_VAL,
116 1.44 jmcneill EC_STATE_WRITE,
117 1.44 jmcneill EC_STATE_WRITE_ADDR,
118 1.44 jmcneill EC_STATE_WRITE_VAL,
119 1.44 jmcneill EC_STATE_FREE
120 1.44 jmcneill };
121 1.44 jmcneill
122 1.44 jmcneill struct acpiec_softc {
123 1.44 jmcneill ACPI_HANDLE sc_ech;
124 1.1 thorpej
125 1.44 jmcneill ACPI_HANDLE sc_gpeh;
126 1.44 jmcneill UINT8 sc_gpebit;
127 1.1 thorpej
128 1.44 jmcneill bus_space_tag_t sc_data_st;
129 1.44 jmcneill bus_space_handle_t sc_data_sh;
130 1.1 thorpej
131 1.44 jmcneill bus_space_tag_t sc_csr_st;
132 1.44 jmcneill bus_space_handle_t sc_csr_sh;
133 1.1 thorpej
134 1.44 jmcneill bool sc_need_global_lock;
135 1.44 jmcneill UINT32 sc_global_lock;
136 1.17 mycroft
137 1.44 jmcneill kmutex_t sc_mtx, sc_access_mtx;
138 1.44 jmcneill kcondvar_t sc_cv, sc_cv_sci;
139 1.44 jmcneill enum ec_state_t sc_state;
140 1.44 jmcneill bool sc_got_sci;
141 1.46 joerg callout_t sc_pseudo_intr;
142 1.44 jmcneill
143 1.44 jmcneill uint8_t sc_cur_addr, sc_cur_val;
144 1.23 kochi };
145 1.1 thorpej
146 1.55 cegger static int acpiecdt_match(device_t, cfdata_t, void *);
147 1.44 jmcneill static void acpiecdt_attach(device_t, device_t, void *);
148 1.44 jmcneill
149 1.55 cegger static int acpiec_match(device_t, cfdata_t, void *);
150 1.44 jmcneill static void acpiec_attach(device_t, device_t, void *);
151 1.16 kochi
152 1.44 jmcneill static void acpiec_common_attach(device_t, device_t, ACPI_HANDLE,
153 1.44 jmcneill bus_addr_t, bus_addr_t, ACPI_HANDLE, uint8_t);
154 1.1 thorpej
155 1.56 alc static bool acpiec_suspend(device_t PMF_FN_PROTO);
156 1.51 dyoung static bool acpiec_resume(device_t PMF_FN_PROTO);
157 1.56 alc static bool acpiec_shutdown(device_t, int);
158 1.17 mycroft
159 1.44 jmcneill static bool acpiec_parse_gpe_package(device_t, ACPI_HANDLE,
160 1.44 jmcneill ACPI_HANDLE *, uint8_t *);
161 1.20 yamt
162 1.46 joerg static void acpiec_callout(void *);
163 1.44 jmcneill static void acpiec_gpe_query(void *);
164 1.44 jmcneill static UINT32 acpiec_gpe_handler(void *);
165 1.44 jmcneill static ACPI_STATUS acpiec_space_setup(ACPI_HANDLE, UINT32, void *, void **);
166 1.44 jmcneill static ACPI_STATUS acpiec_space_handler(UINT32, ACPI_PHYSICAL_ADDRESS,
167 1.44 jmcneill UINT32, ACPI_INTEGER *, void *, void *);
168 1.20 yamt
169 1.45 jmcneill static void acpiec_gpe_state_machine(device_t);
170 1.20 yamt
171 1.44 jmcneill CFATTACH_DECL_NEW(acpiec, sizeof(struct acpiec_softc),
172 1.20 yamt acpiec_match, acpiec_attach, NULL, NULL);
173 1.20 yamt
174 1.44 jmcneill CFATTACH_DECL_NEW(acpiecdt, sizeof(struct acpiec_softc),
175 1.44 jmcneill acpiecdt_match, acpiecdt_attach, NULL, NULL);
176 1.44 jmcneill
177 1.44 jmcneill static device_t ec_singleton = NULL;
178 1.44 jmcneill static bool acpiec_cold = false;
179 1.23 kochi
180 1.44 jmcneill static bool
181 1.44 jmcneill acpiecdt_find(device_t parent, ACPI_HANDLE *ec_handle,
182 1.44 jmcneill bus_addr_t *cmd_reg, bus_addr_t *data_reg, uint8_t *gpebit)
183 1.9 tshiozak {
184 1.44 jmcneill ACPI_TABLE_ECDT *ecdt;
185 1.44 jmcneill ACPI_STATUS rv;
186 1.44 jmcneill
187 1.44 jmcneill rv = AcpiGetTable(ACPI_SIG_ECDT, 1, (ACPI_TABLE_HEADER **)&ecdt);
188 1.44 jmcneill if (ACPI_FAILURE(rv))
189 1.44 jmcneill return false;
190 1.44 jmcneill
191 1.44 jmcneill if (ecdt->Control.BitWidth != 8 || ecdt->Data.BitWidth != 8) {
192 1.44 jmcneill aprint_error_dev(parent,
193 1.44 jmcneill "ECDT register width invalid (%d/%d)\n",
194 1.44 jmcneill ecdt->Control.BitWidth, ecdt->Data.BitWidth);
195 1.44 jmcneill return false;
196 1.44 jmcneill }
197 1.24 kochi
198 1.44 jmcneill rv = AcpiGetHandle(ACPI_ROOT_OBJECT, ecdt->Id, ec_handle);
199 1.44 jmcneill if (ACPI_FAILURE(rv)) {
200 1.44 jmcneill aprint_error_dev(parent,
201 1.44 jmcneill "failed to look up EC object %s: %s\n",
202 1.44 jmcneill ecdt->Id, AcpiFormatException(rv));
203 1.44 jmcneill return false;
204 1.44 jmcneill }
205 1.44 jmcneill
206 1.44 jmcneill *cmd_reg = ecdt->Control.Address;
207 1.44 jmcneill *data_reg = ecdt->Data.Address;
208 1.44 jmcneill *gpebit = ecdt->Gpe;
209 1.44 jmcneill
210 1.44 jmcneill return true;
211 1.9 tshiozak }
212 1.4 thorpej
213 1.44 jmcneill static int
214 1.55 cegger acpiecdt_match(device_t parent, cfdata_t match, void *aux)
215 1.1 thorpej {
216 1.44 jmcneill ACPI_HANDLE ec_handle;
217 1.44 jmcneill bus_addr_t cmd_reg, data_reg;
218 1.44 jmcneill uint8_t gpebit;
219 1.1 thorpej
220 1.44 jmcneill if (acpiecdt_find(parent, &ec_handle, &cmd_reg, &data_reg, &gpebit))
221 1.44 jmcneill return 1;
222 1.44 jmcneill else
223 1.44 jmcneill return 0;
224 1.1 thorpej }
225 1.1 thorpej
226 1.44 jmcneill static void
227 1.44 jmcneill acpiecdt_attach(device_t parent, device_t self, void *aux)
228 1.1 thorpej {
229 1.44 jmcneill ACPI_HANDLE ec_handle;
230 1.44 jmcneill bus_addr_t cmd_reg, data_reg;
231 1.44 jmcneill uint8_t gpebit;
232 1.44 jmcneill
233 1.44 jmcneill if (!acpiecdt_find(parent, &ec_handle, &cmd_reg, &data_reg, &gpebit))
234 1.44 jmcneill panic("ECDT disappeared");
235 1.44 jmcneill
236 1.53 jmcneill aprint_naive("\n");
237 1.44 jmcneill aprint_normal(": ACPI Embedded Controller via ECDT\n");
238 1.20 yamt
239 1.44 jmcneill acpiec_common_attach(parent, self, ec_handle, cmd_reg, data_reg,
240 1.44 jmcneill NULL, gpebit);
241 1.1 thorpej }
242 1.1 thorpej
243 1.31 kochi static int
244 1.55 cegger acpiec_match(device_t parent, cfdata_t match, void *aux)
245 1.1 thorpej {
246 1.1 thorpej struct acpi_attach_args *aa = aux;
247 1.1 thorpej
248 1.1 thorpej if (aa->aa_node->ad_type != ACPI_TYPE_DEVICE)
249 1.25 kochi return 0;
250 1.1 thorpej
251 1.25 kochi return acpi_match_hid(aa->aa_node->ad_devinfo, ec_hid);
252 1.1 thorpej }
253 1.1 thorpej
254 1.44 jmcneill static void
255 1.44 jmcneill acpiec_attach(device_t parent, device_t self, void *aux)
256 1.17 mycroft {
257 1.44 jmcneill struct acpi_attach_args *aa = aux;
258 1.44 jmcneill struct acpi_resources ec_res;
259 1.44 jmcneill struct acpi_io *io0, *io1;
260 1.44 jmcneill ACPI_HANDLE gpe_handle;
261 1.44 jmcneill uint8_t gpebit;
262 1.23 kochi ACPI_STATUS rv;
263 1.17 mycroft
264 1.44 jmcneill if (ec_singleton != NULL) {
265 1.54 jmcneill aprint_naive(": using %s\n", device_xname(ec_singleton));
266 1.54 jmcneill aprint_normal(": using %s\n", device_xname(ec_singleton));
267 1.44 jmcneill if (!pmf_device_register(self, NULL, NULL))
268 1.44 jmcneill aprint_error_dev(self, "couldn't establish power handler\n");
269 1.44 jmcneill return;
270 1.44 jmcneill }
271 1.44 jmcneill
272 1.44 jmcneill if (!acpiec_parse_gpe_package(self, aa->aa_node->ad_handle,
273 1.44 jmcneill &gpe_handle, &gpebit))
274 1.17 mycroft return;
275 1.17 mycroft
276 1.44 jmcneill rv = acpi_resource_parse(self, aa->aa_node->ad_handle, "_CRS",
277 1.44 jmcneill &ec_res, &acpi_resource_parse_ops_default);
278 1.44 jmcneill if (rv != AE_OK) {
279 1.44 jmcneill aprint_error_dev(self, "resource parsing failed: %s\n",
280 1.44 jmcneill AcpiFormatException(rv));
281 1.17 mycroft return;
282 1.17 mycroft }
283 1.17 mycroft
284 1.44 jmcneill if ((io0 = acpi_res_io(&ec_res, 0)) == NULL) {
285 1.44 jmcneill aprint_error_dev(self, "no data register resource\n");
286 1.44 jmcneill goto free_res;
287 1.44 jmcneill }
288 1.44 jmcneill if ((io1 = acpi_res_io(&ec_res, 1)) == NULL) {
289 1.44 jmcneill aprint_error_dev(self, "no CSR register resource\n");
290 1.44 jmcneill goto free_res;
291 1.23 kochi }
292 1.23 kochi
293 1.44 jmcneill acpiec_common_attach(parent, self, aa->aa_node->ad_handle,
294 1.44 jmcneill io1->ar_base, io0->ar_base, gpe_handle, gpebit);
295 1.23 kochi
296 1.44 jmcneill free_res:
297 1.44 jmcneill acpi_resource_cleanup(&ec_res);
298 1.44 jmcneill }
299 1.23 kochi
300 1.44 jmcneill static void
301 1.44 jmcneill acpiec_common_attach(device_t parent, device_t self,
302 1.44 jmcneill ACPI_HANDLE ec_handle, bus_addr_t cmd_reg, bus_addr_t data_reg,
303 1.44 jmcneill ACPI_HANDLE gpe_handle, uint8_t gpebit)
304 1.44 jmcneill {
305 1.44 jmcneill struct acpiec_softc *sc = device_private(self);
306 1.44 jmcneill ACPI_STATUS rv;
307 1.44 jmcneill ACPI_INTEGER val;
308 1.23 kochi
309 1.44 jmcneill sc->sc_ech = ec_handle;
310 1.44 jmcneill sc->sc_gpeh = gpe_handle;
311 1.44 jmcneill sc->sc_gpebit = gpebit;
312 1.44 jmcneill
313 1.44 jmcneill sc->sc_state = EC_STATE_FREE;
314 1.44 jmcneill mutex_init(&sc->sc_mtx, MUTEX_DRIVER, IPL_TTY);
315 1.44 jmcneill mutex_init(&sc->sc_access_mtx, MUTEX_DEFAULT, IPL_NONE);
316 1.44 jmcneill cv_init(&sc->sc_cv, "eccv");
317 1.44 jmcneill cv_init(&sc->sc_cv_sci, "ecsci");
318 1.44 jmcneill
319 1.44 jmcneill if (bus_space_map(sc->sc_data_st, data_reg, 1, 0,
320 1.44 jmcneill &sc->sc_data_sh) != 0) {
321 1.44 jmcneill aprint_error_dev(self, "unable to map data register\n");
322 1.44 jmcneill return;
323 1.44 jmcneill }
324 1.23 kochi
325 1.44 jmcneill if (bus_space_map(sc->sc_csr_st, cmd_reg, 1, 0, &sc->sc_csr_sh) != 0) {
326 1.44 jmcneill aprint_error_dev(self, "unable to map CSR register\n");
327 1.44 jmcneill goto post_data_map;
328 1.23 kochi }
329 1.23 kochi
330 1.44 jmcneill rv = acpi_eval_integer(sc->sc_ech, "_GLK", &val);
331 1.44 jmcneill if (rv == AE_OK) {
332 1.44 jmcneill sc->sc_need_global_lock = val != 0;
333 1.44 jmcneill } else if (rv != AE_NOT_FOUND) {
334 1.44 jmcneill aprint_error_dev(self, "unable to evaluate _GLK: %s\n",
335 1.44 jmcneill AcpiFormatException(rv));
336 1.44 jmcneill goto post_csr_map;
337 1.44 jmcneill } else {
338 1.44 jmcneill sc->sc_need_global_lock = false;
339 1.33 kochi }
340 1.44 jmcneill if (sc->sc_need_global_lock)
341 1.44 jmcneill aprint_normal_dev(self, "using global ACPI lock\n");
342 1.33 kochi
343 1.46 joerg callout_init(&sc->sc_pseudo_intr, CALLOUT_MPSAFE);
344 1.46 joerg callout_setfunc(&sc->sc_pseudo_intr, acpiec_callout, self);
345 1.46 joerg
346 1.44 jmcneill rv = AcpiInstallAddressSpaceHandler(sc->sc_ech, ACPI_ADR_SPACE_EC,
347 1.44 jmcneill acpiec_space_handler, acpiec_space_setup, self);
348 1.44 jmcneill if (rv != AE_OK) {
349 1.44 jmcneill aprint_error_dev(self,
350 1.44 jmcneill "unable to install address space handler: %s\n",
351 1.44 jmcneill AcpiFormatException(rv));
352 1.44 jmcneill goto post_csr_map;
353 1.33 kochi }
354 1.33 kochi
355 1.44 jmcneill rv = AcpiInstallGpeHandler(sc->sc_gpeh, sc->sc_gpebit,
356 1.44 jmcneill ACPI_GPE_EDGE_TRIGGERED, acpiec_gpe_handler, self);
357 1.44 jmcneill if (rv != AE_OK) {
358 1.44 jmcneill aprint_error_dev(self, "unable to install GPE handler: %s\n",
359 1.23 kochi AcpiFormatException(rv));
360 1.44 jmcneill goto post_csr_map;
361 1.17 mycroft }
362 1.23 kochi
363 1.44 jmcneill rv = AcpiSetGpeType(sc->sc_gpeh, sc->sc_gpebit, ACPI_GPE_TYPE_RUNTIME);
364 1.44 jmcneill if (rv != AE_OK) {
365 1.44 jmcneill aprint_error_dev(self, "unable to set GPE type: %s\n",
366 1.44 jmcneill AcpiFormatException(rv));
367 1.44 jmcneill goto post_csr_map;
368 1.44 jmcneill }
369 1.23 kochi
370 1.44 jmcneill rv = AcpiEnableGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_ISR);
371 1.44 jmcneill if (rv != AE_OK) {
372 1.44 jmcneill aprint_error_dev(self, "unable to enable GPE: %s\n",
373 1.44 jmcneill AcpiFormatException(rv));
374 1.44 jmcneill goto post_csr_map;
375 1.44 jmcneill }
376 1.23 kochi
377 1.44 jmcneill if (kthread_create(PRI_NONE, KTHREAD_MPSAFE, NULL, acpiec_gpe_query,
378 1.44 jmcneill self, NULL, "acpiec sci thread")) {
379 1.44 jmcneill aprint_error_dev(self, "unable to create query kthread\n");
380 1.44 jmcneill goto post_csr_map;
381 1.44 jmcneill }
382 1.23 kochi
383 1.44 jmcneill ec_singleton = self;
384 1.23 kochi
385 1.56 alc if (!pmf_device_register1(self, acpiec_suspend, acpiec_resume,
386 1.56 alc acpiec_shutdown))
387 1.44 jmcneill aprint_error_dev(self, "couldn't establish power handler\n");
388 1.23 kochi
389 1.23 kochi return;
390 1.44 jmcneill
391 1.44 jmcneill post_csr_map:
392 1.44 jmcneill (void)AcpiRemoveGpeHandler(sc->sc_gpeh, sc->sc_gpebit,
393 1.44 jmcneill acpiec_gpe_handler);
394 1.44 jmcneill (void)AcpiRemoveAddressSpaceHandler(sc->sc_ech,
395 1.44 jmcneill ACPI_ADR_SPACE_EC, acpiec_space_handler);
396 1.44 jmcneill bus_space_unmap(sc->sc_csr_st, sc->sc_csr_sh, 1);
397 1.44 jmcneill post_data_map:
398 1.44 jmcneill bus_space_unmap(sc->sc_data_st, sc->sc_data_sh, 1);
399 1.17 mycroft }
400 1.17 mycroft
401 1.44 jmcneill static bool
402 1.51 dyoung acpiec_suspend(device_t dv PMF_FN_ARGS)
403 1.1 thorpej {
404 1.44 jmcneill acpiec_cold = true;
405 1.1 thorpej
406 1.44 jmcneill return true;
407 1.44 jmcneill }
408 1.1 thorpej
409 1.44 jmcneill static bool
410 1.51 dyoung acpiec_resume(device_t dv PMF_FN_ARGS)
411 1.44 jmcneill {
412 1.44 jmcneill acpiec_cold = false;
413 1.1 thorpej
414 1.44 jmcneill return true;
415 1.44 jmcneill }
416 1.17 mycroft
417 1.44 jmcneill static bool
418 1.56 alc acpiec_shutdown(device_t dv, int how)
419 1.56 alc {
420 1.56 alc
421 1.56 alc acpiec_cold = true;
422 1.56 alc return true;
423 1.56 alc }
424 1.56 alc
425 1.56 alc static bool
426 1.44 jmcneill acpiec_parse_gpe_package(device_t self, ACPI_HANDLE ec_handle,
427 1.44 jmcneill ACPI_HANDLE *gpe_handle, uint8_t *gpebit)
428 1.44 jmcneill {
429 1.44 jmcneill ACPI_BUFFER buf;
430 1.44 jmcneill ACPI_OBJECT *p, *c;
431 1.44 jmcneill ACPI_STATUS rv;
432 1.1 thorpej
433 1.44 jmcneill rv = acpi_eval_struct(ec_handle, "_GPE", &buf);
434 1.44 jmcneill if (rv != AE_OK) {
435 1.44 jmcneill aprint_error_dev(self, "unable to evaluate _GPE: %s\n",
436 1.44 jmcneill AcpiFormatException(rv));
437 1.44 jmcneill return false;
438 1.44 jmcneill }
439 1.1 thorpej
440 1.44 jmcneill p = buf.Pointer;
441 1.23 kochi
442 1.44 jmcneill if (p->Type == ACPI_TYPE_INTEGER) {
443 1.44 jmcneill *gpe_handle = NULL;
444 1.44 jmcneill *gpebit = p->Integer.Value;
445 1.57 mlelstv ACPI_FREE(p);
446 1.44 jmcneill return true;
447 1.44 jmcneill }
448 1.23 kochi
449 1.44 jmcneill if (p->Type != ACPI_TYPE_PACKAGE) {
450 1.44 jmcneill aprint_error_dev(self, "_GPE is neither integer nor package\n");
451 1.57 mlelstv ACPI_FREE(p);
452 1.44 jmcneill return false;
453 1.44 jmcneill }
454 1.44 jmcneill
455 1.44 jmcneill if (p->Package.Count != 2) {
456 1.44 jmcneill aprint_error_dev(self, "_GPE package does not contain 2 elements\n");
457 1.57 mlelstv ACPI_FREE(p);
458 1.44 jmcneill return false;
459 1.1 thorpej }
460 1.1 thorpej
461 1.44 jmcneill c = &p->Package.Elements[0];
462 1.44 jmcneill switch (c->Type) {
463 1.44 jmcneill case ACPI_TYPE_LOCAL_REFERENCE:
464 1.44 jmcneill case ACPI_TYPE_ANY:
465 1.44 jmcneill *gpe_handle = c->Reference.Handle;
466 1.44 jmcneill break;
467 1.44 jmcneill case ACPI_TYPE_STRING:
468 1.44 jmcneill /* XXX should be using real scope here */
469 1.44 jmcneill rv = AcpiGetHandle(NULL, p->String.Pointer, gpe_handle);
470 1.44 jmcneill if (rv != AE_OK) {
471 1.44 jmcneill aprint_error_dev(self,
472 1.44 jmcneill "_GPE device reference unresolvable\n");
473 1.57 mlelstv ACPI_FREE(p);
474 1.44 jmcneill return false;
475 1.44 jmcneill }
476 1.44 jmcneill break;
477 1.44 jmcneill default:
478 1.44 jmcneill aprint_error_dev(self, "_GPE device reference incorrect\n");
479 1.57 mlelstv ACPI_FREE(p);
480 1.44 jmcneill return false;
481 1.44 jmcneill }
482 1.44 jmcneill c = &p->Package.Elements[1];
483 1.44 jmcneill if (c->Type != ACPI_TYPE_INTEGER) {
484 1.44 jmcneill aprint_error_dev(self,
485 1.44 jmcneill "_GPE package needs integer as 2nd field\n");
486 1.57 mlelstv ACPI_FREE(p);
487 1.44 jmcneill return false;
488 1.44 jmcneill }
489 1.44 jmcneill *gpebit = c->Integer.Value;
490 1.57 mlelstv ACPI_FREE(p);
491 1.44 jmcneill return true;
492 1.44 jmcneill }
493 1.23 kochi
494 1.44 jmcneill static uint8_t
495 1.44 jmcneill acpiec_read_data(struct acpiec_softc *sc)
496 1.44 jmcneill {
497 1.44 jmcneill return bus_space_read_1(sc->sc_data_st, sc->sc_data_sh, 0);
498 1.44 jmcneill }
499 1.17 mycroft
500 1.44 jmcneill static void
501 1.44 jmcneill acpiec_write_data(struct acpiec_softc *sc, uint8_t val)
502 1.44 jmcneill {
503 1.44 jmcneill bus_space_write_1(sc->sc_data_st, sc->sc_data_sh, 0, val);
504 1.44 jmcneill }
505 1.1 thorpej
506 1.44 jmcneill static uint8_t
507 1.44 jmcneill acpiec_read_status(struct acpiec_softc *sc)
508 1.44 jmcneill {
509 1.44 jmcneill return bus_space_read_1(sc->sc_csr_st, sc->sc_csr_sh, 0);
510 1.44 jmcneill }
511 1.33 kochi
512 1.44 jmcneill static void
513 1.44 jmcneill acpiec_write_command(struct acpiec_softc *sc, uint8_t cmd)
514 1.44 jmcneill {
515 1.44 jmcneill bus_space_write_1(sc->sc_csr_st, sc->sc_csr_sh, 0, cmd);
516 1.44 jmcneill }
517 1.33 kochi
518 1.44 jmcneill static ACPI_STATUS
519 1.44 jmcneill acpiec_space_setup(ACPI_HANDLE region, UINT32 func, void *arg,
520 1.44 jmcneill void **region_arg)
521 1.44 jmcneill {
522 1.44 jmcneill if (func == ACPI_REGION_DEACTIVATE)
523 1.44 jmcneill *region_arg = NULL;
524 1.44 jmcneill else
525 1.44 jmcneill *region_arg = arg;
526 1.1 thorpej
527 1.44 jmcneill return AE_OK;
528 1.1 thorpej }
529 1.1 thorpej
530 1.1 thorpej static void
531 1.44 jmcneill acpiec_lock(device_t dv)
532 1.1 thorpej {
533 1.44 jmcneill struct acpiec_softc *sc = device_private(dv);
534 1.25 kochi ACPI_STATUS rv;
535 1.1 thorpej
536 1.44 jmcneill mutex_enter(&sc->sc_access_mtx);
537 1.1 thorpej
538 1.44 jmcneill if (sc->sc_need_global_lock) {
539 1.44 jmcneill rv = AcpiAcquireGlobalLock(EC_LOCK_TIMEOUT, &sc->sc_global_lock);
540 1.44 jmcneill if (rv != AE_OK) {
541 1.44 jmcneill aprint_error_dev(dv, "failed to acquire global lock: %s\n",
542 1.44 jmcneill AcpiFormatException(rv));
543 1.44 jmcneill return;
544 1.1 thorpej }
545 1.44 jmcneill }
546 1.44 jmcneill }
547 1.44 jmcneill
548 1.44 jmcneill static void
549 1.44 jmcneill acpiec_unlock(device_t dv)
550 1.44 jmcneill {
551 1.44 jmcneill struct acpiec_softc *sc = device_private(dv);
552 1.44 jmcneill ACPI_STATUS rv;
553 1.1 thorpej
554 1.44 jmcneill if (sc->sc_need_global_lock) {
555 1.44 jmcneill rv = AcpiReleaseGlobalLock(sc->sc_global_lock);
556 1.44 jmcneill if (rv != AE_OK) {
557 1.44 jmcneill aprint_error_dev(dv, "failed to release global lock: %s\n",
558 1.25 kochi AcpiFormatException(rv));
559 1.1 thorpej }
560 1.1 thorpej }
561 1.44 jmcneill mutex_exit(&sc->sc_access_mtx);
562 1.44 jmcneill }
563 1.44 jmcneill
564 1.44 jmcneill static ACPI_STATUS
565 1.44 jmcneill acpiec_read(device_t dv, uint8_t addr, uint8_t *val)
566 1.44 jmcneill {
567 1.44 jmcneill struct acpiec_softc *sc = device_private(dv);
568 1.50 jmcneill int i, timeo = 1000 * EC_CMD_TIMEOUT;
569 1.1 thorpej
570 1.44 jmcneill acpiec_lock(dv);
571 1.44 jmcneill mutex_enter(&sc->sc_mtx);
572 1.1 thorpej
573 1.44 jmcneill sc->sc_cur_addr = addr;
574 1.44 jmcneill sc->sc_state = EC_STATE_READ;
575 1.1 thorpej
576 1.44 jmcneill for (i = 0; i < EC_POLL_TIMEOUT; ++i) {
577 1.45 jmcneill acpiec_gpe_state_machine(dv);
578 1.44 jmcneill if (sc->sc_state == EC_STATE_FREE)
579 1.44 jmcneill goto done;
580 1.44 jmcneill delay(1);
581 1.44 jmcneill }
582 1.1 thorpej
583 1.44 jmcneill if (cold || acpiec_cold) {
584 1.49 jmcneill while (sc->sc_state != EC_STATE_FREE && timeo-- > 0) {
585 1.50 jmcneill delay(1000);
586 1.45 jmcneill acpiec_gpe_state_machine(dv);
587 1.1 thorpej }
588 1.49 jmcneill if (sc->sc_state != EC_STATE_FREE) {
589 1.49 jmcneill mutex_exit(&sc->sc_mtx);
590 1.49 jmcneill AcpiClearGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_NOT_ISR);
591 1.49 jmcneill acpiec_unlock(dv);
592 1.49 jmcneill aprint_error_dev(dv, "command timed out, state %d\n",
593 1.49 jmcneill sc->sc_state);
594 1.49 jmcneill return AE_ERROR;
595 1.49 jmcneill }
596 1.52 joerg } else if (cv_timedwait(&sc->sc_cv, &sc->sc_mtx, EC_CMD_TIMEOUT * hz)) {
597 1.44 jmcneill mutex_exit(&sc->sc_mtx);
598 1.44 jmcneill AcpiClearGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_NOT_ISR);
599 1.44 jmcneill acpiec_unlock(dv);
600 1.46 joerg aprint_error_dev(dv, "command takes over %d sec...\n", EC_CMD_TIMEOUT);
601 1.44 jmcneill return AE_ERROR;
602 1.1 thorpej }
603 1.33 kochi
604 1.44 jmcneill done:
605 1.44 jmcneill *val = sc->sc_cur_val;
606 1.44 jmcneill
607 1.44 jmcneill mutex_exit(&sc->sc_mtx);
608 1.44 jmcneill acpiec_unlock(dv);
609 1.44 jmcneill return AE_OK;
610 1.1 thorpej }
611 1.1 thorpej
612 1.1 thorpej static ACPI_STATUS
613 1.44 jmcneill acpiec_write(device_t dv, uint8_t addr, uint8_t val)
614 1.1 thorpej {
615 1.44 jmcneill struct acpiec_softc *sc = device_private(dv);
616 1.50 jmcneill int i, timeo = 1000 * EC_CMD_TIMEOUT;
617 1.1 thorpej
618 1.44 jmcneill acpiec_lock(dv);
619 1.44 jmcneill mutex_enter(&sc->sc_mtx);
620 1.1 thorpej
621 1.44 jmcneill sc->sc_cur_addr = addr;
622 1.44 jmcneill sc->sc_cur_val = val;
623 1.44 jmcneill sc->sc_state = EC_STATE_WRITE;
624 1.44 jmcneill
625 1.44 jmcneill for (i = 0; i < EC_POLL_TIMEOUT; ++i) {
626 1.45 jmcneill acpiec_gpe_state_machine(dv);
627 1.44 jmcneill if (sc->sc_state == EC_STATE_FREE)
628 1.44 jmcneill goto done;
629 1.44 jmcneill delay(1);
630 1.44 jmcneill }
631 1.44 jmcneill
632 1.44 jmcneill if (cold || acpiec_cold) {
633 1.49 jmcneill while (sc->sc_state != EC_STATE_FREE && timeo-- > 0) {
634 1.50 jmcneill delay(1000);
635 1.45 jmcneill acpiec_gpe_state_machine(dv);
636 1.44 jmcneill }
637 1.49 jmcneill if (sc->sc_state != EC_STATE_FREE) {
638 1.49 jmcneill mutex_exit(&sc->sc_mtx);
639 1.49 jmcneill AcpiClearGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_NOT_ISR);
640 1.49 jmcneill acpiec_unlock(dv);
641 1.49 jmcneill aprint_error_dev(dv, "command timed out, state %d\n",
642 1.49 jmcneill sc->sc_state);
643 1.49 jmcneill return AE_ERROR;
644 1.49 jmcneill }
645 1.52 joerg } else if (cv_timedwait(&sc->sc_cv, &sc->sc_mtx, EC_CMD_TIMEOUT * hz)) {
646 1.44 jmcneill mutex_exit(&sc->sc_mtx);
647 1.44 jmcneill AcpiClearGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_NOT_ISR);
648 1.44 jmcneill acpiec_unlock(dv);
649 1.46 joerg aprint_error_dev(dv, "command takes over %d sec...\n", EC_CMD_TIMEOUT);
650 1.44 jmcneill return AE_ERROR;
651 1.44 jmcneill }
652 1.1 thorpej
653 1.44 jmcneill done:
654 1.44 jmcneill mutex_exit(&sc->sc_mtx);
655 1.44 jmcneill acpiec_unlock(dv);
656 1.44 jmcneill return AE_OK;
657 1.1 thorpej }
658 1.1 thorpej
659 1.1 thorpej static ACPI_STATUS
660 1.44 jmcneill acpiec_space_handler(UINT32 func, ACPI_PHYSICAL_ADDRESS paddr,
661 1.44 jmcneill UINT32 width, ACPI_INTEGER *value, void *arg, void *region_arg)
662 1.1 thorpej {
663 1.44 jmcneill device_t dv;
664 1.44 jmcneill struct acpiec_softc *sc;
665 1.44 jmcneill ACPI_STATUS rv;
666 1.44 jmcneill uint8_t addr, reg;
667 1.44 jmcneill unsigned int i;
668 1.44 jmcneill
669 1.44 jmcneill if (paddr > 0xff || width % 8 != 0 || value == NULL || arg == NULL ||
670 1.44 jmcneill paddr + width / 8 > 0xff)
671 1.44 jmcneill return AE_BAD_PARAMETER;
672 1.1 thorpej
673 1.44 jmcneill addr = paddr;
674 1.44 jmcneill dv = arg;
675 1.44 jmcneill sc = device_private(dv);
676 1.1 thorpej
677 1.44 jmcneill rv = AE_OK;
678 1.1 thorpej
679 1.44 jmcneill switch (func) {
680 1.4 thorpej case ACPI_READ:
681 1.44 jmcneill *value = 0;
682 1.44 jmcneill for (i = 0; i < width; i += 8, ++addr) {
683 1.44 jmcneill rv = acpiec_read(dv, addr, ®);
684 1.44 jmcneill if (rv != AE_OK)
685 1.44 jmcneill break;
686 1.44 jmcneill *value |= (ACPI_INTEGER)reg << i;
687 1.44 jmcneill }
688 1.1 thorpej break;
689 1.4 thorpej case ACPI_WRITE:
690 1.44 jmcneill for (i = 0; i < width; i += 8, ++addr) {
691 1.44 jmcneill reg = (*value >>i) & 0xff;
692 1.44 jmcneill rv = acpiec_write(dv, addr, reg);
693 1.44 jmcneill if (rv != AE_OK)
694 1.44 jmcneill break;
695 1.44 jmcneill }
696 1.1 thorpej break;
697 1.1 thorpej default:
698 1.44 jmcneill aprint_error("%s: invalid Address Space function called: %x\n",
699 1.44 jmcneill device_xname(dv), (unsigned int)func);
700 1.44 jmcneill return AE_BAD_PARAMETER;
701 1.1 thorpej }
702 1.1 thorpej
703 1.44 jmcneill return rv;
704 1.1 thorpej }
705 1.1 thorpej
706 1.44 jmcneill static void
707 1.44 jmcneill acpiec_gpe_query(void *arg)
708 1.1 thorpej {
709 1.44 jmcneill device_t dv = arg;
710 1.44 jmcneill struct acpiec_softc *sc = device_private(dv);
711 1.44 jmcneill uint8_t reg;
712 1.44 jmcneill char qxx[5];
713 1.44 jmcneill ACPI_STATUS rv;
714 1.1 thorpej int i;
715 1.1 thorpej
716 1.44 jmcneill loop:
717 1.44 jmcneill mutex_enter(&sc->sc_mtx);
718 1.44 jmcneill
719 1.44 jmcneill if (sc->sc_got_sci == false)
720 1.44 jmcneill cv_wait(&sc->sc_cv_sci, &sc->sc_mtx);
721 1.44 jmcneill mutex_exit(&sc->sc_mtx);
722 1.44 jmcneill
723 1.44 jmcneill acpiec_lock(dv);
724 1.44 jmcneill mutex_enter(&sc->sc_mtx);
725 1.44 jmcneill
726 1.44 jmcneill /* The Query command can always be issued, so be defensive here. */
727 1.44 jmcneill sc->sc_got_sci = false;
728 1.44 jmcneill sc->sc_state = EC_STATE_QUERY;
729 1.1 thorpej
730 1.44 jmcneill for (i = 0; i < EC_POLL_TIMEOUT; ++i) {
731 1.45 jmcneill acpiec_gpe_state_machine(dv);
732 1.44 jmcneill if (sc->sc_state == EC_STATE_FREE)
733 1.44 jmcneill goto done;
734 1.44 jmcneill delay(1);
735 1.1 thorpej }
736 1.1 thorpej
737 1.44 jmcneill cv_wait(&sc->sc_cv, &sc->sc_mtx);
738 1.44 jmcneill
739 1.44 jmcneill done:
740 1.44 jmcneill reg = sc->sc_cur_val;
741 1.1 thorpej
742 1.44 jmcneill mutex_exit(&sc->sc_mtx);
743 1.44 jmcneill acpiec_unlock(dv);
744 1.1 thorpej
745 1.44 jmcneill if (reg == 0)
746 1.44 jmcneill goto loop; /* Spurious query result */
747 1.1 thorpej
748 1.1 thorpej /*
749 1.44 jmcneill * Evaluate _Qxx to respond to the controller.
750 1.1 thorpej */
751 1.44 jmcneill snprintf(qxx, sizeof(qxx), "_Q%02X", (unsigned int)reg);
752 1.44 jmcneill rv = AcpiEvaluateObject(sc->sc_ech, qxx, NULL, NULL);
753 1.44 jmcneill if (rv != AE_OK && rv != AE_NOT_FOUND) {
754 1.44 jmcneill aprint_error("%s: GPE query method %s failed: %s",
755 1.44 jmcneill device_xname(dv), qxx, AcpiFormatException(rv));
756 1.1 thorpej }
757 1.1 thorpej
758 1.44 jmcneill goto loop;
759 1.24 kochi }
760 1.1 thorpej
761 1.44 jmcneill static void
762 1.45 jmcneill acpiec_gpe_state_machine(device_t dv)
763 1.1 thorpej {
764 1.44 jmcneill struct acpiec_softc *sc = device_private(dv);
765 1.44 jmcneill uint8_t reg;
766 1.1 thorpej
767 1.44 jmcneill reg = acpiec_read_status(sc);
768 1.1 thorpej
769 1.44 jmcneill if (reg & EC_STATUS_SCI)
770 1.44 jmcneill sc->sc_got_sci = true;
771 1.44 jmcneill
772 1.44 jmcneill switch (sc->sc_state) {
773 1.44 jmcneill case EC_STATE_QUERY:
774 1.44 jmcneill if ((reg & EC_STATUS_IBF) != 0)
775 1.44 jmcneill break; /* Nothing of interest here. */
776 1.44 jmcneill acpiec_write_command(sc, EC_COMMAND_QUERY);
777 1.44 jmcneill sc->sc_state = EC_STATE_QUERY_VAL;
778 1.44 jmcneill break;
779 1.1 thorpej
780 1.44 jmcneill case EC_STATE_QUERY_VAL:
781 1.44 jmcneill if ((reg & EC_STATUS_OBF) == 0)
782 1.44 jmcneill break; /* Nothing of interest here. */
783 1.1 thorpej
784 1.44 jmcneill sc->sc_cur_val = acpiec_read_data(sc);
785 1.44 jmcneill sc->sc_state = EC_STATE_FREE;
786 1.1 thorpej
787 1.44 jmcneill cv_signal(&sc->sc_cv);
788 1.1 thorpej break;
789 1.1 thorpej
790 1.44 jmcneill case EC_STATE_READ:
791 1.44 jmcneill if ((reg & EC_STATUS_IBF) != 0)
792 1.44 jmcneill break; /* Nothing of interest here. */
793 1.1 thorpej
794 1.44 jmcneill acpiec_write_command(sc, EC_COMMAND_READ);
795 1.44 jmcneill sc->sc_state = EC_STATE_READ_ADDR;
796 1.1 thorpej break;
797 1.1 thorpej
798 1.44 jmcneill case EC_STATE_READ_ADDR:
799 1.44 jmcneill if ((reg & EC_STATUS_IBF) != 0)
800 1.44 jmcneill break; /* Nothing of interest here. */
801 1.1 thorpej
802 1.44 jmcneill acpiec_write_data(sc, sc->sc_cur_addr);
803 1.44 jmcneill sc->sc_state = EC_STATE_READ_VAL;
804 1.44 jmcneill break;
805 1.1 thorpej
806 1.44 jmcneill case EC_STATE_READ_VAL:
807 1.44 jmcneill if ((reg & EC_STATUS_OBF) == 0)
808 1.44 jmcneill break; /* Nothing of interest here. */
809 1.44 jmcneill sc->sc_cur_val = acpiec_read_data(sc);
810 1.44 jmcneill sc->sc_state = EC_STATE_FREE;
811 1.1 thorpej
812 1.44 jmcneill cv_signal(&sc->sc_cv);
813 1.44 jmcneill break;
814 1.1 thorpej
815 1.44 jmcneill case EC_STATE_WRITE:
816 1.44 jmcneill if ((reg & EC_STATUS_IBF) != 0)
817 1.44 jmcneill break; /* Nothing of interest here. */
818 1.1 thorpej
819 1.44 jmcneill acpiec_write_command(sc, EC_COMMAND_WRITE);
820 1.44 jmcneill sc->sc_state = EC_STATE_WRITE_ADDR;
821 1.44 jmcneill break;
822 1.1 thorpej
823 1.44 jmcneill case EC_STATE_WRITE_ADDR:
824 1.44 jmcneill if ((reg & EC_STATUS_IBF) != 0)
825 1.44 jmcneill break; /* Nothing of interest here. */
826 1.44 jmcneill acpiec_write_data(sc, sc->sc_cur_addr);
827 1.44 jmcneill sc->sc_state = EC_STATE_WRITE_VAL;
828 1.44 jmcneill break;
829 1.1 thorpej
830 1.44 jmcneill case EC_STATE_WRITE_VAL:
831 1.44 jmcneill if ((reg & EC_STATUS_IBF) != 0)
832 1.44 jmcneill break; /* Nothing of interest here. */
833 1.44 jmcneill sc->sc_state = EC_STATE_FREE;
834 1.44 jmcneill cv_signal(&sc->sc_cv);
835 1.1 thorpej
836 1.44 jmcneill acpiec_write_data(sc, sc->sc_cur_val);
837 1.44 jmcneill break;
838 1.1 thorpej
839 1.44 jmcneill case EC_STATE_FREE:
840 1.44 jmcneill if (sc->sc_got_sci)
841 1.44 jmcneill cv_signal(&sc->sc_cv_sci);
842 1.44 jmcneill break;
843 1.44 jmcneill default:
844 1.44 jmcneill panic("invalid state");
845 1.44 jmcneill }
846 1.46 joerg
847 1.46 joerg if (sc->sc_state != EC_STATE_FREE)
848 1.46 joerg callout_schedule(&sc->sc_pseudo_intr, 1);
849 1.46 joerg }
850 1.46 joerg
851 1.46 joerg static void
852 1.46 joerg acpiec_callout(void *arg)
853 1.46 joerg {
854 1.46 joerg device_t dv = arg;
855 1.46 joerg struct acpiec_softc *sc = device_private(dv);
856 1.46 joerg
857 1.47 joerg AcpiClearGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_NOT_ISR);
858 1.47 joerg
859 1.46 joerg mutex_enter(&sc->sc_mtx);
860 1.46 joerg acpiec_gpe_state_machine(dv);
861 1.46 joerg mutex_exit(&sc->sc_mtx);
862 1.24 kochi }
863 1.1 thorpej
864 1.44 jmcneill static UINT32
865 1.44 jmcneill acpiec_gpe_handler(void *arg)
866 1.1 thorpej {
867 1.44 jmcneill device_t dv = arg;
868 1.44 jmcneill struct acpiec_softc *sc = device_private(dv);
869 1.1 thorpej
870 1.44 jmcneill AcpiClearGpe(sc->sc_gpeh, sc->sc_gpebit, ACPI_ISR);
871 1.1 thorpej
872 1.44 jmcneill mutex_enter(&sc->sc_mtx);
873 1.45 jmcneill acpiec_gpe_state_machine(dv);
874 1.44 jmcneill mutex_exit(&sc->sc_mtx);
875 1.1 thorpej
876 1.44 jmcneill return 0;
877 1.1 thorpej }
878 1.48 jmcneill
879 1.48 jmcneill ACPI_STATUS
880 1.48 jmcneill acpiec_bus_read(device_t dv, u_int addr, ACPI_INTEGER *val, int width)
881 1.48 jmcneill {
882 1.48 jmcneill return acpiec_space_handler(ACPI_READ, addr, width * 8, val, dv, NULL);
883 1.48 jmcneill }
884 1.48 jmcneill
885 1.48 jmcneill ACPI_STATUS
886 1.48 jmcneill acpiec_bus_write(device_t dv, u_int addr, ACPI_INTEGER val, int width)
887 1.48 jmcneill {
888 1.48 jmcneill return acpiec_space_handler(ACPI_WRITE, addr, width * 8, &val, dv, NULL);
889 1.48 jmcneill }
890 1.48 jmcneill
891 1.48 jmcneill ACPI_HANDLE
892 1.48 jmcneill acpiec_get_handle(device_t dv)
893 1.48 jmcneill {
894 1.48 jmcneill struct acpiec_softc *sc = device_private(dv);
895 1.48 jmcneill
896 1.48 jmcneill return sc->sc_ech;
897 1.48 jmcneill }
898