From: Prashanth Prakash <pprakash@codeaurora.org>
To: linux-acpi@vger.kernel.org
Cc: rjw@rjwysocki.net, harba@codeaurora.org, ahs3@redhat.com,
Prashanth Prakash <pprakash@codeaurora.org>
Subject: [PATCH v2] ACPI: Support for platform initiated graceful shutdown
Date: Mon, 16 May 2016 14:21:52 -0600 [thread overview]
Message-ID: <1463430112-8843-1-git-send-email-pprakash@codeaurora.org> (raw)
This patch adds support for platform initited graceful shutdown as
described in sections 5.6.6(Table-143) and 6.3.5.1 of ACPI 6.1 spec
The OSPM will get a graceful shutdown request via a Notify operator
on \_SB device with a value of 0x81 per section 5.6.6. Following the
shutdown request from platform the OSPM needs to follow the
processing sequence as described in section 6.2.5.1.
Signed-off-by: Prashanth Prakash <pprakash@codeaurora.org>
---
drivers/acpi/bus.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
include/acpi/actypes.h | 2 +-
2 files changed, 50 insertions(+), 1 deletion(-)
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c
index 31e8da6..25d4806 100644
--- a/drivers/acpi/bus.c
+++ b/drivers/acpi/bus.c
@@ -30,6 +30,8 @@
#include <linux/acpi.h>
#include <linux/slab.h>
#include <linux/regulator/machine.h>
+#include <linux/workqueue.h>
+#include <linux/reboot.h>
#ifdef CONFIG_X86
#include <asm/mpspec.h>
#endif
@@ -475,6 +477,52 @@ static void acpi_device_remove_notify_handler(struct acpi_device *device)
acpi_device_notify);
}
+/* Handle events targeting \_SB device (at present only graceful shutdown) */
+
+#define ACPI_SB_NOTIFY_SHUTDOWN_REQUEST 0x81
+#define ACPI_SYBUS_INDICATE_INTERVAL 10000
+
+static void sybus_evaluate_ost(struct work_struct *dummy);
+static DECLARE_DELAYED_WORK(acpi_sybus_work, sybus_evaluate_ost);
+
+static void sybus_evaluate_ost(struct work_struct *dummy)
+{
+ acpi_handle sb_handle;
+
+ if (ACPI_SUCCESS(acpi_get_handle(NULL, "\\_SB", &sb_handle))) {
+ acpi_evaluate_ost(sb_handle, ACPI_OST_EC_OSPM_SHUTDOWN,
+ ACPI_OST_SC_OS_SHUTDOWN_IN_PROGRESS, NULL);
+ schedule_delayed_work(&acpi_sybus_work,
+ msecs_to_jiffies(ACPI_SYBUS_INDICATE_INTERVAL));
+ pr_info("Graceful shutdown in progress.\n");
+ }
+}
+
+static void acpi_sybus_notify(acpi_handle handle, u32 event, void *data)
+{
+ if (event == ACPI_SB_NOTIFY_SHUTDOWN_REQUEST) {
+ if (!delayed_work_pending(&acpi_sybus_work)) {
+ sybus_evaluate_ost(NULL);
+ orderly_poweroff(true);
+ }
+ } else
+ pr_warn("event %x is not supported by \\_SB device\n", event);
+}
+
+static int __init acpi_setup_sybus_notify_handler(void)
+{
+ acpi_handle sb_handle;
+
+ if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &sb_handle)))
+ return -ENXIO;
+
+ if (ACPI_FAILURE(acpi_install_notify_handler(sb_handle, ACPI_DEVICE_NOTIFY,
+ acpi_sybus_notify, NULL)))
+ return -EINVAL;
+
+ return 0;
+}
+
/* --------------------------------------------------------------------------
Device Matching
-------------------------------------------------------------------------- */
@@ -1124,6 +1172,7 @@ static int __init acpi_init(void)
acpi_sleep_proc_init();
acpi_wakeup_device_init();
acpi_debugger_init();
+ acpi_setup_sybus_notify_handler();
return 0;
}
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h
index cb389ef..860b273 100644
--- a/include/acpi/actypes.h
+++ b/include/acpi/actypes.h
@@ -627,7 +627,7 @@ typedef u64 acpi_integer;
#define ACPI_NOTIFY_DEVICE_PLD_CHECK (u8) 0x09
#define ACPI_NOTIFY_RESERVED (u8) 0x0A
#define ACPI_NOTIFY_LOCALITY_UPDATE (u8) 0x0B
-#define ACPI_NOTIFY_SHUTDOWN_REQUEST (u8) 0x0C
+#define ACPI_NOTIFY_RESERVED_2 (u8) 0x0C
#define ACPI_NOTIFY_AFFINITY_UPDATE (u8) 0x0D
#define ACPI_GENERIC_NOTIFY_MAX 0x0D
--
Qualcomm Technologies, Inc. on behalf
of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc.
is a member of the Code Aurora Forum, a Linux Foundation Collaborative Project.
next reply other threads:[~2016-05-16 20:22 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-16 20:21 Prashanth Prakash [this message]
2016-05-16 22:43 ` [PATCH v2] ACPI: Support for platform initiated graceful shutdown Zheng, Lv
2016-05-16 23:20 ` Prakash, Prashanth
2016-06-15 20:05 ` Prakash, Prashanth
2016-06-21 23:50 ` Rafael J. Wysocki
2016-06-22 15:20 ` Prakash, Prashanth
2016-06-22 22:43 ` Rafael J. Wysocki
2016-06-22 23:21 ` Prakash, Prashanth
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1463430112-8843-1-git-send-email-pprakash@codeaurora.org \
--to=pprakash@codeaurora.org \
--cc=ahs3@redhat.com \
--cc=harba@codeaurora.org \
--cc=linux-acpi@vger.kernel.org \
--cc=rjw@rjwysocki.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).