Deleted Added
full compact
acpi_machdep.c (177157) acpi_machdep.c (189903)
1/*-
2 * Copyright (c) 2001 Mitsuru IWASAKI
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

--- 11 unchanged lines hidden (view full) ---

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#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2001 Mitsuru IWASAKI
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

--- 11 unchanged lines hidden (view full) ---

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#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sys/amd64/acpica/acpi_machdep.c 177157 2008-03-13 20:39:04Z jhb $");
28__FBSDID("$FreeBSD: head/sys/amd64/acpica/acpi_machdep.c 189903 2009-03-17 00:48:11Z jkim $");
29
30#include <sys/param.h>
31#include <sys/bus.h>
32#include <sys/kernel.h>
33#include <sys/module.h>
29
30#include <sys/param.h>
31#include <sys/bus.h>
32#include <sys/kernel.h>
33#include <sys/module.h>
34#include <sys/sysctl.h>
34
35#include <contrib/dev/acpica/acpi.h>
36#include <dev/acpica/acpivar.h>
37
38#include <machine/nexusvar.h>
39
35
36#include <contrib/dev/acpica/acpi.h>
37#include <dev/acpica/acpivar.h>
38
39#include <machine/nexusvar.h>
40
41SYSCTL_DECL(_debug_acpi);
42
43uint32_t acpi_resume_beep;
44TUNABLE_INT("debug.acpi.resume_beep", &acpi_resume_beep);
45SYSCTL_UINT(_debug_acpi, OID_AUTO, resume_beep, CTLFLAG_RW, &acpi_resume_beep,
46 0, "Beep the PC speaker when resuming");
47uint32_t acpi_reset_video;
48TUNABLE_INT("hw.acpi.reset_video", &acpi_reset_video);
49
40static int intr_model = ACPI_INTR_PIC;
50static int intr_model = ACPI_INTR_PIC;
51static struct apm_clone_data acpi_clone;
41
42int
43acpi_machdep_init(device_t dev)
44{
52
53int
54acpi_machdep_init(device_t dev)
55{
45 struct acpi_softc *sc;
56 struct acpi_softc *sc;
46
47 sc = devclass_get_softc(devclass_find("acpi"), 0);
57
58 sc = devclass_get_softc(devclass_find("acpi"), 0);
59
60 /* Create a fake clone for /dev/acpi. */
61 STAILQ_INIT(&sc->apm_cdevs);
62 acpi_clone.cdev = sc->acpi_dev_t;
63 acpi_clone.acpi_sc = sc;
64 ACPI_LOCK(acpi);
65 STAILQ_INSERT_TAIL(&sc->apm_cdevs, &acpi_clone, entries);
66 ACPI_UNLOCK(acpi);
67 sc->acpi_clone = &acpi_clone;
48 acpi_install_wakeup_handler(sc);
49
50 if (intr_model != ACPI_INTR_PIC)
51 acpi_SetIntrModel(intr_model);
52
68 acpi_install_wakeup_handler(sc);
69
70 if (intr_model != ACPI_INTR_PIC)
71 acpi_SetIntrModel(intr_model);
72
73 SYSCTL_ADD_UINT(&sc->acpi_sysctl_ctx,
74 SYSCTL_CHILDREN(sc->acpi_sysctl_tree), OID_AUTO,
75 "reset_video", CTLFLAG_RW, &acpi_reset_video, 0,
76 "Call the VESA reset BIOS vector on the resume path");
77
53 return (0);
54}
55
56void
57acpi_SetDefaultIntrModel(int model)
58{
59
60 intr_model = model;

--- 53 unchanged lines hidden ---
78 return (0);
79}
80
81void
82acpi_SetDefaultIntrModel(int model)
83{
84
85 intr_model = model;

--- 53 unchanged lines hidden ---