aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/hardware/hwxface.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/hardware/hwxface.c')
-rw-r--r--drivers/acpi/hardware/hwxface.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/drivers/acpi/hardware/hwxface.c b/drivers/acpi/hardware/hwxface.c
index b6244a0fcf4c..0601ed711f30 100644
--- a/drivers/acpi/hardware/hwxface.c
+++ b/drivers/acpi/hardware/hwxface.c
@@ -50,6 +50,43 @@ ACPI_MODULE_NAME("hwxface")
50 50
51/****************************************************************************** 51/******************************************************************************
52 * 52 *
53 * FUNCTION: acpi_reset
54 *
55 * PARAMETERS: None
56 *
57 * RETURN: Status
58 *
59 * DESCRIPTION: Set reset register in memory or IO space. Note: Does not
60 * support reset register in PCI config space, this must be
61 * handled separately.
62 *
63 ******************************************************************************/
64acpi_status acpi_reset(void)
65{
66 struct acpi_generic_address *reset_reg;
67 acpi_status status;
68
69 ACPI_FUNCTION_TRACE(acpi_reset);
70
71 reset_reg = &acpi_gbl_FADT.reset_register;
72
73 /* Check if the reset register is supported */
74
75 if (!(acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER) ||
76 !reset_reg->address) {
77 return_ACPI_STATUS(AE_NOT_EXIST);
78 }
79
80 /* Write the reset value to the reset register */
81
82 status = acpi_write(acpi_gbl_FADT.reset_value, reset_reg);
83 return_ACPI_STATUS(status);
84}
85
86ACPI_EXPORT_SYMBOL(acpi_reset)
87
88/******************************************************************************
89 *
53 * FUNCTION: acpi_read 90 * FUNCTION: acpi_read
54 * 91 *
55 * PARAMETERS: Value - Where the value is returned 92 * PARAMETERS: Value - Where the value is returned