Ben Guthro
2013-Jun-26 14:06 UTC
[PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
In version 3.4 acpi_os_prepare_sleep() got introduced in parallel with reduced hardware sleep support, and the two changes didn''t get synchronized: The new code doesn''t call the hook function (if so requested). Fix this, requiring a parameter to be added to the hook function to distinguish "extended" from "legacy" sleep. Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> Signed-off-by: Jan Beulich <jbeulich@suse.com> Cc: Bob Moore <robert.moore@intel.com> Cc: Rafaell J. Wysocki <rjw@sisk.pl> Cc: linux-acpi@vger.kernel.org --- drivers/acpi/acpica/hwesleep.c | 8 ++++++++ drivers/acpi/acpica/hwsleep.c | 2 +- drivers/acpi/osl.c | 16 ++++++++-------- include/linux/acpi.h | 10 +++++----- 4 files changed, 22 insertions(+), 14 deletions(-) diff --git a/drivers/acpi/acpica/hwesleep.c b/drivers/acpi/acpica/hwesleep.c index 5e5f762..6834dd7 100644 --- a/drivers/acpi/acpica/hwesleep.c +++ b/drivers/acpi/acpica/hwesleep.c @@ -43,6 +43,7 @@ */ #include <acpi/acpi.h> +#include <linux/acpi.h> #include "accommon.h" #define _COMPONENT ACPI_HARDWARE @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 sleep_state) ACPI_FLUSH_CPU_CACHE(); + status = acpi_os_prepare_sleep(sleep_state, acpi_gbl_sleep_type_a, + acpi_gbl_sleep_type_b, true); + if (ACPI_SKIP(status)) + return_ACPI_STATUS(AE_OK); + if (ACPI_FAILURE(status)) + return_ACPI_STATUS(status); + /* * Set the SLP_TYP and SLP_EN bits. * diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c index e3828cc..a93c299 100644 --- a/drivers/acpi/acpica/hwsleep.c +++ b/drivers/acpi/acpica/hwsleep.c @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) ACPI_FLUSH_CPU_CACHE(); status = acpi_os_prepare_sleep(sleep_state, pm1a_control, - pm1b_control); + pm1b_control, false); if (ACPI_SKIP(status)) return_ACPI_STATUS(AE_OK); if (ACPI_FAILURE(status)) diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index e721863..3fc2801 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c @@ -77,8 +77,8 @@ EXPORT_SYMBOL(acpi_in_debugger); extern char line_buf[80]; #endif /*ENABLE_DEBUGGER */ -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, - u32 pm1b_ctrl); +static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 val_a, u32 val_b, + u8 extended); static acpi_osd_handler acpi_irq_handler; static void *acpi_irq_context; @@ -1757,13 +1757,13 @@ acpi_status acpi_os_terminate(void) return AE_OK; } -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, - u32 pm1b_control) +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, + u8 extended) { int rc = 0; if (__acpi_os_prepare_sleep) - rc = __acpi_os_prepare_sleep(sleep_state, - pm1a_control, pm1b_control); + rc = __acpi_os_prepare_sleep(sleep_state, val_a, val_b, + extended); if (rc < 0) return AE_ERROR; else if (rc > 0) @@ -1772,8 +1772,8 @@ acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, return AE_OK; } -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, - u32 pm1a_ctrl, u32 pm1b_ctrl)) +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, + u32 val_b, u8 extended)) { __acpi_os_prepare_sleep = func; } diff --git a/include/linux/acpi.h b/include/linux/acpi.h index 17b5b59..de99022 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h @@ -477,11 +477,11 @@ static inline bool acpi_driver_match_device(struct device *dev, #endif /* !CONFIG_ACPI */ #ifdef CONFIG_ACPI -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, - u32 pm1a_ctrl, u32 pm1b_ctrl)); +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, + u32 val_b, u8 extended)); -acpi_status acpi_os_prepare_sleep(u8 sleep_state, - u32 pm1a_control, u32 pm1b_control); +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, + u8 extended); #ifdef CONFIG_X86 void arch_reserve_mem_area(acpi_physical_address addr, size_t size); #else @@ -491,7 +491,7 @@ static inline void arch_reserve_mem_area(acpi_physical_address addr, } #endif /* CONFIG_X86 */ #else -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do { } while (0) +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do { } while (0) #endif #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) -- 1.7.9.5
Jan Beulich
2013-Jun-26 14:41 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
>>> On 26.06.13 at 16:06, Ben Guthro <benjamin.guthro@citrix.com> wrote: > In version 3.4 acpi_os_prepare_sleep() got introduced in parallel with > reduced hardware sleep support, and the two changes didn''t get > synchronized: The new code doesn''t call the hook function (if so > requested). Fix this, requiring a parameter to be added to the > hook function to distinguish "extended" from "legacy" sleep. > > Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> > Signed-off-by: Jan Beulich <jbeulich@suse.com>I think these are intended to reflect the flow of things, so should be reversed (also in the other patches).> --- a/drivers/acpi/acpica/hwesleep.c > +++ b/drivers/acpi/acpica/hwesleep.c > @@ -43,6 +43,7 @@ > */ > > #include <acpi/acpi.h> > +#include <linux/acpi.h>This also got complaints, so I''d be very surprised if they took it now.> #include "accommon.h" > > #define _COMPONENT ACPI_HARDWARE > @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 sleep_state) > > ACPI_FLUSH_CPU_CACHE(); > > + status = acpi_os_prepare_sleep(sleep_state, acpi_gbl_sleep_type_a, > + acpi_gbl_sleep_type_b, true);Without using "bool", using "true" and "false" is wrong (should be TRUE and FALSE afaict).> --- a/drivers/acpi/acpica/hwsleep.c > +++ b/drivers/acpi/acpica/hwsleep.c > @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) > ACPI_FLUSH_CPU_CACHE(); > > status = acpi_os_prepare_sleep(sleep_state, pm1a_control, > - pm1b_control); > + pm1b_control, false);Same here.> if (ACPI_SKIP(status)) > return_ACPI_STATUS(AE_OK); > if (ACPI_FAILURE(status))And the split point ought to be here - everything below doesn''t modify ACPI CA code. Which in particular means that ...> --- a/include/linux/acpi.h > +++ b/include/linux/acpi.h > @@ -477,11 +477,11 @@ static inline bool acpi_driver_match_device(struct device *dev, > #endif /* !CONFIG_ACPI */ > > #ifdef CONFIG_ACPI > -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > - u32 pm1a_ctrl, u32 pm1b_ctrl)); > +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, > + u32 val_b, u8 extended)); > > -acpi_status acpi_os_prepare_sleep(u8 sleep_state, > - u32 pm1a_control, u32 pm1b_control); > +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, > + u8 extended);... this needs to be moved elsewhere (under include/acpi/), but the two incarnations of acpi_os_set_prepare_sleep() should presumably remain here. Jan> #ifdef CONFIG_X86 > void arch_reserve_mem_area(acpi_physical_address addr, size_t size); > #else > @@ -491,7 +491,7 @@ static inline void arch_reserve_mem_area(acpi_physical_address addr, > } > #endif /* CONFIG_X86 */ > #else > -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do { } while (0) > +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do { } while (0) > #endif > > #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME)
Ben Guthro
2013-Jun-26 15:03 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
On Wed, Jun 26, 2013 at 10:41 AM, Jan Beulich <JBeulich@suse.com> wrote:>>>> On 26.06.13 at 16:06, Ben Guthro <benjamin.guthro@citrix.com> wrote: >> In version 3.4 acpi_os_prepare_sleep() got introduced in parallel with >> reduced hardware sleep support, and the two changes didn''t get >> synchronized: The new code doesn''t call the hook function (if so >> requested). Fix this, requiring a parameter to be added to the >> hook function to distinguish "extended" from "legacy" sleep. >> >> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> >> Signed-off-by: Jan Beulich <jbeulich@suse.com> > > I think these are intended to reflect the flow of things, so > should be reversed (also in the other patches). > >> --- a/drivers/acpi/acpica/hwesleep.c >> +++ b/drivers/acpi/acpica/hwesleep.c >> @@ -43,6 +43,7 @@ >> */ >> >> #include <acpi/acpi.h> >> +#include <linux/acpi.h> > > This also got complaints, so I''d be very surprised if they took it now.I did see these complaints in the last version. However, the file drivers/acpi/acpica/hwsleep.c contains this include, and has since commit 09f98a825a821f7a3f1b162f9ed023f37213a63b Author: Tang Liang <liang.tang@oracle.com> Date: Fri Dec 9 10:05:54 2011 +0800 So since this is the extended sleep file, vs the standard one - I don''t see why such a restriction would be placed on the former, but not the latter. I would look for some guidance here from the ACPI guys, for how to handle this.> >> #include "accommon.h" >> >> #define _COMPONENT ACPI_HARDWARE >> @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 sleep_state) >> >> ACPI_FLUSH_CPU_CACHE(); >> >> + status = acpi_os_prepare_sleep(sleep_state, acpi_gbl_sleep_type_a, >> + acpi_gbl_sleep_type_b, true); > > Without using "bool", using "true" and "false" is wrong (should > be TRUE and FALSE afaict).Thanks, I overlooked that. I''ll fix it for the next version.> >> --- a/drivers/acpi/acpica/hwsleep.c >> +++ b/drivers/acpi/acpica/hwsleep.c >> @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) >> ACPI_FLUSH_CPU_CACHE(); >> >> status = acpi_os_prepare_sleep(sleep_state, pm1a_control, >> - pm1b_control); >> + pm1b_control, false); > > Same here.ack.> >> if (ACPI_SKIP(status)) >> return_ACPI_STATUS(AE_OK); >> if (ACPI_FAILURE(status)) > > And the split point ought to be here - everything below doesn''t > modify ACPI CA code. Which in particular means that ...OK.> >> --- a/include/linux/acpi.h >> +++ b/include/linux/acpi.h >> @@ -477,11 +477,11 @@ static inline bool acpi_driver_match_device(struct device *dev, >> #endif /* !CONFIG_ACPI */ >> >> #ifdef CONFIG_ACPI >> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >> - u32 pm1a_ctrl, u32 pm1b_ctrl)); >> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, >> + u32 val_b, u8 extended)); >> >> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, >> - u32 pm1a_control, u32 pm1b_control); >> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, >> + u8 extended); > > ... this needs to be moved elsewhere (under include/acpi/), but the > two incarnations of acpi_os_set_prepare_sleep() should presumably > remain here.If my comment above about hwsleep.c holds, would this be necessary? Thanks for the review. Ben> > Jan > >> #ifdef CONFIG_X86 >> void arch_reserve_mem_area(acpi_physical_address addr, size_t size); >> #else >> @@ -491,7 +491,7 @@ static inline void arch_reserve_mem_area(acpi_physical_address addr, >> } >> #endif /* CONFIG_X86 */ >> #else >> -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do { } while (0) >> +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do { } while (0) >> #endif >> >> #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) > > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/
Jan Beulich
2013-Jun-26 15:45 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
>>> On 26.06.13 at 17:03, Ben Guthro <benjamin.guthro@citrix.com> wrote: > On Wed, Jun 26, 2013 at 10:41 AM, Jan Beulich <JBeulich@suse.com> wrote: >>>>> On 26.06.13 at 16:06, Ben Guthro <benjamin.guthro@citrix.com> wrote: >>> In version 3.4 acpi_os_prepare_sleep() got introduced in parallel with >>> reduced hardware sleep support, and the two changes didn''t get >>> synchronized: The new code doesn''t call the hook function (if so >>> requested). Fix this, requiring a parameter to be added to the >>> hook function to distinguish "extended" from "legacy" sleep. >>> >>> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> >>> Signed-off-by: Jan Beulich <jbeulich@suse.com> >> >> I think these are intended to reflect the flow of things, so >> should be reversed (also in the other patches). >> >>> --- a/drivers/acpi/acpica/hwesleep.c >>> +++ b/drivers/acpi/acpica/hwesleep.c >>> @@ -43,6 +43,7 @@ >>> */ >>> >>> #include <acpi/acpi.h> >>> +#include <linux/acpi.h> >> >> This also got complaints, so I''d be very surprised if they took it now. > > I did see these complaints in the last version. > However, the file drivers/acpi/acpica/hwsleep.c contains this include, > and has since > > commit 09f98a825a821f7a3f1b162f9ed023f37213a63b > Author: Tang Liang <liang.tang@oracle.com> > Date: Fri Dec 9 10:05:54 2011 +0800 > > So since this is the extended sleep file, vs the standard one - I > don''t see why such a restriction would be placed on the former, but > not the latter.In essence they said (in the same thread I pointed you to) that according to the current policy this include is wrong and should be dropped. Now, if you can get along without dropping it that''ll likely be fine, but I doubt they''ll allow you to add another instance of this. Jan
Rafael J. Wysocki
2013-Jun-26 18:59 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
On Wednesday, June 26, 2013 04:45:53 PM Jan Beulich wrote:> >>> On 26.06.13 at 17:03, Ben Guthro <benjamin.guthro@citrix.com> wrote: > > On Wed, Jun 26, 2013 at 10:41 AM, Jan Beulich <JBeulich@suse.com> wrote: > >>>>> On 26.06.13 at 16:06, Ben Guthro <benjamin.guthro@citrix.com> wrote: > >>> In version 3.4 acpi_os_prepare_sleep() got introduced in parallel with > >>> reduced hardware sleep support, and the two changes didn''t get > >>> synchronized: The new code doesn''t call the hook function (if so > >>> requested). Fix this, requiring a parameter to be added to the > >>> hook function to distinguish "extended" from "legacy" sleep. > >>> > >>> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> > >>> Signed-off-by: Jan Beulich <jbeulich@suse.com> > >> > >> I think these are intended to reflect the flow of things, so > >> should be reversed (also in the other patches). > >> > >>> --- a/drivers/acpi/acpica/hwesleep.c > >>> +++ b/drivers/acpi/acpica/hwesleep.c > >>> @@ -43,6 +43,7 @@ > >>> */ > >>> > >>> #include <acpi/acpi.h> > >>> +#include <linux/acpi.h> > >> > >> This also got complaints, so I''d be very surprised if they took it now. > > > > I did see these complaints in the last version. > > However, the file drivers/acpi/acpica/hwsleep.c contains this include, > > and has since > > > > commit 09f98a825a821f7a3f1b162f9ed023f37213a63b > > Author: Tang Liang <liang.tang@oracle.com> > > Date: Fri Dec 9 10:05:54 2011 +0800 > > > > So since this is the extended sleep file, vs the standard one - I > > don''t see why such a restriction would be placed on the former, but > > not the latter. > > In essence they said (in the same thread I pointed you to) that > according to the current policy this include is wrong and should > be dropped. > > Now, if you can get along without dropping it that''ll likely be fine, > but I doubt they''ll allow you to add another instance of this.Actually, I''d prefer not to add new dependencies on the "old" include either. Thanks, Rafael -- I speak only for myself. Rafael J. Wysocki, Intel Open Source Technology Center.
Zheng, Lv
2013-Jul-02 06:19 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
Thanks for your efforts! I wonder if it is possible to remove the argument - "u8 extended" and convert "pm1a_control, pm1b_control" into some u8 values that are equivalent to "acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b" in the legacy sleep path. It can also simplify Xen codes. As in ACPI specification, the bit definitions between the legacy sleep registers and the extended sleep registers are equivalent. The legacy sleep register definition: Table 4-16 PM1 Status Registers Fixed Hardware Feature Status Bits - WAK_STS(bit 15) Table 4-18 PM1 Control Registers Fixed Hardware Feature Control Bits - SLP_TYPx (bit 10-12), SLP_EN (bit 13) The extended sleep register definition: Table 4-24 Sleep Control Register - SLP_TYPx (3 bits from offset 2), SLP_EN (1 bit from offset 5), here 10-8 = 2, and 13-8 = 5, this definition is equivalent to Table 4-18. Table 4-25 Sleep Status Register - WAK_STS (1 bit 7), 15-8 = 7, this definition is equivalent to Table 4-16. Thanks and best regards -Lv> -----Original Message----- > From: linux-acpi-owner@vger.kernel.org > [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Ben Guthro > Sent: Wednesday, June 26, 2013 10:06 PM > To: Konrad Rzeszutek Wilk; Jan Beulich; Rafaell J . Wysocki; > linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; > xen-devel@lists.xen.org > Cc: Ben Guthro; Moore, Robert > Subject: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced > hardware sleep path > > In version 3.4 acpi_os_prepare_sleep() got introduced in parallel with > reduced hardware sleep support, and the two changes didn''t get > synchronized: The new code doesn''t call the hook function (if so > requested). Fix this, requiring a parameter to be added to the > hook function to distinguish "extended" from "legacy" sleep. > > Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> > Signed-off-by: Jan Beulich <jbeulich@suse.com> > Cc: Bob Moore <robert.moore@intel.com> > Cc: Rafaell J. Wysocki <rjw@sisk.pl> > Cc: linux-acpi@vger.kernel.org > --- > drivers/acpi/acpica/hwesleep.c | 8 ++++++++ > drivers/acpi/acpica/hwsleep.c | 2 +- > drivers/acpi/osl.c | 16 ++++++++-------- > include/linux/acpi.h | 10 +++++----- > 4 files changed, 22 insertions(+), 14 deletions(-) > > diff --git a/drivers/acpi/acpica/hwesleep.c b/drivers/acpi/acpica/hwesleep.c > index 5e5f762..6834dd7 100644 > --- a/drivers/acpi/acpica/hwesleep.c > +++ b/drivers/acpi/acpica/hwesleep.c > @@ -43,6 +43,7 @@ > */ > > #include <acpi/acpi.h> > +#include <linux/acpi.h> > #include "accommon.h" > > #define _COMPONENT ACPI_HARDWARE > @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 > sleep_state) > > ACPI_FLUSH_CPU_CACHE(); > > + status = acpi_os_prepare_sleep(sleep_state, acpi_gbl_sleep_type_a, > + acpi_gbl_sleep_type_b, true); > + if (ACPI_SKIP(status)) > + return_ACPI_STATUS(AE_OK); > + if (ACPI_FAILURE(status)) > + return_ACPI_STATUS(status); > + > /* > * Set the SLP_TYP and SLP_EN bits. > * > diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c > index e3828cc..a93c299 100644 > --- a/drivers/acpi/acpica/hwsleep.c > +++ b/drivers/acpi/acpica/hwsleep.c > @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) > ACPI_FLUSH_CPU_CACHE(); > > status = acpi_os_prepare_sleep(sleep_state, pm1a_control, > - pm1b_control); > + pm1b_control, false); > if (ACPI_SKIP(status)) > return_ACPI_STATUS(AE_OK); > if (ACPI_FAILURE(status)) > diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c > index e721863..3fc2801 100644 > --- a/drivers/acpi/osl.c > +++ b/drivers/acpi/osl.c > @@ -77,8 +77,8 @@ EXPORT_SYMBOL(acpi_in_debugger); > extern char line_buf[80]; > #endif /*ENABLE_DEBUGGER */ > > -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, > - u32 pm1b_ctrl); > +static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 val_a, u32 val_b, > + u8 extended); > > static acpi_osd_handler acpi_irq_handler; > static void *acpi_irq_context; > @@ -1757,13 +1757,13 @@ acpi_status acpi_os_terminate(void) > return AE_OK; > } > > -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, > - u32 pm1b_control) > +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, > + u8 extended) > { > int rc = 0; > if (__acpi_os_prepare_sleep) > - rc = __acpi_os_prepare_sleep(sleep_state, > - pm1a_control, pm1b_control); > + rc = __acpi_os_prepare_sleep(sleep_state, val_a, val_b, > + extended); > if (rc < 0) > return AE_ERROR; > else if (rc > 0) > @@ -1772,8 +1772,8 @@ acpi_status acpi_os_prepare_sleep(u8 sleep_state, > u32 pm1a_control, > return AE_OK; > } > > -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > - u32 pm1a_ctrl, u32 pm1b_ctrl)) > +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, > + u32 val_b, u8 extended)) > { > __acpi_os_prepare_sleep = func; > } > diff --git a/include/linux/acpi.h b/include/linux/acpi.h > index 17b5b59..de99022 100644 > --- a/include/linux/acpi.h > +++ b/include/linux/acpi.h > @@ -477,11 +477,11 @@ static inline bool acpi_driver_match_device(struct > device *dev, > #endif /* !CONFIG_ACPI */ > > #ifdef CONFIG_ACPI > -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > - u32 pm1a_ctrl, u32 pm1b_ctrl)); > +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, > + u32 val_b, u8 extended)); > > -acpi_status acpi_os_prepare_sleep(u8 sleep_state, > - u32 pm1a_control, u32 pm1b_control); > +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, > + u8 extended); > #ifdef CONFIG_X86 > void arch_reserve_mem_area(acpi_physical_address addr, size_t size); > #else > @@ -491,7 +491,7 @@ static inline void > arch_reserve_mem_area(acpi_physical_address addr, > } > #endif /* CONFIG_X86 */ > #else > -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do { } while > (0) > +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do { } while (0) > #endif > > #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) > -- > 1.7.9.5 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-acpi" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html
Ben Guthro
2013-Jul-02 11:42 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
On 07/02/2013 02:19 AM, Zheng, Lv wrote:> Thanks for your efforts! > > I wonder if it is possible to remove the argument - "u8 extended" and convert "pm1a_control, pm1b_control" into some u8 values that are equivalent to "acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b" in the legacy sleep path. > It can also simplify Xen codes.Thanks for your time to review this. I''m not sure that this simplifies things. I think that, in fact, it would make them quite a bit more complicated, but perhaps I misunderstand. Is it not preferred to use the reduced hardware sleep, over the old method? While these register definitions may be equivalent below, doing the translation in linux, only to translate them back again at a lower layer seems unnecessary. The hypervisor knows how to deal with both the reduced hardware sleep as well as the legacy sleep path - it merely need to distinguish these two paths, when performing the hypercall. Since there are two paths through the higher level ACPICA code - that in hwsleep.c, and hwesleep.c - there needs to be some distinction between the two paths, when calling through to the lower level acpi_os_prepare_sleep() call. An alternate method would be to create another interface named acpi_os_prepare_esleep() which would do the equivalent of this patch series, with an "extended" parameter hidden from upper level interfaces. This, however, would also add another function to include/acpi/acpiosxf.h - which, I thought was undesirable, in the impression that I got from Bob Moore, and Rafael Wysocki (though, please correct me on this point, if I have misunderstood) Best Regards Ben> > As in ACPI specification, the bit definitions between the legacy sleep registers and the extended sleep registers are equivalent. > > The legacy sleep register definition: > Table 4-16 PM1 Status Registers Fixed Hardware Feature Status Bits - WAK_STS(bit 15) > Table 4-18 PM1 Control Registers Fixed Hardware Feature Control Bits - SLP_TYPx (bit 10-12), SLP_EN (bit 13) > > The extended sleep register definition: > Table 4-24 Sleep Control Register - SLP_TYPx (3 bits from offset 2), SLP_EN (1 bit from offset 5), here 10-8 = 2, and 13-8 = 5, this definition is equivalent to Table 4-18. > Table 4-25 Sleep Status Register - WAK_STS (1 bit 7), 15-8 = 7, this definition is equivalent to Table 4-16. > > Thanks and best regards > -Lv > >> -----Original Message----- >> From: linux-acpi-owner@vger.kernel.org >> [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Ben Guthro >> Sent: Wednesday, June 26, 2013 10:06 PM >> To: Konrad Rzeszutek Wilk; Jan Beulich; Rafaell J . Wysocki; >> linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; >> xen-devel@lists.xen.org >> Cc: Ben Guthro; Moore, Robert >> Subject: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced >> hardware sleep path >> >> In version 3.4 acpi_os_prepare_sleep() got introduced in parallel with >> reduced hardware sleep support, and the two changes didn''t get >> synchronized: The new code doesn''t call the hook function (if so >> requested). Fix this, requiring a parameter to be added to the >> hook function to distinguish "extended" from "legacy" sleep. >> >> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> >> Signed-off-by: Jan Beulich <jbeulich@suse.com> >> Cc: Bob Moore <robert.moore@intel.com> >> Cc: Rafaell J. Wysocki <rjw@sisk.pl> >> Cc: linux-acpi@vger.kernel.org >> --- >> drivers/acpi/acpica/hwesleep.c | 8 ++++++++ >> drivers/acpi/acpica/hwsleep.c | 2 +- >> drivers/acpi/osl.c | 16 ++++++++-------- >> include/linux/acpi.h | 10 +++++----- >> 4 files changed, 22 insertions(+), 14 deletions(-) >> >> diff --git a/drivers/acpi/acpica/hwesleep.c b/drivers/acpi/acpica/hwesleep.c >> index 5e5f762..6834dd7 100644 >> --- a/drivers/acpi/acpica/hwesleep.c >> +++ b/drivers/acpi/acpica/hwesleep.c >> @@ -43,6 +43,7 @@ >> */ >> >> #include <acpi/acpi.h> >> +#include <linux/acpi.h> >> #include "accommon.h" >> >> #define _COMPONENT ACPI_HARDWARE >> @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 >> sleep_state) >> >> ACPI_FLUSH_CPU_CACHE(); >> >> + status = acpi_os_prepare_sleep(sleep_state, acpi_gbl_sleep_type_a, >> + acpi_gbl_sleep_type_b, true); >> + if (ACPI_SKIP(status)) >> + return_ACPI_STATUS(AE_OK); >> + if (ACPI_FAILURE(status)) >> + return_ACPI_STATUS(status); >> + >> /* >> * Set the SLP_TYP and SLP_EN bits. >> * >> diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c >> index e3828cc..a93c299 100644 >> --- a/drivers/acpi/acpica/hwsleep.c >> +++ b/drivers/acpi/acpica/hwsleep.c >> @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) >> ACPI_FLUSH_CPU_CACHE(); >> >> status = acpi_os_prepare_sleep(sleep_state, pm1a_control, >> - pm1b_control); >> + pm1b_control, false); >> if (ACPI_SKIP(status)) >> return_ACPI_STATUS(AE_OK); >> if (ACPI_FAILURE(status)) >> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c >> index e721863..3fc2801 100644 >> --- a/drivers/acpi/osl.c >> +++ b/drivers/acpi/osl.c >> @@ -77,8 +77,8 @@ EXPORT_SYMBOL(acpi_in_debugger); >> extern char line_buf[80]; >> #endif /*ENABLE_DEBUGGER */ >> >> -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, >> - u32 pm1b_ctrl); >> +static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 val_a, u32 val_b, >> + u8 extended); >> >> static acpi_osd_handler acpi_irq_handler; >> static void *acpi_irq_context; >> @@ -1757,13 +1757,13 @@ acpi_status acpi_os_terminate(void) >> return AE_OK; >> } >> >> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, >> - u32 pm1b_control) >> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, >> + u8 extended) >> { >> int rc = 0; >> if (__acpi_os_prepare_sleep) >> - rc = __acpi_os_prepare_sleep(sleep_state, >> - pm1a_control, pm1b_control); >> + rc = __acpi_os_prepare_sleep(sleep_state, val_a, val_b, >> + extended); >> if (rc < 0) >> return AE_ERROR; >> else if (rc > 0) >> @@ -1772,8 +1772,8 @@ acpi_status acpi_os_prepare_sleep(u8 sleep_state, >> u32 pm1a_control, >> return AE_OK; >> } >> >> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >> - u32 pm1a_ctrl, u32 pm1b_ctrl)) >> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, >> + u32 val_b, u8 extended)) >> { >> __acpi_os_prepare_sleep = func; >> } >> diff --git a/include/linux/acpi.h b/include/linux/acpi.h >> index 17b5b59..de99022 100644 >> --- a/include/linux/acpi.h >> +++ b/include/linux/acpi.h >> @@ -477,11 +477,11 @@ static inline bool acpi_driver_match_device(struct >> device *dev, >> #endif /* !CONFIG_ACPI */ >> >> #ifdef CONFIG_ACPI >> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >> - u32 pm1a_ctrl, u32 pm1b_ctrl)); >> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, >> + u32 val_b, u8 extended)); >> >> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, >> - u32 pm1a_control, u32 pm1b_control); >> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, >> + u8 extended); >> #ifdef CONFIG_X86 >> void arch_reserve_mem_area(acpi_physical_address addr, size_t size); >> #else >> @@ -491,7 +491,7 @@ static inline void >> arch_reserve_mem_area(acpi_physical_address addr, >> } >> #endif /* CONFIG_X86 */ >> #else >> -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do { } while >> (0) >> +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do { } while (0) >> #endif >> >> #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) >> -- >> 1.7.9.5 >> >> -- >> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in >> the body of a message to majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html
Zheng, Lv
2013-Jul-24 06:24 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
Hi, Sorry for the delayed response.> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] > Sent: Tuesday, July 02, 2013 7:43 PM > > > On 07/02/2013 02:19 AM, Zheng, Lv wrote: > > Thanks for your efforts! > > > > I wonder if it is possible to remove the argument - "u8 extended" and convert > "pm1a_control, pm1b_control" into some u8 values that are equivalent to > "acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b" in the legacy sleep path. > > It can also simplify Xen codes. > > Thanks for your time to review this. > > I''m not sure that this simplifies things. I think that, in fact, it would make them > quite a bit more complicated, but perhaps I misunderstand. > > Is it not preferred to use the reduced hardware sleep, over the old method? > While these register definitions may be equivalent below, doing the translation > in linux, only to translate them back again at a lower layer seems unnecessary. >Yes, it would require tboot layer to be able to be aware of how such fields locate in the PM registers. So I think you can pass the register address of the field and the field name/value pair to the tboot, this could simplify things, no lower layer effort will be needed. Please don''t worry about the case that a register field could be split into PM1a and PM1b, it could be a hardware design issue. IMO, one field should always be in one register, either PM1a or PM1b. Or there could be hardware issues cannot be addressed by the ACPICA architecture (something like natural atomicity). But maybe I''m wrong. Thanks and best regards -Lv> The hypervisor knows how to deal with both the reduced hardware sleep as > well as the legacy sleep path - it merely need to distinguish these two paths, > when performing the hypercall. > > Since there are two paths through the higher level ACPICA code - that in > hwsleep.c, and hwesleep.c - there needs to be some distinction between the > two paths, when calling through to the lower level > acpi_os_prepare_sleep() call. > > An alternate method would be to create another interface named > acpi_os_prepare_esleep() which would do the equivalent of this patch series, > with an "extended" parameter hidden from upper level interfaces. > > This, however, would also add another function to include/acpi/acpiosxf.h - > which, I thought was undesirable, in the impression that I got from Bob Moore, > and Rafael Wysocki (though, please correct me on this point, if I have > misunderstood) > > Best Regards > > Ben > > > > > As in ACPI specification, the bit definitions between the legacy sleep registers > and the extended sleep registers are equivalent. > > > > The legacy sleep register definition: > > Table 4-16 PM1 Status Registers Fixed Hardware Feature Status Bits - > > WAK_STS(bit 15) Table 4-18 PM1 Control Registers Fixed Hardware > > Feature Control Bits - SLP_TYPx (bit 10-12), SLP_EN (bit 13) > > > > The extended sleep register definition: > > Table 4-24 Sleep Control Register - SLP_TYPx (3 bits from offset 2), SLP_EN (1 > bit from offset 5), here 10-8 = 2, and 13-8 = 5, this definition is equivalent to > Table 4-18. > > Table 4-25 Sleep Status Register - WAK_STS (1 bit 7), 15-8 = 7, this definition is > equivalent to Table 4-16. > > > > Thanks and best regards > > -Lv > > > >> -----Original Message----- > >> From: linux-acpi-owner@vger.kernel.org > >> [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Ben Guthro > >> Sent: Wednesday, June 26, 2013 10:06 PM > >> To: Konrad Rzeszutek Wilk; Jan Beulich; Rafaell J . Wysocki; > >> linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; > >> xen-devel@lists.xen.org > >> Cc: Ben Guthro; Moore, Robert > >> Subject: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in > >> reduced hardware sleep path > >> > >> In version 3.4 acpi_os_prepare_sleep() got introduced in parallel > >> with reduced hardware sleep support, and the two changes didn''t get > >> synchronized: The new code doesn''t call the hook function (if so > >> requested). Fix this, requiring a parameter to be added to the hook > >> function to distinguish "extended" from "legacy" sleep. > >> > >> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> > >> Signed-off-by: Jan Beulich <jbeulich@suse.com> > >> Cc: Bob Moore <robert.moore@intel.com> > >> Cc: Rafaell J. Wysocki <rjw@sisk.pl> > >> Cc: linux-acpi@vger.kernel.org > >> --- > >> drivers/acpi/acpica/hwesleep.c | 8 ++++++++ > >> drivers/acpi/acpica/hwsleep.c | 2 +- > >> drivers/acpi/osl.c | 16 ++++++++-------- > >> include/linux/acpi.h | 10 +++++----- > >> 4 files changed, 22 insertions(+), 14 deletions(-) > >> > >> diff --git a/drivers/acpi/acpica/hwesleep.c > >> b/drivers/acpi/acpica/hwesleep.c index 5e5f762..6834dd7 100644 > >> --- a/drivers/acpi/acpica/hwesleep.c > >> +++ b/drivers/acpi/acpica/hwesleep.c > >> @@ -43,6 +43,7 @@ > >> */ > >> > >> #include <acpi/acpi.h> > >> +#include <linux/acpi.h> > >> #include "accommon.h" > >> > >> #define _COMPONENT ACPI_HARDWARE > >> @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 > >> sleep_state) > >> > >> ACPI_FLUSH_CPU_CACHE(); > >> > >> + status = acpi_os_prepare_sleep(sleep_state, acpi_gbl_sleep_type_a, > >> + acpi_gbl_sleep_type_b, true); > >> + if (ACPI_SKIP(status)) > >> + return_ACPI_STATUS(AE_OK); > >> + if (ACPI_FAILURE(status)) > >> + return_ACPI_STATUS(status); > >> + > >> /* > >> * Set the SLP_TYP and SLP_EN bits. > >> * > >> diff --git a/drivers/acpi/acpica/hwsleep.c > >> b/drivers/acpi/acpica/hwsleep.c index e3828cc..a93c299 100644 > >> --- a/drivers/acpi/acpica/hwsleep.c > >> +++ b/drivers/acpi/acpica/hwsleep.c > >> @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) > >> ACPI_FLUSH_CPU_CACHE(); > >> > >> status = acpi_os_prepare_sleep(sleep_state, pm1a_control, > >> - pm1b_control); > >> + pm1b_control, false); > >> if (ACPI_SKIP(status)) > >> return_ACPI_STATUS(AE_OK); > >> if (ACPI_FAILURE(status)) > >> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index > >> e721863..3fc2801 100644 > >> --- a/drivers/acpi/osl.c > >> +++ b/drivers/acpi/osl.c > >> @@ -77,8 +77,8 @@ EXPORT_SYMBOL(acpi_in_debugger); > >> extern char line_buf[80]; > >> #endif /*ENABLE_DEBUGGER */ > >> > >> -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, > >> - u32 pm1b_ctrl); > >> +static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 val_a, u32 > val_b, > >> + u8 extended); > >> > >> static acpi_osd_handler acpi_irq_handler; > >> static void *acpi_irq_context; > >> @@ -1757,13 +1757,13 @@ acpi_status acpi_os_terminate(void) > >> return AE_OK; > >> } > >> > >> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, > >> - u32 pm1b_control) > >> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, > >> + u8 extended) > >> { > >> int rc = 0; > >> if (__acpi_os_prepare_sleep) > >> - rc = __acpi_os_prepare_sleep(sleep_state, > >> - pm1a_control, pm1b_control); > >> + rc = __acpi_os_prepare_sleep(sleep_state, val_a, val_b, > >> + extended); > >> if (rc < 0) > >> return AE_ERROR; > >> else if (rc > 0) > >> @@ -1772,8 +1772,8 @@ acpi_status acpi_os_prepare_sleep(u8 > >> sleep_state, > >> u32 pm1a_control, > >> return AE_OK; > >> } > >> > >> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > >> - u32 pm1a_ctrl, u32 pm1b_ctrl)) > >> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, > >> + u32 val_b, u8 extended)) > >> { > >> __acpi_os_prepare_sleep = func; > >> } > >> diff --git a/include/linux/acpi.h b/include/linux/acpi.h index > >> 17b5b59..de99022 100644 > >> --- a/include/linux/acpi.h > >> +++ b/include/linux/acpi.h > >> @@ -477,11 +477,11 @@ static inline bool > >> acpi_driver_match_device(struct device *dev, > >> #endif /* !CONFIG_ACPI */ > >> > >> #ifdef CONFIG_ACPI > >> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > >> - u32 pm1a_ctrl, u32 pm1b_ctrl)); > >> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, > >> + u32 val_b, u8 extended)); > >> > >> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, > >> - u32 pm1a_control, u32 pm1b_control); > >> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, > >> + u8 extended); > >> #ifdef CONFIG_X86 > >> void arch_reserve_mem_area(acpi_physical_address addr, size_t size); > >> #else > >> @@ -491,7 +491,7 @@ static inline void > >> arch_reserve_mem_area(acpi_physical_address addr, > >> } > >> #endif /* CONFIG_X86 */ > >> #else > >> -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do { } > >> while > >> (0) > >> +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do { } > >> +while (0) > >> #endif > >> > >> #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) > >> -- > >> 1.7.9.5 > >> > >> -- > >> To unsubscribe from this list: send the line "unsubscribe linux-acpi" > >> in the body of a message to majordomo@vger.kernel.org More majordomo > >> info at http://vger.kernel.org/majordomo-info.html
Ben Guthro
2013-Jul-24 12:01 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
On 07/24/2013 02:24 AM, Zheng, Lv wrote:> Hi, > > Sorry for the delayed response. > >> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] >> Sent: Tuesday, July 02, 2013 7:43 PM >> >> >> On 07/02/2013 02:19 AM, Zheng, Lv wrote: >>> Thanks for your efforts! >>> >>> I wonder if it is possible to remove the argument - "u8 extended" and convert >> "pm1a_control, pm1b_control" into some u8 values that are equivalent to >> "acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b" in the legacy sleep path. >>> It can also simplify Xen codes. >> >> Thanks for your time to review this. >> >> I''m not sure that this simplifies things. I think that, in fact, it would make them >> quite a bit more complicated, but perhaps I misunderstand. >> >> Is it not preferred to use the reduced hardware sleep, over the old method? >> While these register definitions may be equivalent below, doing the translation >> in linux, only to translate them back again at a lower layer seems unnecessary. >> > > Yes, it would require tboot layer to be able to be aware of how such fields locate in the PM registers. > So I think you can pass the register address of the field and the field name/value pair to the tboot, this could simplify things, no lower layer effort will be needed. > Please don''t worry about the case that a register field could be split into PM1a and PM1b, it could be a hardware design issue. > IMO, one field should always be in one register, either PM1a or PM1b. > Or there could be hardware issues cannot be addressed by the ACPICA architecture (something like natural atomicity). > But maybe I''m wrong.Again, I don''t think this simplifies things, but complicates them unnecessarily. Converting the reduced hardware sleep to the legacy sleep seems like it would be an unnecessary layer of translation. The interface now simply passes the information from ACPICA down to the lower layers (xen, tboot) - and then lets them worry about the reduced hardware implementation. FWIW, xen has shipped with this implemetation, and enterprise kernels using the traditional xen kernel (like Suse) are making use of it. It may benefit tboot, in this case, but not Xen. I personally see it as an undesirable complication. Best regards, Ben> > Thanks and best regards > -Lv > >> The hypervisor knows how to deal with both the reduced hardware sleep as >> well as the legacy sleep path - it merely need to distinguish these two paths, >> when performing the hypercall. >> >> Since there are two paths through the higher level ACPICA code - that in >> hwsleep.c, and hwesleep.c - there needs to be some distinction between the >> two paths, when calling through to the lower level >> acpi_os_prepare_sleep() call. >> >> An alternate method would be to create another interface named >> acpi_os_prepare_esleep() which would do the equivalent of this patch series, >> with an "extended" parameter hidden from upper level interfaces. >> >> This, however, would also add another function to include/acpi/acpiosxf.h - >> which, I thought was undesirable, in the impression that I got from Bob Moore, >> and Rafael Wysocki (though, please correct me on this point, if I have >> misunderstood) >> >> Best Regards >> >> Ben >> >>> >>> As in ACPI specification, the bit definitions between the legacy sleep registers >> and the extended sleep registers are equivalent. >>> >>> The legacy sleep register definition: >>> Table 4-16 PM1 Status Registers Fixed Hardware Feature Status Bits - >>> WAK_STS(bit 15) Table 4-18 PM1 Control Registers Fixed Hardware >>> Feature Control Bits - SLP_TYPx (bit 10-12), SLP_EN (bit 13) >>> >>> The extended sleep register definition: >>> Table 4-24 Sleep Control Register - SLP_TYPx (3 bits from offset 2), SLP_EN (1 >> bit from offset 5), here 10-8 = 2, and 13-8 = 5, this definition is equivalent to >> Table 4-18. >>> Table 4-25 Sleep Status Register - WAK_STS (1 bit 7), 15-8 = 7, this definition is >> equivalent to Table 4-16. >>> >>> Thanks and best regards >>> -Lv >>> >>>> -----Original Message----- >>>> From: linux-acpi-owner@vger.kernel.org >>>> [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Ben Guthro >>>> Sent: Wednesday, June 26, 2013 10:06 PM >>>> To: Konrad Rzeszutek Wilk; Jan Beulich; Rafaell J . Wysocki; >>>> linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; >>>> xen-devel@lists.xen.org >>>> Cc: Ben Guthro; Moore, Robert >>>> Subject: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in >>>> reduced hardware sleep path >>>> >>>> In version 3.4 acpi_os_prepare_sleep() got introduced in parallel >>>> with reduced hardware sleep support, and the two changes didn''t get >>>> synchronized: The new code doesn''t call the hook function (if so >>>> requested). Fix this, requiring a parameter to be added to the hook >>>> function to distinguish "extended" from "legacy" sleep. >>>> >>>> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> >>>> Signed-off-by: Jan Beulich <jbeulich@suse.com> >>>> Cc: Bob Moore <robert.moore@intel.com> >>>> Cc: Rafaell J. Wysocki <rjw@sisk.pl> >>>> Cc: linux-acpi@vger.kernel.org >>>> --- >>>> drivers/acpi/acpica/hwesleep.c | 8 ++++++++ >>>> drivers/acpi/acpica/hwsleep.c | 2 +- >>>> drivers/acpi/osl.c | 16 ++++++++-------- >>>> include/linux/acpi.h | 10 +++++----- >>>> 4 files changed, 22 insertions(+), 14 deletions(-) >>>> >>>> diff --git a/drivers/acpi/acpica/hwesleep.c >>>> b/drivers/acpi/acpica/hwesleep.c index 5e5f762..6834dd7 100644 >>>> --- a/drivers/acpi/acpica/hwesleep.c >>>> +++ b/drivers/acpi/acpica/hwesleep.c >>>> @@ -43,6 +43,7 @@ >>>> */ >>>> >>>> #include <acpi/acpi.h> >>>> +#include <linux/acpi.h> >>>> #include "accommon.h" >>>> >>>> #define _COMPONENT ACPI_HARDWARE >>>> @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 >>>> sleep_state) >>>> >>>> ACPI_FLUSH_CPU_CACHE(); >>>> >>>> + status = acpi_os_prepare_sleep(sleep_state, acpi_gbl_sleep_type_a, >>>> + acpi_gbl_sleep_type_b, true); >>>> + if (ACPI_SKIP(status)) >>>> + return_ACPI_STATUS(AE_OK); >>>> + if (ACPI_FAILURE(status)) >>>> + return_ACPI_STATUS(status); >>>> + >>>> /* >>>> * Set the SLP_TYP and SLP_EN bits. >>>> * >>>> diff --git a/drivers/acpi/acpica/hwsleep.c >>>> b/drivers/acpi/acpica/hwsleep.c index e3828cc..a93c299 100644 >>>> --- a/drivers/acpi/acpica/hwsleep.c >>>> +++ b/drivers/acpi/acpica/hwsleep.c >>>> @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) >>>> ACPI_FLUSH_CPU_CACHE(); >>>> >>>> status = acpi_os_prepare_sleep(sleep_state, pm1a_control, >>>> - pm1b_control); >>>> + pm1b_control, false); >>>> if (ACPI_SKIP(status)) >>>> return_ACPI_STATUS(AE_OK); >>>> if (ACPI_FAILURE(status)) >>>> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index >>>> e721863..3fc2801 100644 >>>> --- a/drivers/acpi/osl.c >>>> +++ b/drivers/acpi/osl.c >>>> @@ -77,8 +77,8 @@ EXPORT_SYMBOL(acpi_in_debugger); >>>> extern char line_buf[80]; >>>> #endif /*ENABLE_DEBUGGER */ >>>> >>>> -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, >>>> - u32 pm1b_ctrl); >>>> +static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 val_a, u32 >> val_b, >>>> + u8 extended); >>>> >>>> static acpi_osd_handler acpi_irq_handler; >>>> static void *acpi_irq_context; >>>> @@ -1757,13 +1757,13 @@ acpi_status acpi_os_terminate(void) >>>> return AE_OK; >>>> } >>>> >>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, >>>> - u32 pm1b_control) >>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, >>>> + u8 extended) >>>> { >>>> int rc = 0; >>>> if (__acpi_os_prepare_sleep) >>>> - rc = __acpi_os_prepare_sleep(sleep_state, >>>> - pm1a_control, pm1b_control); >>>> + rc = __acpi_os_prepare_sleep(sleep_state, val_a, val_b, >>>> + extended); >>>> if (rc < 0) >>>> return AE_ERROR; >>>> else if (rc > 0) >>>> @@ -1772,8 +1772,8 @@ acpi_status acpi_os_prepare_sleep(u8 >>>> sleep_state, >>>> u32 pm1a_control, >>>> return AE_OK; >>>> } >>>> >>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)) >>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, >>>> + u32 val_b, u8 extended)) >>>> { >>>> __acpi_os_prepare_sleep = func; >>>> } >>>> diff --git a/include/linux/acpi.h b/include/linux/acpi.h index >>>> 17b5b59..de99022 100644 >>>> --- a/include/linux/acpi.h >>>> +++ b/include/linux/acpi.h >>>> @@ -477,11 +477,11 @@ static inline bool >>>> acpi_driver_match_device(struct device *dev, >>>> #endif /* !CONFIG_ACPI */ >>>> >>>> #ifdef CONFIG_ACPI >>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)); >>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 val_a, >>>> + u32 val_b, u8 extended)); >>>> >>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, >>>> - u32 pm1a_control, u32 pm1b_control); >>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 val_b, >>>> + u8 extended); >>>> #ifdef CONFIG_X86 >>>> void arch_reserve_mem_area(acpi_physical_address addr, size_t size); >>>> #else >>>> @@ -491,7 +491,7 @@ static inline void >>>> arch_reserve_mem_area(acpi_physical_address addr, >>>> } >>>> #endif /* CONFIG_X86 */ >>>> #else >>>> -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do { } >>>> while >>>> (0) >>>> +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do { } >>>> +while (0) >>>> #endif >>>> >>>> #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) >>>> -- >>>> 1.7.9.5 >>>> >>>> -- >>>> To unsubscribe from this list: send the line "unsubscribe linux-acpi" >>>> in the body of a message to majordomo@vger.kernel.org More majordomo >>>> info at http://vger.kernel.org/majordomo-info.html
Moore, Robert
2013-Jul-24 13:18 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
I have not looked closely at this, but we typically do things like this in ACPICA so that they only need to be implemented once to support all of the various acpica-hosted operating systems - linux, solaris, hp-ux, apple, freebsd, etc. -- even if they could be implemented "cleaner" in some way on any given host.> -----Original Message----- > From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] > Sent: Wednesday, July 24, 2013 5:01 AM > To: Zheng, Lv > Cc: Konrad Rzeszutek Wilk; Jan Beulich; Rafael J . Wysocki; linux- > kernel@vger.kernel.org; linux-acpi@vger.kernel.org; xen- > devel@lists.xen.org; Moore, Robert > Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in > reduced hardware sleep path > > > > On 07/24/2013 02:24 AM, Zheng, Lv wrote: > > Hi, > > > > Sorry for the delayed response. > > > >> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] > >> Sent: Tuesday, July 02, 2013 7:43 PM > >> > >> > >> On 07/02/2013 02:19 AM, Zheng, Lv wrote: > >>> Thanks for your efforts! > >>> > >>> I wonder if it is possible to remove the argument - "u8 extended" > >>> and convert > >> "pm1a_control, pm1b_control" into some u8 values that are equivalent > >> to "acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b" in the legacy sleep > path. > >>> It can also simplify Xen codes. > >> > >> Thanks for your time to review this. > >> > >> I''m not sure that this simplifies things. I think that, in fact, it > >> would make them quite a bit more complicated, but perhaps I > misunderstand. > >> > >> Is it not preferred to use the reduced hardware sleep, over the old > method? > >> While these register definitions may be equivalent below, doing the > >> translation in linux, only to translate them back again at a lower > layer seems unnecessary. > >> > > > > Yes, it would require tboot layer to be able to be aware of how such > fields locate in the PM registers. > > So I think you can pass the register address of the field and the field > name/value pair to the tboot, this could simplify things, no lower layer > effort will be needed. > > Please don''t worry about the case that a register field could be split > into PM1a and PM1b, it could be a hardware design issue. > > IMO, one field should always be in one register, either PM1a or PM1b. > > Or there could be hardware issues cannot be addressed by the ACPICA > architecture (something like natural atomicity). > > But maybe I''m wrong. > > Again, I don''t think this simplifies things, but complicates them > unnecessarily. Converting the reduced hardware sleep to the legacy sleep > seems like it would be an unnecessary layer of translation. > > The interface now simply passes the information from ACPICA down to the > lower layers (xen, tboot) - and then lets them worry about the reduced > hardware implementation. > > FWIW, xen has shipped with this implemetation, and enterprise kernels > using the traditional xen kernel (like Suse) are making use of it. > > It may benefit tboot, in this case, but not Xen. > > I personally see it as an undesirable complication. > > Best regards, > Ben > > > > > Thanks and best regards > > -Lv > > > >> The hypervisor knows how to deal with both the reduced hardware sleep > >> as well as the legacy sleep path - it merely need to distinguish > >> these two paths, when performing the hypercall. > >> > >> Since there are two paths through the higher level ACPICA code - that > >> in hwsleep.c, and hwesleep.c - there needs to be some distinction > >> between the two paths, when calling through to the lower level > >> acpi_os_prepare_sleep() call. > >> > >> An alternate method would be to create another interface named > >> acpi_os_prepare_esleep() which would do the equivalent of this patch > >> series, with an "extended" parameter hidden from upper level > interfaces. > >> > >> This, however, would also add another function to > >> include/acpi/acpiosxf.h - which, I thought was undesirable, in the > >> impression that I got from Bob Moore, and Rafael Wysocki (though, > >> please correct me on this point, if I have > >> misunderstood) > >> > >> Best Regards > >> > >> Ben > >> > >>> > >>> As in ACPI specification, the bit definitions between the legacy > >>> sleep registers > >> and the extended sleep registers are equivalent. > >>> > >>> The legacy sleep register definition: > >>> Table 4-16 PM1 Status Registers Fixed Hardware Feature Status Bits - > >>> WAK_STS(bit 15) Table 4-18 PM1 Control Registers Fixed Hardware > >>> Feature Control Bits - SLP_TYPx (bit 10-12), SLP_EN (bit 13) > >>> > >>> The extended sleep register definition: > >>> Table 4-24 Sleep Control Register - SLP_TYPx (3 bits from offset 2), > >>> SLP_EN (1 > >> bit from offset 5), here 10-8 = 2, and 13-8 = 5, this definition is > >> equivalent to Table 4-18. > >>> Table 4-25 Sleep Status Register - WAK_STS (1 bit 7), 15-8 = 7, this > >>> definition is > >> equivalent to Table 4-16. > >>> > >>> Thanks and best regards > >>> -Lv > >>> > >>>> -----Original Message----- > >>>> From: linux-acpi-owner@vger.kernel.org > >>>> [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Ben Guthro > >>>> Sent: Wednesday, June 26, 2013 10:06 PM > >>>> To: Konrad Rzeszutek Wilk; Jan Beulich; Rafaell J . Wysocki; > >>>> linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; > >>>> xen-devel@lists.xen.org > >>>> Cc: Ben Guthro; Moore, Robert > >>>> Subject: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in > >>>> reduced hardware sleep path > >>>> > >>>> In version 3.4 acpi_os_prepare_sleep() got introduced in parallel > >>>> with reduced hardware sleep support, and the two changes didn''t get > >>>> synchronized: The new code doesn''t call the hook function (if so > >>>> requested). Fix this, requiring a parameter to be added to the hook > >>>> function to distinguish "extended" from "legacy" sleep. > >>>> > >>>> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> > >>>> Signed-off-by: Jan Beulich <jbeulich@suse.com> > >>>> Cc: Bob Moore <robert.moore@intel.com> > >>>> Cc: Rafaell J. Wysocki <rjw@sisk.pl> > >>>> Cc: linux-acpi@vger.kernel.org > >>>> --- > >>>> drivers/acpi/acpica/hwesleep.c | 8 ++++++++ > >>>> drivers/acpi/acpica/hwsleep.c | 2 +- > >>>> drivers/acpi/osl.c | 16 ++++++++-------- > >>>> include/linux/acpi.h | 10 +++++----- > >>>> 4 files changed, 22 insertions(+), 14 deletions(-) > >>>> > >>>> diff --git a/drivers/acpi/acpica/hwesleep.c > >>>> b/drivers/acpi/acpica/hwesleep.c index 5e5f762..6834dd7 100644 > >>>> --- a/drivers/acpi/acpica/hwesleep.c > >>>> +++ b/drivers/acpi/acpica/hwesleep.c > >>>> @@ -43,6 +43,7 @@ > >>>> */ > >>>> > >>>> #include <acpi/acpi.h> > >>>> +#include <linux/acpi.h> > >>>> #include "accommon.h" > >>>> > >>>> #define _COMPONENT ACPI_HARDWARE > >>>> @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 > >>>> sleep_state) > >>>> > >>>> ACPI_FLUSH_CPU_CACHE(); > >>>> > >>>> + status = acpi_os_prepare_sleep(sleep_state, > acpi_gbl_sleep_type_a, > >>>> + acpi_gbl_sleep_type_b, true); > >>>> + if (ACPI_SKIP(status)) > >>>> + return_ACPI_STATUS(AE_OK); > >>>> + if (ACPI_FAILURE(status)) > >>>> + return_ACPI_STATUS(status); > >>>> + > >>>> /* > >>>> * Set the SLP_TYP and SLP_EN bits. > >>>> * > >>>> diff --git a/drivers/acpi/acpica/hwsleep.c > >>>> b/drivers/acpi/acpica/hwsleep.c index e3828cc..a93c299 100644 > >>>> --- a/drivers/acpi/acpica/hwsleep.c > >>>> +++ b/drivers/acpi/acpica/hwsleep.c > >>>> @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) > >>>> ACPI_FLUSH_CPU_CACHE(); > >>>> > >>>> status = acpi_os_prepare_sleep(sleep_state, pm1a_control, > >>>> - pm1b_control); > >>>> + pm1b_control, false); > >>>> if (ACPI_SKIP(status)) > >>>> return_ACPI_STATUS(AE_OK); > >>>> if (ACPI_FAILURE(status)) > >>>> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index > >>>> e721863..3fc2801 100644 > >>>> --- a/drivers/acpi/osl.c > >>>> +++ b/drivers/acpi/osl.c > >>>> @@ -77,8 +77,8 @@ EXPORT_SYMBOL(acpi_in_debugger); > >>>> extern char line_buf[80]; > >>>> #endif /*ENABLE_DEBUGGER */ > >>>> > >>>> -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, > >>>> - u32 pm1b_ctrl); > >>>> +static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 val_a, > >>>> +u32 > >> val_b, > >>>> + u8 extended); > >>>> > >>>> static acpi_osd_handler acpi_irq_handler; > >>>> static void *acpi_irq_context; > >>>> @@ -1757,13 +1757,13 @@ acpi_status acpi_os_terminate(void) > >>>> return AE_OK; > >>>> } > >>>> > >>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, > >>>> - u32 pm1b_control) > >>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 > val_b, > >>>> + u8 extended) > >>>> { > >>>> int rc = 0; > >>>> if (__acpi_os_prepare_sleep) > >>>> - rc = __acpi_os_prepare_sleep(sleep_state, > >>>> - pm1a_control, pm1b_control); > >>>> + rc = __acpi_os_prepare_sleep(sleep_state, val_a, val_b, > >>>> + extended); > >>>> if (rc < 0) > >>>> return AE_ERROR; > >>>> else if (rc > 0) > >>>> @@ -1772,8 +1772,8 @@ acpi_status acpi_os_prepare_sleep(u8 > >>>> sleep_state, > >>>> u32 pm1a_control, > >>>> return AE_OK; > >>>> } > >>>> > >>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > >>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)) > >>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 > val_a, > >>>> + u32 val_b, u8 extended)) > >>>> { > >>>> __acpi_os_prepare_sleep = func; > >>>> } > >>>> diff --git a/include/linux/acpi.h b/include/linux/acpi.h index > >>>> 17b5b59..de99022 100644 > >>>> --- a/include/linux/acpi.h > >>>> +++ b/include/linux/acpi.h > >>>> @@ -477,11 +477,11 @@ static inline bool > >>>> acpi_driver_match_device(struct device *dev, > >>>> #endif /* !CONFIG_ACPI */ > >>>> > >>>> #ifdef CONFIG_ACPI > >>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > >>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)); > >>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 > val_a, > >>>> + u32 val_b, u8 extended)); > >>>> > >>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, > >>>> - u32 pm1a_control, u32 pm1b_control); > >>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 > val_b, > >>>> + u8 extended); > >>>> #ifdef CONFIG_X86 > >>>> void arch_reserve_mem_area(acpi_physical_address addr, size_t > size); > >>>> #else > >>>> @@ -491,7 +491,7 @@ static inline void > >>>> arch_reserve_mem_area(acpi_physical_address addr, > >>>> } > >>>> #endif /* CONFIG_X86 */ > >>>> #else > >>>> -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do { > >>>> } while > >>>> (0) > >>>> +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do { } > >>>> +while (0) > >>>> #endif > >>>> > >>>> #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) > >>>> -- > >>>> 1.7.9.5 > >>>> > >>>> -- > >>>> To unsubscribe from this list: send the line "unsubscribe linux-acpi" > >>>> in the body of a message to majordomo@vger.kernel.org More > >>>> majordomo info at http://vger.kernel.org/majordomo-info.html
Ben Guthro
2013-Jul-24 13:23 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
On 07/24/2013 09:18 AM, Moore, Robert wrote:> I have not looked closely at this, but we typically do things like this in ACPICA so that they only need to be implemented once to support all of the various acpica-hosted operating systems - linux, solaris, hp-ux, apple, freebsd, etc. -- even if they could be implemented "cleaner" in some way on any given host.Even when the resulting "simplification" results in reduced functionality? Maybe I am misunderstanding the suggestion...but it sounded like it was basically to mimic the traditional behavior, and mask out the reduced hardware capabilities on these system types. It seems to me that if the system supports the reduced hardware ACPI sleep, you would want to make use of it...> > > >> -----Original Message----- >> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] >> Sent: Wednesday, July 24, 2013 5:01 AM >> To: Zheng, Lv >> Cc: Konrad Rzeszutek Wilk; Jan Beulich; Rafael J . Wysocki; linux- >> kernel@vger.kernel.org; linux-acpi@vger.kernel.org; xen- >> devel@lists.xen.org; Moore, Robert >> Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in >> reduced hardware sleep path >> >> >> >> On 07/24/2013 02:24 AM, Zheng, Lv wrote: >>> Hi, >>> >>> Sorry for the delayed response. >>> >>>> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] >>>> Sent: Tuesday, July 02, 2013 7:43 PM >>>> >>>> >>>> On 07/02/2013 02:19 AM, Zheng, Lv wrote: >>>>> Thanks for your efforts! >>>>> >>>>> I wonder if it is possible to remove the argument - "u8 extended" >>>>> and convert >>>> "pm1a_control, pm1b_control" into some u8 values that are equivalent >>>> to "acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b" in the legacy sleep >> path. >>>>> It can also simplify Xen codes. >>>> >>>> Thanks for your time to review this. >>>> >>>> I''m not sure that this simplifies things. I think that, in fact, it >>>> would make them quite a bit more complicated, but perhaps I >> misunderstand. >>>> >>>> Is it not preferred to use the reduced hardware sleep, over the old >> method? >>>> While these register definitions may be equivalent below, doing the >>>> translation in linux, only to translate them back again at a lower >> layer seems unnecessary. >>>> >>> >>> Yes, it would require tboot layer to be able to be aware of how such >> fields locate in the PM registers. >>> So I think you can pass the register address of the field and the field >> name/value pair to the tboot, this could simplify things, no lower layer >> effort will be needed. >>> Please don''t worry about the case that a register field could be split >> into PM1a and PM1b, it could be a hardware design issue. >>> IMO, one field should always be in one register, either PM1a or PM1b. >>> Or there could be hardware issues cannot be addressed by the ACPICA >> architecture (something like natural atomicity). >>> But maybe I''m wrong. >> >> Again, I don''t think this simplifies things, but complicates them >> unnecessarily. Converting the reduced hardware sleep to the legacy sleep >> seems like it would be an unnecessary layer of translation. >> >> The interface now simply passes the information from ACPICA down to the >> lower layers (xen, tboot) - and then lets them worry about the reduced >> hardware implementation. >> >> FWIW, xen has shipped with this implemetation, and enterprise kernels >> using the traditional xen kernel (like Suse) are making use of it. >> >> It may benefit tboot, in this case, but not Xen. >> >> I personally see it as an undesirable complication. >> >> Best regards, >> Ben >> >>> >>> Thanks and best regards >>> -Lv >>> >>>> The hypervisor knows how to deal with both the reduced hardware sleep >>>> as well as the legacy sleep path - it merely need to distinguish >>>> these two paths, when performing the hypercall. >>>> >>>> Since there are two paths through the higher level ACPICA code - that >>>> in hwsleep.c, and hwesleep.c - there needs to be some distinction >>>> between the two paths, when calling through to the lower level >>>> acpi_os_prepare_sleep() call. >>>> >>>> An alternate method would be to create another interface named >>>> acpi_os_prepare_esleep() which would do the equivalent of this patch >>>> series, with an "extended" parameter hidden from upper level >> interfaces. >>>> >>>> This, however, would also add another function to >>>> include/acpi/acpiosxf.h - which, I thought was undesirable, in the >>>> impression that I got from Bob Moore, and Rafael Wysocki (though, >>>> please correct me on this point, if I have >>>> misunderstood) >>>> >>>> Best Regards >>>> >>>> Ben >>>> >>>>> >>>>> As in ACPI specification, the bit definitions between the legacy >>>>> sleep registers >>>> and the extended sleep registers are equivalent. >>>>> >>>>> The legacy sleep register definition: >>>>> Table 4-16 PM1 Status Registers Fixed Hardware Feature Status Bits - >>>>> WAK_STS(bit 15) Table 4-18 PM1 Control Registers Fixed Hardware >>>>> Feature Control Bits - SLP_TYPx (bit 10-12), SLP_EN (bit 13) >>>>> >>>>> The extended sleep register definition: >>>>> Table 4-24 Sleep Control Register - SLP_TYPx (3 bits from offset 2), >>>>> SLP_EN (1 >>>> bit from offset 5), here 10-8 = 2, and 13-8 = 5, this definition is >>>> equivalent to Table 4-18. >>>>> Table 4-25 Sleep Status Register - WAK_STS (1 bit 7), 15-8 = 7, this >>>>> definition is >>>> equivalent to Table 4-16. >>>>> >>>>> Thanks and best regards >>>>> -Lv >>>>> >>>>>> -----Original Message----- >>>>>> From: linux-acpi-owner@vger.kernel.org >>>>>> [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Ben Guthro >>>>>> Sent: Wednesday, June 26, 2013 10:06 PM >>>>>> To: Konrad Rzeszutek Wilk; Jan Beulich; Rafaell J . Wysocki; >>>>>> linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; >>>>>> xen-devel@lists.xen.org >>>>>> Cc: Ben Guthro; Moore, Robert >>>>>> Subject: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in >>>>>> reduced hardware sleep path >>>>>> >>>>>> In version 3.4 acpi_os_prepare_sleep() got introduced in parallel >>>>>> with reduced hardware sleep support, and the two changes didn''t get >>>>>> synchronized: The new code doesn''t call the hook function (if so >>>>>> requested). Fix this, requiring a parameter to be added to the hook >>>>>> function to distinguish "extended" from "legacy" sleep. >>>>>> >>>>>> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> >>>>>> Signed-off-by: Jan Beulich <jbeulich@suse.com> >>>>>> Cc: Bob Moore <robert.moore@intel.com> >>>>>> Cc: Rafaell J. Wysocki <rjw@sisk.pl> >>>>>> Cc: linux-acpi@vger.kernel.org >>>>>> --- >>>>>> drivers/acpi/acpica/hwesleep.c | 8 ++++++++ >>>>>> drivers/acpi/acpica/hwsleep.c | 2 +- >>>>>> drivers/acpi/osl.c | 16 ++++++++-------- >>>>>> include/linux/acpi.h | 10 +++++----- >>>>>> 4 files changed, 22 insertions(+), 14 deletions(-) >>>>>> >>>>>> diff --git a/drivers/acpi/acpica/hwesleep.c >>>>>> b/drivers/acpi/acpica/hwesleep.c index 5e5f762..6834dd7 100644 >>>>>> --- a/drivers/acpi/acpica/hwesleep.c >>>>>> +++ b/drivers/acpi/acpica/hwesleep.c >>>>>> @@ -43,6 +43,7 @@ >>>>>> */ >>>>>> >>>>>> #include <acpi/acpi.h> >>>>>> +#include <linux/acpi.h> >>>>>> #include "accommon.h" >>>>>> >>>>>> #define _COMPONENT ACPI_HARDWARE >>>>>> @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 >>>>>> sleep_state) >>>>>> >>>>>> ACPI_FLUSH_CPU_CACHE(); >>>>>> >>>>>> + status = acpi_os_prepare_sleep(sleep_state, >> acpi_gbl_sleep_type_a, >>>>>> + acpi_gbl_sleep_type_b, true); >>>>>> + if (ACPI_SKIP(status)) >>>>>> + return_ACPI_STATUS(AE_OK); >>>>>> + if (ACPI_FAILURE(status)) >>>>>> + return_ACPI_STATUS(status); >>>>>> + >>>>>> /* >>>>>> * Set the SLP_TYP and SLP_EN bits. >>>>>> * >>>>>> diff --git a/drivers/acpi/acpica/hwsleep.c >>>>>> b/drivers/acpi/acpica/hwsleep.c index e3828cc..a93c299 100644 >>>>>> --- a/drivers/acpi/acpica/hwsleep.c >>>>>> +++ b/drivers/acpi/acpica/hwsleep.c >>>>>> @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) >>>>>> ACPI_FLUSH_CPU_CACHE(); >>>>>> >>>>>> status = acpi_os_prepare_sleep(sleep_state, pm1a_control, >>>>>> - pm1b_control); >>>>>> + pm1b_control, false); >>>>>> if (ACPI_SKIP(status)) >>>>>> return_ACPI_STATUS(AE_OK); >>>>>> if (ACPI_FAILURE(status)) >>>>>> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index >>>>>> e721863..3fc2801 100644 >>>>>> --- a/drivers/acpi/osl.c >>>>>> +++ b/drivers/acpi/osl.c >>>>>> @@ -77,8 +77,8 @@ EXPORT_SYMBOL(acpi_in_debugger); >>>>>> extern char line_buf[80]; >>>>>> #endif /*ENABLE_DEBUGGER */ >>>>>> >>>>>> -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, >>>>>> - u32 pm1b_ctrl); >>>>>> +static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 val_a, >>>>>> +u32 >>>> val_b, >>>>>> + u8 extended); >>>>>> >>>>>> static acpi_osd_handler acpi_irq_handler; >>>>>> static void *acpi_irq_context; >>>>>> @@ -1757,13 +1757,13 @@ acpi_status acpi_os_terminate(void) >>>>>> return AE_OK; >>>>>> } >>>>>> >>>>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, >>>>>> - u32 pm1b_control) >>>>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 >> val_b, >>>>>> + u8 extended) >>>>>> { >>>>>> int rc = 0; >>>>>> if (__acpi_os_prepare_sleep) >>>>>> - rc = __acpi_os_prepare_sleep(sleep_state, >>>>>> - pm1a_control, pm1b_control); >>>>>> + rc = __acpi_os_prepare_sleep(sleep_state, val_a, val_b, >>>>>> + extended); >>>>>> if (rc < 0) >>>>>> return AE_ERROR; >>>>>> else if (rc > 0) >>>>>> @@ -1772,8 +1772,8 @@ acpi_status acpi_os_prepare_sleep(u8 >>>>>> sleep_state, >>>>>> u32 pm1a_control, >>>>>> return AE_OK; >>>>>> } >>>>>> >>>>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >>>>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)) >>>>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 >> val_a, >>>>>> + u32 val_b, u8 extended)) >>>>>> { >>>>>> __acpi_os_prepare_sleep = func; >>>>>> } >>>>>> diff --git a/include/linux/acpi.h b/include/linux/acpi.h index >>>>>> 17b5b59..de99022 100644 >>>>>> --- a/include/linux/acpi.h >>>>>> +++ b/include/linux/acpi.h >>>>>> @@ -477,11 +477,11 @@ static inline bool >>>>>> acpi_driver_match_device(struct device *dev, >>>>>> #endif /* !CONFIG_ACPI */ >>>>>> >>>>>> #ifdef CONFIG_ACPI >>>>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >>>>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)); >>>>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 >> val_a, >>>>>> + u32 val_b, u8 extended)); >>>>>> >>>>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, >>>>>> - u32 pm1a_control, u32 pm1b_control); >>>>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 >> val_b, >>>>>> + u8 extended); >>>>>> #ifdef CONFIG_X86 >>>>>> void arch_reserve_mem_area(acpi_physical_address addr, size_t >> size); >>>>>> #else >>>>>> @@ -491,7 +491,7 @@ static inline void >>>>>> arch_reserve_mem_area(acpi_physical_address addr, >>>>>> } >>>>>> #endif /* CONFIG_X86 */ >>>>>> #else >>>>>> -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do { >>>>>> } while >>>>>> (0) >>>>>> +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do { } >>>>>> +while (0) >>>>>> #endif >>>>>> >>>>>> #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) >>>>>> -- >>>>>> 1.7.9.5 >>>>>> >>>>>> -- >>>>>> To unsubscribe from this list: send the line "unsubscribe linux-acpi" >>>>>> in the body of a message to majordomo@vger.kernel.org More >>>>>> majordomo info at http://vger.kernel.org/majordomo-info.html
Moore, Robert
2013-Jul-24 14:38 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
I haven''t found a high-level description of "acpi_os_prepare_sleep", perhaps I missed it. Can someone point me to the overall description of this change and why it is being considered? Thanks, Bob> -----Original Message----- > From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] > Sent: Wednesday, July 24, 2013 6:23 AM > To: Moore, Robert > Cc: Zheng, Lv; Konrad Rzeszutek Wilk; Jan Beulich; Rafael J . Wysocki; > linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; xen- > devel@lists.xen.org > Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in > reduced hardware sleep path > > On 07/24/2013 09:18 AM, Moore, Robert wrote: > > I have not looked closely at this, but we typically do things like this > in ACPICA so that they only need to be implemented once to support all of > the various acpica-hosted operating systems - linux, solaris, hp-ux, > apple, freebsd, etc. -- even if they could be implemented "cleaner" in > some way on any given host. > > Even when the resulting "simplification" results in reduced functionality? > > Maybe I am misunderstanding the suggestion...but it sounded like it was > basically to mimic the traditional behavior, and mask out the reduced > hardware capabilities on these system types. > > It seems to me that if the system supports the reduced hardware ACPI > sleep, you would want to make use of it... > > > > > > > > > > >> -----Original Message----- > >> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] > >> Sent: Wednesday, July 24, 2013 5:01 AM > >> To: Zheng, Lv > >> Cc: Konrad Rzeszutek Wilk; Jan Beulich; Rafael J . Wysocki; linux- > >> kernel@vger.kernel.org; linux-acpi@vger.kernel.org; xen- > >> devel@lists.xen.org; Moore, Robert > >> Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in > >> reduced hardware sleep path > >> > >> > >> > >> On 07/24/2013 02:24 AM, Zheng, Lv wrote: > >>> Hi, > >>> > >>> Sorry for the delayed response. > >>> > >>>> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] > >>>> Sent: Tuesday, July 02, 2013 7:43 PM > >>>> > >>>> > >>>> On 07/02/2013 02:19 AM, Zheng, Lv wrote: > >>>>> Thanks for your efforts! > >>>>> > >>>>> I wonder if it is possible to remove the argument - "u8 extended" > >>>>> and convert > >>>> "pm1a_control, pm1b_control" into some u8 values that are > >>>> equivalent to "acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b" in the > >>>> legacy sleep > >> path. > >>>>> It can also simplify Xen codes. > >>>> > >>>> Thanks for your time to review this. > >>>> > >>>> I''m not sure that this simplifies things. I think that, in fact, it > >>>> would make them quite a bit more complicated, but perhaps I > >> misunderstand. > >>>> > >>>> Is it not preferred to use the reduced hardware sleep, over the old > >> method? > >>>> While these register definitions may be equivalent below, doing the > >>>> translation in linux, only to translate them back again at a lower > >> layer seems unnecessary. > >>>> > >>> > >>> Yes, it would require tboot layer to be able to be aware of how such > >> fields locate in the PM registers. > >>> So I think you can pass the register address of the field and the > >>> field > >> name/value pair to the tboot, this could simplify things, no lower > >> layer effort will be needed. > >>> Please don''t worry about the case that a register field could be > >>> split > >> into PM1a and PM1b, it could be a hardware design issue. > >>> IMO, one field should always be in one register, either PM1a or PM1b. > >>> Or there could be hardware issues cannot be addressed by the ACPICA > >> architecture (something like natural atomicity). > >>> But maybe I''m wrong. > >> > >> Again, I don''t think this simplifies things, but complicates them > >> unnecessarily. Converting the reduced hardware sleep to the legacy > >> sleep seems like it would be an unnecessary layer of translation. > >> > >> The interface now simply passes the information from ACPICA down to > >> the lower layers (xen, tboot) - and then lets them worry about the > >> reduced hardware implementation. > >> > >> FWIW, xen has shipped with this implemetation, and enterprise kernels > >> using the traditional xen kernel (like Suse) are making use of it. > >> > >> It may benefit tboot, in this case, but not Xen. > >> > >> I personally see it as an undesirable complication. > >> > >> Best regards, > >> Ben > >> > >>> > >>> Thanks and best regards > >>> -Lv > >>> > >>>> The hypervisor knows how to deal with both the reduced hardware > >>>> sleep as well as the legacy sleep path - it merely need to > >>>> distinguish these two paths, when performing the hypercall. > >>>> > >>>> Since there are two paths through the higher level ACPICA code - > >>>> that in hwsleep.c, and hwesleep.c - there needs to be some > >>>> distinction between the two paths, when calling through to the > >>>> lower level > >>>> acpi_os_prepare_sleep() call. > >>>> > >>>> An alternate method would be to create another interface named > >>>> acpi_os_prepare_esleep() which would do the equivalent of this > >>>> patch series, with an "extended" parameter hidden from upper level > >> interfaces. > >>>> > >>>> This, however, would also add another function to > >>>> include/acpi/acpiosxf.h - which, I thought was undesirable, in the > >>>> impression that I got from Bob Moore, and Rafael Wysocki (though, > >>>> please correct me on this point, if I have > >>>> misunderstood) > >>>> > >>>> Best Regards > >>>> > >>>> Ben > >>>> > >>>>> > >>>>> As in ACPI specification, the bit definitions between the legacy > >>>>> sleep registers > >>>> and the extended sleep registers are equivalent. > >>>>> > >>>>> The legacy sleep register definition: > >>>>> Table 4-16 PM1 Status Registers Fixed Hardware Feature Status Bits > >>>>> - WAK_STS(bit 15) Table 4-18 PM1 Control Registers Fixed Hardware > >>>>> Feature Control Bits - SLP_TYPx (bit 10-12), SLP_EN (bit 13) > >>>>> > >>>>> The extended sleep register definition: > >>>>> Table 4-24 Sleep Control Register - SLP_TYPx (3 bits from offset > >>>>> 2), SLP_EN (1 > >>>> bit from offset 5), here 10-8 = 2, and 13-8 = 5, this definition is > >>>> equivalent to Table 4-18. > >>>>> Table 4-25 Sleep Status Register - WAK_STS (1 bit 7), 15-8 = 7, > >>>>> this definition is > >>>> equivalent to Table 4-16. > >>>>> > >>>>> Thanks and best regards > >>>>> -Lv > >>>>> > >>>>>> -----Original Message----- > >>>>>> From: linux-acpi-owner@vger.kernel.org > >>>>>> [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Ben Guthro > >>>>>> Sent: Wednesday, June 26, 2013 10:06 PM > >>>>>> To: Konrad Rzeszutek Wilk; Jan Beulich; Rafaell J . Wysocki; > >>>>>> linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; > >>>>>> xen-devel@lists.xen.org > >>>>>> Cc: Ben Guthro; Moore, Robert > >>>>>> Subject: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in > >>>>>> reduced hardware sleep path > >>>>>> > >>>>>> In version 3.4 acpi_os_prepare_sleep() got introduced in parallel > >>>>>> with reduced hardware sleep support, and the two changes didn''t > >>>>>> get > >>>>>> synchronized: The new code doesn''t call the hook function (if so > >>>>>> requested). Fix this, requiring a parameter to be added to the > >>>>>> hook function to distinguish "extended" from "legacy" sleep. > >>>>>> > >>>>>> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> > >>>>>> Signed-off-by: Jan Beulich <jbeulich@suse.com> > >>>>>> Cc: Bob Moore <robert.moore@intel.com> > >>>>>> Cc: Rafaell J. Wysocki <rjw@sisk.pl> > >>>>>> Cc: linux-acpi@vger.kernel.org > >>>>>> --- > >>>>>> drivers/acpi/acpica/hwesleep.c | 8 ++++++++ > >>>>>> drivers/acpi/acpica/hwsleep.c | 2 +- > >>>>>> drivers/acpi/osl.c | 16 ++++++++-------- > >>>>>> include/linux/acpi.h | 10 +++++----- > >>>>>> 4 files changed, 22 insertions(+), 14 deletions(-) > >>>>>> > >>>>>> diff --git a/drivers/acpi/acpica/hwesleep.c > >>>>>> b/drivers/acpi/acpica/hwesleep.c index 5e5f762..6834dd7 100644 > >>>>>> --- a/drivers/acpi/acpica/hwesleep.c > >>>>>> +++ b/drivers/acpi/acpica/hwesleep.c > >>>>>> @@ -43,6 +43,7 @@ > >>>>>> */ > >>>>>> > >>>>>> #include <acpi/acpi.h> > >>>>>> +#include <linux/acpi.h> > >>>>>> #include "accommon.h" > >>>>>> > >>>>>> #define _COMPONENT ACPI_HARDWARE > >>>>>> @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 > >>>>>> sleep_state) > >>>>>> > >>>>>> ACPI_FLUSH_CPU_CACHE(); > >>>>>> > >>>>>> + status = acpi_os_prepare_sleep(sleep_state, > >> acpi_gbl_sleep_type_a, > >>>>>> + acpi_gbl_sleep_type_b, true); > >>>>>> + if (ACPI_SKIP(status)) > >>>>>> + return_ACPI_STATUS(AE_OK); > >>>>>> + if (ACPI_FAILURE(status)) > >>>>>> + return_ACPI_STATUS(status); > >>>>>> + > >>>>>> /* > >>>>>> * Set the SLP_TYP and SLP_EN bits. > >>>>>> * > >>>>>> diff --git a/drivers/acpi/acpica/hwsleep.c > >>>>>> b/drivers/acpi/acpica/hwsleep.c index e3828cc..a93c299 100644 > >>>>>> --- a/drivers/acpi/acpica/hwsleep.c > >>>>>> +++ b/drivers/acpi/acpica/hwsleep.c > >>>>>> @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 > sleep_state) > >>>>>> ACPI_FLUSH_CPU_CACHE(); > >>>>>> > >>>>>> status = acpi_os_prepare_sleep(sleep_state, pm1a_control, > >>>>>> - pm1b_control); > >>>>>> + pm1b_control, false); > >>>>>> if (ACPI_SKIP(status)) > >>>>>> return_ACPI_STATUS(AE_OK); > >>>>>> if (ACPI_FAILURE(status)) > >>>>>> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index > >>>>>> e721863..3fc2801 100644 > >>>>>> --- a/drivers/acpi/osl.c > >>>>>> +++ b/drivers/acpi/osl.c > >>>>>> @@ -77,8 +77,8 @@ EXPORT_SYMBOL(acpi_in_debugger); > >>>>>> extern char line_buf[80]; > >>>>>> #endif /*ENABLE_DEBUGGER */ > >>>>>> > >>>>>> -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 > pm1a_ctrl, > >>>>>> - u32 pm1b_ctrl); > >>>>>> +static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 val_a, > >>>>>> +u32 > >>>> val_b, > >>>>>> + u8 extended); > >>>>>> > >>>>>> static acpi_osd_handler acpi_irq_handler; > >>>>>> static void *acpi_irq_context; > >>>>>> @@ -1757,13 +1757,13 @@ acpi_status acpi_os_terminate(void) > >>>>>> return AE_OK; > >>>>>> } > >>>>>> > >>>>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 > pm1a_control, > >>>>>> - u32 pm1b_control) > >>>>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 > >> val_b, > >>>>>> + u8 extended) > >>>>>> { > >>>>>> int rc = 0; > >>>>>> if (__acpi_os_prepare_sleep) > >>>>>> - rc = __acpi_os_prepare_sleep(sleep_state, > >>>>>> - pm1a_control, pm1b_control); > >>>>>> + rc = __acpi_os_prepare_sleep(sleep_state, val_a, val_b, > >>>>>> + extended); > >>>>>> if (rc < 0) > >>>>>> return AE_ERROR; > >>>>>> else if (rc > 0) > >>>>>> @@ -1772,8 +1772,8 @@ acpi_status acpi_os_prepare_sleep(u8 > >>>>>> sleep_state, > >>>>>> u32 pm1a_control, > >>>>>> return AE_OK; > >>>>>> } > >>>>>> > >>>>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > >>>>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)) > >>>>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 > >> val_a, > >>>>>> + u32 val_b, u8 extended)) > >>>>>> { > >>>>>> __acpi_os_prepare_sleep = func; > >>>>>> } > >>>>>> diff --git a/include/linux/acpi.h b/include/linux/acpi.h index > >>>>>> 17b5b59..de99022 100644 > >>>>>> --- a/include/linux/acpi.h > >>>>>> +++ b/include/linux/acpi.h > >>>>>> @@ -477,11 +477,11 @@ static inline bool > >>>>>> acpi_driver_match_device(struct device *dev, > >>>>>> #endif /* !CONFIG_ACPI */ > >>>>>> > >>>>>> #ifdef CONFIG_ACPI > >>>>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > >>>>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)); > >>>>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 > >> val_a, > >>>>>> + u32 val_b, u8 extended)); > >>>>>> > >>>>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, > >>>>>> - u32 pm1a_control, u32 pm1b_control); > >>>>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 > >> val_b, > >>>>>> + u8 extended); > >>>>>> #ifdef CONFIG_X86 > >>>>>> void arch_reserve_mem_area(acpi_physical_address addr, size_t > >> size); > >>>>>> #else > >>>>>> @@ -491,7 +491,7 @@ static inline void > >>>>>> arch_reserve_mem_area(acpi_physical_address addr, > >>>>>> } > >>>>>> #endif /* CONFIG_X86 */ > >>>>>> #else > >>>>>> -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do > >>>>>> { } while > >>>>>> (0) > >>>>>> +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do { > >>>>>> +} while (0) > >>>>>> #endif > >>>>>> > >>>>>> #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) > >>>>>> -- > >>>>>> 1.7.9.5 > >>>>>> > >>>>>> -- > >>>>>> To unsubscribe from this list: send the line "unsubscribe linux- > acpi" > >>>>>> in the body of a message to majordomo@vger.kernel.org More > >>>>>> majordomo info at http://vger.kernel.org/majordomo-info.html
Ben Guthro
2013-Jul-24 15:14 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
On 07/24/2013 10:38 AM, Moore, Robert wrote:> I haven''t found a high-level description of "acpi_os_prepare_sleep", perhaps I missed it. > > Can someone point me to the overall description of this change and why it is being considered?Hi Bob, For this series, the v6 of this series does a decent job of what it is trying to accomplish: https://lkml.org/lkml/2013/7/1/205 However, I recognize that this does not really describe *why* acpi_os_prepare_sleep is necessary to begin with. For that, we need to go back a little more. The summary for the series that introduced it is a good description, of the reasons it is necessary: http://lkml.indiana.edu/hypermail/linux/kernel/1112.2/00450.html In summary though - in the case of Xen (and I believe this is also true in tboot) a value inappropriate for a VM (which dom0 is a special case of) was being written to cr3, and the physical machine would never come out of S3. This mechanism gives an os specific hook to do something else down at the lower levels, while still being able to take advantage of the large amount of OS independent code in ACPICA. I hope that this helps to clear up matters. If not, I''m happy to go into greater detail on any point, or get others involved if I cannot field the question appropriately. Thaks for your time Ben> > Thanks, > Bob > > >> -----Original Message----- >> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] >> Sent: Wednesday, July 24, 2013 6:23 AM >> To: Moore, Robert >> Cc: Zheng, Lv; Konrad Rzeszutek Wilk; Jan Beulich; Rafael J . Wysocki; >> linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; xen- >> devel@lists.xen.org >> Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in >> reduced hardware sleep path >> >> On 07/24/2013 09:18 AM, Moore, Robert wrote: >>> I have not looked closely at this, but we typically do things like this >> in ACPICA so that they only need to be implemented once to support all of >> the various acpica-hosted operating systems - linux, solaris, hp-ux, >> apple, freebsd, etc. -- even if they could be implemented "cleaner" in >> some way on any given host. >> >> Even when the resulting "simplification" results in reduced functionality? >> >> Maybe I am misunderstanding the suggestion...but it sounded like it was >> basically to mimic the traditional behavior, and mask out the reduced >> hardware capabilities on these system types. >> >> It seems to me that if the system supports the reduced hardware ACPI >> sleep, you would want to make use of it... >> >> >> >>> >>> >>> >>>> -----Original Message----- >>>> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] >>>> Sent: Wednesday, July 24, 2013 5:01 AM >>>> To: Zheng, Lv >>>> Cc: Konrad Rzeszutek Wilk; Jan Beulich; Rafael J . Wysocki; linux- >>>> kernel@vger.kernel.org; linux-acpi@vger.kernel.org; xen- >>>> devel@lists.xen.org; Moore, Robert >>>> Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in >>>> reduced hardware sleep path >>>> >>>> >>>> >>>> On 07/24/2013 02:24 AM, Zheng, Lv wrote: >>>>> Hi, >>>>> >>>>> Sorry for the delayed response. >>>>> >>>>>> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] >>>>>> Sent: Tuesday, July 02, 2013 7:43 PM >>>>>> >>>>>> >>>>>> On 07/02/2013 02:19 AM, Zheng, Lv wrote: >>>>>>> Thanks for your efforts! >>>>>>> >>>>>>> I wonder if it is possible to remove the argument - "u8 extended" >>>>>>> and convert >>>>>> "pm1a_control, pm1b_control" into some u8 values that are >>>>>> equivalent to "acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b" in the >>>>>> legacy sleep >>>> path. >>>>>>> It can also simplify Xen codes. >>>>>> >>>>>> Thanks for your time to review this. >>>>>> >>>>>> I''m not sure that this simplifies things. I think that, in fact, it >>>>>> would make them quite a bit more complicated, but perhaps I >>>> misunderstand. >>>>>> >>>>>> Is it not preferred to use the reduced hardware sleep, over the old >>>> method? >>>>>> While these register definitions may be equivalent below, doing the >>>>>> translation in linux, only to translate them back again at a lower >>>> layer seems unnecessary. >>>>>> >>>>> >>>>> Yes, it would require tboot layer to be able to be aware of how such >>>> fields locate in the PM registers. >>>>> So I think you can pass the register address of the field and the >>>>> field >>>> name/value pair to the tboot, this could simplify things, no lower >>>> layer effort will be needed. >>>>> Please don''t worry about the case that a register field could be >>>>> split >>>> into PM1a and PM1b, it could be a hardware design issue. >>>>> IMO, one field should always be in one register, either PM1a or PM1b. >>>>> Or there could be hardware issues cannot be addressed by the ACPICA >>>> architecture (something like natural atomicity). >>>>> But maybe I''m wrong. >>>> >>>> Again, I don''t think this simplifies things, but complicates them >>>> unnecessarily. Converting the reduced hardware sleep to the legacy >>>> sleep seems like it would be an unnecessary layer of translation. >>>> >>>> The interface now simply passes the information from ACPICA down to >>>> the lower layers (xen, tboot) - and then lets them worry about the >>>> reduced hardware implementation. >>>> >>>> FWIW, xen has shipped with this implemetation, and enterprise kernels >>>> using the traditional xen kernel (like Suse) are making use of it. >>>> >>>> It may benefit tboot, in this case, but not Xen. >>>> >>>> I personally see it as an undesirable complication. >>>> >>>> Best regards, >>>> Ben >>>> >>>>> >>>>> Thanks and best regards >>>>> -Lv >>>>> >>>>>> The hypervisor knows how to deal with both the reduced hardware >>>>>> sleep as well as the legacy sleep path - it merely need to >>>>>> distinguish these two paths, when performing the hypercall. >>>>>> >>>>>> Since there are two paths through the higher level ACPICA code - >>>>>> that in hwsleep.c, and hwesleep.c - there needs to be some >>>>>> distinction between the two paths, when calling through to the >>>>>> lower level >>>>>> acpi_os_prepare_sleep() call. >>>>>> >>>>>> An alternate method would be to create another interface named >>>>>> acpi_os_prepare_esleep() which would do the equivalent of this >>>>>> patch series, with an "extended" parameter hidden from upper level >>>> interfaces. >>>>>> >>>>>> This, however, would also add another function to >>>>>> include/acpi/acpiosxf.h - which, I thought was undesirable, in the >>>>>> impression that I got from Bob Moore, and Rafael Wysocki (though, >>>>>> please correct me on this point, if I have >>>>>> misunderstood) >>>>>> >>>>>> Best Regards >>>>>> >>>>>> Ben >>>>>> >>>>>>> >>>>>>> As in ACPI specification, the bit definitions between the legacy >>>>>>> sleep registers >>>>>> and the extended sleep registers are equivalent. >>>>>>> >>>>>>> The legacy sleep register definition: >>>>>>> Table 4-16 PM1 Status Registers Fixed Hardware Feature Status Bits >>>>>>> - WAK_STS(bit 15) Table 4-18 PM1 Control Registers Fixed Hardware >>>>>>> Feature Control Bits - SLP_TYPx (bit 10-12), SLP_EN (bit 13) >>>>>>> >>>>>>> The extended sleep register definition: >>>>>>> Table 4-24 Sleep Control Register - SLP_TYPx (3 bits from offset >>>>>>> 2), SLP_EN (1 >>>>>> bit from offset 5), here 10-8 = 2, and 13-8 = 5, this definition is >>>>>> equivalent to Table 4-18. >>>>>>> Table 4-25 Sleep Status Register - WAK_STS (1 bit 7), 15-8 = 7, >>>>>>> this definition is >>>>>> equivalent to Table 4-16. >>>>>>> >>>>>>> Thanks and best regards >>>>>>> -Lv >>>>>>> >>>>>>>> -----Original Message----- >>>>>>>> From: linux-acpi-owner@vger.kernel.org >>>>>>>> [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Ben Guthro >>>>>>>> Sent: Wednesday, June 26, 2013 10:06 PM >>>>>>>> To: Konrad Rzeszutek Wilk; Jan Beulich; Rafaell J . Wysocki; >>>>>>>> linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; >>>>>>>> xen-devel@lists.xen.org >>>>>>>> Cc: Ben Guthro; Moore, Robert >>>>>>>> Subject: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in >>>>>>>> reduced hardware sleep path >>>>>>>> >>>>>>>> In version 3.4 acpi_os_prepare_sleep() got introduced in parallel >>>>>>>> with reduced hardware sleep support, and the two changes didn''t >>>>>>>> get >>>>>>>> synchronized: The new code doesn''t call the hook function (if so >>>>>>>> requested). Fix this, requiring a parameter to be added to the >>>>>>>> hook function to distinguish "extended" from "legacy" sleep. >>>>>>>> >>>>>>>> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> >>>>>>>> Signed-off-by: Jan Beulich <jbeulich@suse.com> >>>>>>>> Cc: Bob Moore <robert.moore@intel.com> >>>>>>>> Cc: Rafaell J. Wysocki <rjw@sisk.pl> >>>>>>>> Cc: linux-acpi@vger.kernel.org >>>>>>>> --- >>>>>>>> drivers/acpi/acpica/hwesleep.c | 8 ++++++++ >>>>>>>> drivers/acpi/acpica/hwsleep.c | 2 +- >>>>>>>> drivers/acpi/osl.c | 16 ++++++++-------- >>>>>>>> include/linux/acpi.h | 10 +++++----- >>>>>>>> 4 files changed, 22 insertions(+), 14 deletions(-) >>>>>>>> >>>>>>>> diff --git a/drivers/acpi/acpica/hwesleep.c >>>>>>>> b/drivers/acpi/acpica/hwesleep.c index 5e5f762..6834dd7 100644 >>>>>>>> --- a/drivers/acpi/acpica/hwesleep.c >>>>>>>> +++ b/drivers/acpi/acpica/hwesleep.c >>>>>>>> @@ -43,6 +43,7 @@ >>>>>>>> */ >>>>>>>> >>>>>>>> #include <acpi/acpi.h> >>>>>>>> +#include <linux/acpi.h> >>>>>>>> #include "accommon.h" >>>>>>>> >>>>>>>> #define _COMPONENT ACPI_HARDWARE >>>>>>>> @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 >>>>>>>> sleep_state) >>>>>>>> >>>>>>>> ACPI_FLUSH_CPU_CACHE(); >>>>>>>> >>>>>>>> + status = acpi_os_prepare_sleep(sleep_state, >>>> acpi_gbl_sleep_type_a, >>>>>>>> + acpi_gbl_sleep_type_b, true); >>>>>>>> + if (ACPI_SKIP(status)) >>>>>>>> + return_ACPI_STATUS(AE_OK); >>>>>>>> + if (ACPI_FAILURE(status)) >>>>>>>> + return_ACPI_STATUS(status); >>>>>>>> + >>>>>>>> /* >>>>>>>> * Set the SLP_TYP and SLP_EN bits. >>>>>>>> * >>>>>>>> diff --git a/drivers/acpi/acpica/hwsleep.c >>>>>>>> b/drivers/acpi/acpica/hwsleep.c index e3828cc..a93c299 100644 >>>>>>>> --- a/drivers/acpi/acpica/hwsleep.c >>>>>>>> +++ b/drivers/acpi/acpica/hwsleep.c >>>>>>>> @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 >> sleep_state) >>>>>>>> ACPI_FLUSH_CPU_CACHE(); >>>>>>>> >>>>>>>> status = acpi_os_prepare_sleep(sleep_state, pm1a_control, >>>>>>>> - pm1b_control); >>>>>>>> + pm1b_control, false); >>>>>>>> if (ACPI_SKIP(status)) >>>>>>>> return_ACPI_STATUS(AE_OK); >>>>>>>> if (ACPI_FAILURE(status)) >>>>>>>> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index >>>>>>>> e721863..3fc2801 100644 >>>>>>>> --- a/drivers/acpi/osl.c >>>>>>>> +++ b/drivers/acpi/osl.c >>>>>>>> @@ -77,8 +77,8 @@ EXPORT_SYMBOL(acpi_in_debugger); >>>>>>>> extern char line_buf[80]; >>>>>>>> #endif /*ENABLE_DEBUGGER */ >>>>>>>> >>>>>>>> -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 >> pm1a_ctrl, >>>>>>>> - u32 pm1b_ctrl); >>>>>>>> +static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 val_a, >>>>>>>> +u32 >>>>>> val_b, >>>>>>>> + u8 extended); >>>>>>>> >>>>>>>> static acpi_osd_handler acpi_irq_handler; >>>>>>>> static void *acpi_irq_context; >>>>>>>> @@ -1757,13 +1757,13 @@ acpi_status acpi_os_terminate(void) >>>>>>>> return AE_OK; >>>>>>>> } >>>>>>>> >>>>>>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 >> pm1a_control, >>>>>>>> - u32 pm1b_control) >>>>>>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 >>>> val_b, >>>>>>>> + u8 extended) >>>>>>>> { >>>>>>>> int rc = 0; >>>>>>>> if (__acpi_os_prepare_sleep) >>>>>>>> - rc = __acpi_os_prepare_sleep(sleep_state, >>>>>>>> - pm1a_control, pm1b_control); >>>>>>>> + rc = __acpi_os_prepare_sleep(sleep_state, val_a, val_b, >>>>>>>> + extended); >>>>>>>> if (rc < 0) >>>>>>>> return AE_ERROR; >>>>>>>> else if (rc > 0) >>>>>>>> @@ -1772,8 +1772,8 @@ acpi_status acpi_os_prepare_sleep(u8 >>>>>>>> sleep_state, >>>>>>>> u32 pm1a_control, >>>>>>>> return AE_OK; >>>>>>>> } >>>>>>>> >>>>>>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >>>>>>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)) >>>>>>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 >>>> val_a, >>>>>>>> + u32 val_b, u8 extended)) >>>>>>>> { >>>>>>>> __acpi_os_prepare_sleep = func; >>>>>>>> } >>>>>>>> diff --git a/include/linux/acpi.h b/include/linux/acpi.h index >>>>>>>> 17b5b59..de99022 100644 >>>>>>>> --- a/include/linux/acpi.h >>>>>>>> +++ b/include/linux/acpi.h >>>>>>>> @@ -477,11 +477,11 @@ static inline bool >>>>>>>> acpi_driver_match_device(struct device *dev, >>>>>>>> #endif /* !CONFIG_ACPI */ >>>>>>>> >>>>>>>> #ifdef CONFIG_ACPI >>>>>>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >>>>>>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)); >>>>>>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 >>>> val_a, >>>>>>>> + u32 val_b, u8 extended)); >>>>>>>> >>>>>>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, >>>>>>>> - u32 pm1a_control, u32 pm1b_control); >>>>>>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, u32 >>>> val_b, >>>>>>>> + u8 extended); >>>>>>>> #ifdef CONFIG_X86 >>>>>>>> void arch_reserve_mem_area(acpi_physical_address addr, size_t >>>> size); >>>>>>>> #else >>>>>>>> @@ -491,7 +491,7 @@ static inline void >>>>>>>> arch_reserve_mem_area(acpi_physical_address addr, >>>>>>>> } >>>>>>>> #endif /* CONFIG_X86 */ >>>>>>>> #else >>>>>>>> -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do >>>>>>>> { } while >>>>>>>> (0) >>>>>>>> +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do { >>>>>>>> +} while (0) >>>>>>>> #endif >>>>>>>> >>>>>>>> #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) >>>>>>>> -- >>>>>>>> 1.7.9.5 >>>>>>>> >>>>>>>> -- >>>>>>>> To unsubscribe from this list: send the line "unsubscribe linux- >> acpi" >>>>>>>> in the body of a message to majordomo@vger.kernel.org More >>>>>>>> majordomo info at http://vger.kernel.org/majordomo-info.html
Konrad Rzeszutek Wilk
2013-Jul-24 16:32 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
On Wed, Jul 24, 2013 at 11:14:06AM -0400, Ben Guthro wrote:> > > On 07/24/2013 10:38 AM, Moore, Robert wrote: > > I haven''t found a high-level description of "acpi_os_prepare_sleep", perhaps I missed it. > > > > Can someone point me to the overall description of this change and why it is being considered? > > Hi Bob, > > For this series, the v6 of this series does a decent job of what it is > trying to accomplish: > https://lkml.org/lkml/2013/7/1/205 > > However, I recognize that this does not really describe *why* > acpi_os_prepare_sleep is necessary to begin with. For that, we need to > go back a little more. > > The summary for the series that introduced it is a good description, of > the reasons it is necessary: > http://lkml.indiana.edu/hypermail/linux/kernel/1112.2/00450.html > > In summary though - in the case of Xen (and I believe this is also true > in tboot) a value inappropriate for a VM (which dom0 is a special case > of) was being written to cr3, and the physical machine would never come > out of S3. > > This mechanism gives an os specific hook to do something else down at > the lower levels, while still being able to take advantage of the large > amount of OS independent code in ACPICA.It might be also prudent to look at original ''hook'' that was added by Intel in the Linux code to support TXT: commit 86886e55b273f565935491816c7c96b82469d4f8 Author: Joseph Cihula <joseph.cihula@intel.com> Date: Tue Jun 30 19:31:07 2009 -0700 x86, intel_txt: Intel TXT Sx shutdown support Support for graceful handling of sleep states (S3/S4/S5) after an Intel(R) TXT launch. Without this patch, attempting to place the system in one of the ACPI sleep states (S3/S4/S5) will cause the TXT hardware to treat this as an attack and will cause a system reset, with memory locked. Not only may the subsequent memory scrub take some time, but the platform will be unable to enter the requested power state. This patch calls back into the tboot so that it may properly and securely clean up system state and clear the secrets-in-memory flag, after which it will place the system into the requested sleep state using ACPI information passed by the kernel. arch/x86/kernel/smpboot.c | 2 ++ drivers/acpi/acpica/hwsleep.c | 3 +++ kernel/cpu.c | 7 ++++++- 3 files changed, 11 insertions(+), 1 deletion(-) Signed-off-by: Joseph Cihula <joseph.cihula@intel.com> Signed-off-by: Shane Wang <shane.wang@intel.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com> I suspect that if tboot was used with a different OS (Solaris?) it would hit the same case and a similar hook would be needed. Said ''hook'' (which was a call to tboot_sleep) was converted to be a more neutral ''acpi_os_prepare_sleep'' which tboot can use (and incidently Xen too). I think what Bob is saying that if said hook is neccessary (and I believe it is - and Intel TXT maintainer thinks so too since he added it in the first place), then the right way of adding it is via the ACPICA tree. Should the discussion for this be moved there ? (https://acpica.org/community) and an generic ''os_prepare_sleep'' patch added in git://github.com/acpica/acpica.git?
Zheng, Lv
2013-Jul-25 01:01 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
> From: Moore, Robert > Sent: Wednesday, July 24, 2013 10:39 PM > > I haven''t found a high-level description of "acpi_os_prepare_sleep", perhaps I > missed it.If we take a look at the declaration of this new OSL API, its name is acpi_os_prepare_sleep, but originally it only hacks two registers'' values. It is more like a Xen only hacking logic rather than an OSL API from ACPICA''s perspective. So the API declaration is just looking ugly to ACPICA, this has prevented this OSL API from being back ported to ACPICA for long time. If ACPICA merged this codes, then it could be very hard for ACPICA to do any future enhancement to modify the logic in the acpi_hw_legacy_sleep/acpi_hw_extended_sleep. Thus this is not clean for ACPICA, it will introduce unwanted software entropy to ACPICA. This patchset enhances the OSL API, but doesn''t make it cleaner, and just add a new parameter, it is a hack on top of the original hack. IMO, from ACPICA''s perspective, the OSL API should be designed to be re-used by any other OSPMs and might have more meaningful function declaration to ACPICA. OSPM codes like Xen can implement this OSL API. The Xen only hacking logic should be put inside the OSL API implementation. Hers is just a suggestion and I don''t know if this can work for Xen: status = acpi_os_prepare_sleep(u8 sleep_state); if (ACPI_SKIP(status)) ... And export: 1. acpi_gbl_sleep_type_a/acpi_gbl_sleep_type_b 2. acpi_gbl_reduced_hardware 3. acpi_hw_get_bit_register_info to be used by acpi_os_prepare_sleep. At least you can just copy the logic in the acpi_hw_legacy_sleep/acpi_hw_extended_sleep to the acpi_os_prepare_sleep. That kind of complexity is Xen''s complexity, you shouldn''t move this complexity to ACPICA just because you want Xen side codes to be simpler. If Xen and tboot already have knowledge about above what will actually happen to the "sleep_state", we don''t need to export them. This way might be better for both parties. Thanks and best regards -Lv> > Can someone point me to the overall description of this change and why it is > being considered? > > Thanks, > Bob > > > > -----Original Message----- > > From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] > > Sent: Wednesday, July 24, 2013 6:23 AM > > To: Moore, Robert > > Cc: Zheng, Lv; Konrad Rzeszutek Wilk; Jan Beulich; Rafael J . Wysocki; > > linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; xen- > > devel@lists.xen.org > > Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in > > reduced hardware sleep path > > > > On 07/24/2013 09:18 AM, Moore, Robert wrote: > > > I have not looked closely at this, but we typically do things like > > > this > > in ACPICA so that they only need to be implemented once to support all > > of the various acpica-hosted operating systems - linux, solaris, > > hp-ux, apple, freebsd, etc. -- even if they could be implemented > > "cleaner" in some way on any given host. > > > > Even when the resulting "simplification" results in reduced functionality? > > > > Maybe I am misunderstanding the suggestion...but it sounded like it > > was basically to mimic the traditional behavior, and mask out the > > reduced hardware capabilities on these system types. > > > > It seems to me that if the system supports the reduced hardware ACPI > > sleep, you would want to make use of it... > > > > > > > > > > > > > > > > > >> -----Original Message----- > > >> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] > > >> Sent: Wednesday, July 24, 2013 5:01 AM > > >> To: Zheng, Lv > > >> Cc: Konrad Rzeszutek Wilk; Jan Beulich; Rafael J . Wysocki; linux- > > >> kernel@vger.kernel.org; linux-acpi@vger.kernel.org; xen- > > >> devel@lists.xen.org; Moore, Robert > > >> Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook > > >> in reduced hardware sleep path > > >> > > >> > > >> > > >> On 07/24/2013 02:24 AM, Zheng, Lv wrote: > > >>> Hi, > > >>> > > >>> Sorry for the delayed response. > > >>> > > >>>> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] > > >>>> Sent: Tuesday, July 02, 2013 7:43 PM > > >>>> > > >>>> > > >>>> On 07/02/2013 02:19 AM, Zheng, Lv wrote: > > >>>>> Thanks for your efforts! > > >>>>> > > >>>>> I wonder if it is possible to remove the argument - "u8 extended" > > >>>>> and convert > > >>>> "pm1a_control, pm1b_control" into some u8 values that are > > >>>> equivalent to "acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b" in > > >>>> the legacy sleep > > >> path. > > >>>>> It can also simplify Xen codes. > > >>>> > > >>>> Thanks for your time to review this. > > >>>> > > >>>> I''m not sure that this simplifies things. I think that, in fact, > > >>>> it would make them quite a bit more complicated, but perhaps I > > >> misunderstand. > > >>>> > > >>>> Is it not preferred to use the reduced hardware sleep, over the > > >>>> old > > >> method? > > >>>> While these register definitions may be equivalent below, doing > > >>>> the translation in linux, only to translate them back again at a > > >>>> lower > > >> layer seems unnecessary. > > >>>> > > >>> > > >>> Yes, it would require tboot layer to be able to be aware of how > > >>> such > > >> fields locate in the PM registers. > > >>> So I think you can pass the register address of the field and the > > >>> field > > >> name/value pair to the tboot, this could simplify things, no lower > > >> layer effort will be needed. > > >>> Please don''t worry about the case that a register field could be > > >>> split > > >> into PM1a and PM1b, it could be a hardware design issue. > > >>> IMO, one field should always be in one register, either PM1a or PM1b. > > >>> Or there could be hardware issues cannot be addressed by the > > >>> ACPICA > > >> architecture (something like natural atomicity). > > >>> But maybe I''m wrong. > > >> > > >> Again, I don''t think this simplifies things, but complicates them > > >> unnecessarily. Converting the reduced hardware sleep to the legacy > > >> sleep seems like it would be an unnecessary layer of translation. > > >> > > >> The interface now simply passes the information from ACPICA down to > > >> the lower layers (xen, tboot) - and then lets them worry about the > > >> reduced hardware implementation. > > >> > > >> FWIW, xen has shipped with this implemetation, and enterprise > > >> kernels using the traditional xen kernel (like Suse) are making use of it. > > >> > > >> It may benefit tboot, in this case, but not Xen. > > >> > > >> I personally see it as an undesirable complication. > > >> > > >> Best regards, > > >> Ben > > >> > > >>> > > >>> Thanks and best regards > > >>> -Lv > > >>> > > >>>> The hypervisor knows how to deal with both the reduced hardware > > >>>> sleep as well as the legacy sleep path - it merely need to > > >>>> distinguish these two paths, when performing the hypercall. > > >>>> > > >>>> Since there are two paths through the higher level ACPICA code - > > >>>> that in hwsleep.c, and hwesleep.c - there needs to be some > > >>>> distinction between the two paths, when calling through to the > > >>>> lower level > > >>>> acpi_os_prepare_sleep() call. > > >>>> > > >>>> An alternate method would be to create another interface named > > >>>> acpi_os_prepare_esleep() which would do the equivalent of this > > >>>> patch series, with an "extended" parameter hidden from upper > > >>>> level > > >> interfaces. > > >>>> > > >>>> This, however, would also add another function to > > >>>> include/acpi/acpiosxf.h - which, I thought was undesirable, in > > >>>> the impression that I got from Bob Moore, and Rafael Wysocki > > >>>> (though, please correct me on this point, if I have > > >>>> misunderstood) > > >>>> > > >>>> Best Regards > > >>>> > > >>>> Ben > > >>>> > > >>>>> > > >>>>> As in ACPI specification, the bit definitions between the legacy > > >>>>> sleep registers > > >>>> and the extended sleep registers are equivalent. > > >>>>> > > >>>>> The legacy sleep register definition: > > >>>>> Table 4-16 PM1 Status Registers Fixed Hardware Feature Status > > >>>>> Bits > > >>>>> - WAK_STS(bit 15) Table 4-18 PM1 Control Registers Fixed > > >>>>> Hardware Feature Control Bits - SLP_TYPx (bit 10-12), SLP_EN > > >>>>> (bit 13) > > >>>>> > > >>>>> The extended sleep register definition: > > >>>>> Table 4-24 Sleep Control Register - SLP_TYPx (3 bits from offset > > >>>>> 2), SLP_EN (1 > > >>>> bit from offset 5), here 10-8 = 2, and 13-8 = 5, this definition > > >>>> is equivalent to Table 4-18. > > >>>>> Table 4-25 Sleep Status Register - WAK_STS (1 bit 7), 15-8 = 7, > > >>>>> this definition is > > >>>> equivalent to Table 4-16. > > >>>>> > > >>>>> Thanks and best regards > > >>>>> -Lv > > >>>>> > > >>>>>> -----Original Message----- > > >>>>>> From: linux-acpi-owner@vger.kernel.org > > >>>>>> [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Ben > > >>>>>> Guthro > > >>>>>> Sent: Wednesday, June 26, 2013 10:06 PM > > >>>>>> To: Konrad Rzeszutek Wilk; Jan Beulich; Rafaell J . Wysocki; > > >>>>>> linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; > > >>>>>> xen-devel@lists.xen.org > > >>>>>> Cc: Ben Guthro; Moore, Robert > > >>>>>> Subject: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook > > >>>>>> in reduced hardware sleep path > > >>>>>> > > >>>>>> In version 3.4 acpi_os_prepare_sleep() got introduced in > > >>>>>> parallel with reduced hardware sleep support, and the two > > >>>>>> changes didn''t get > > >>>>>> synchronized: The new code doesn''t call the hook function (if > > >>>>>> so requested). Fix this, requiring a parameter to be added to > > >>>>>> the hook function to distinguish "extended" from "legacy" sleep. > > >>>>>> > > >>>>>> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> > > >>>>>> Signed-off-by: Jan Beulich <jbeulich@suse.com> > > >>>>>> Cc: Bob Moore <robert.moore@intel.com> > > >>>>>> Cc: Rafaell J. Wysocki <rjw@sisk.pl> > > >>>>>> Cc: linux-acpi@vger.kernel.org > > >>>>>> --- > > >>>>>> drivers/acpi/acpica/hwesleep.c | 8 ++++++++ > > >>>>>> drivers/acpi/acpica/hwsleep.c | 2 +- > > >>>>>> drivers/acpi/osl.c | 16 ++++++++-------- > > >>>>>> include/linux/acpi.h | 10 +++++----- > > >>>>>> 4 files changed, 22 insertions(+), 14 deletions(-) > > >>>>>> > > >>>>>> diff --git a/drivers/acpi/acpica/hwesleep.c > > >>>>>> b/drivers/acpi/acpica/hwesleep.c index 5e5f762..6834dd7 100644 > > >>>>>> --- a/drivers/acpi/acpica/hwesleep.c > > >>>>>> +++ b/drivers/acpi/acpica/hwesleep.c > > >>>>>> @@ -43,6 +43,7 @@ > > >>>>>> */ > > >>>>>> > > >>>>>> #include <acpi/acpi.h> > > >>>>>> +#include <linux/acpi.h> > > >>>>>> #include "accommon.h" > > >>>>>> > > >>>>>> #define _COMPONENT ACPI_HARDWARE > > >>>>>> @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 > > >>>>>> sleep_state) > > >>>>>> > > >>>>>> ACPI_FLUSH_CPU_CACHE(); > > >>>>>> > > >>>>>> + status = acpi_os_prepare_sleep(sleep_state, > > >> acpi_gbl_sleep_type_a, > > >>>>>> + acpi_gbl_sleep_type_b, true); > > >>>>>> + if (ACPI_SKIP(status)) > > >>>>>> + return_ACPI_STATUS(AE_OK); > > >>>>>> + if (ACPI_FAILURE(status)) > > >>>>>> + return_ACPI_STATUS(status); > > >>>>>> + > > >>>>>> /* > > >>>>>> * Set the SLP_TYP and SLP_EN bits. > > >>>>>> * > > >>>>>> diff --git a/drivers/acpi/acpica/hwsleep.c > > >>>>>> b/drivers/acpi/acpica/hwsleep.c index e3828cc..a93c299 100644 > > >>>>>> --- a/drivers/acpi/acpica/hwsleep.c > > >>>>>> +++ b/drivers/acpi/acpica/hwsleep.c > > >>>>>> @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 > > sleep_state) > > >>>>>> ACPI_FLUSH_CPU_CACHE(); > > >>>>>> > > >>>>>> status = acpi_os_prepare_sleep(sleep_state, pm1a_control, > > >>>>>> - pm1b_control); > > >>>>>> + pm1b_control, false); > > >>>>>> if (ACPI_SKIP(status)) > > >>>>>> return_ACPI_STATUS(AE_OK); > > >>>>>> if (ACPI_FAILURE(status)) > > >>>>>> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index > > >>>>>> e721863..3fc2801 100644 > > >>>>>> --- a/drivers/acpi/osl.c > > >>>>>> +++ b/drivers/acpi/osl.c > > >>>>>> @@ -77,8 +77,8 @@ EXPORT_SYMBOL(acpi_in_debugger); > > >>>>>> extern char line_buf[80]; > > >>>>>> #endif /*ENABLE_DEBUGGER */ > > >>>>>> > > >>>>>> -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 > > pm1a_ctrl, > > >>>>>> - u32 pm1b_ctrl); > > >>>>>> +static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 > > >>>>>> +val_a, > > >>>>>> +u32 > > >>>> val_b, > > >>>>>> + u8 extended); > > >>>>>> > > >>>>>> static acpi_osd_handler acpi_irq_handler; > > >>>>>> static void *acpi_irq_context; @@ -1757,13 +1757,13 @@ > > >>>>>> acpi_status acpi_os_terminate(void) > > >>>>>> return AE_OK; > > >>>>>> } > > >>>>>> > > >>>>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 > > pm1a_control, > > >>>>>> - u32 pm1b_control) > > >>>>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, > > >>>>>> +u32 > > >> val_b, > > >>>>>> + u8 extended) > > >>>>>> { > > >>>>>> int rc = 0; > > >>>>>> if (__acpi_os_prepare_sleep) > > >>>>>> - rc = __acpi_os_prepare_sleep(sleep_state, > > >>>>>> - pm1a_control, pm1b_control); > > >>>>>> + rc = __acpi_os_prepare_sleep(sleep_state, val_a, val_b, > > >>>>>> + extended); > > >>>>>> if (rc < 0) > > >>>>>> return AE_ERROR; > > >>>>>> else if (rc > 0) > > >>>>>> @@ -1772,8 +1772,8 @@ acpi_status acpi_os_prepare_sleep(u8 > > >>>>>> sleep_state, > > >>>>>> u32 pm1a_control, > > >>>>>> return AE_OK; > > >>>>>> } > > >>>>>> > > >>>>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > > >>>>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)) > > >>>>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 > > >> val_a, > > >>>>>> + u32 val_b, u8 extended)) > > >>>>>> { > > >>>>>> __acpi_os_prepare_sleep = func; > > >>>>>> } > > >>>>>> diff --git a/include/linux/acpi.h b/include/linux/acpi.h index > > >>>>>> 17b5b59..de99022 100644 > > >>>>>> --- a/include/linux/acpi.h > > >>>>>> +++ b/include/linux/acpi.h > > >>>>>> @@ -477,11 +477,11 @@ static inline bool > > >>>>>> acpi_driver_match_device(struct device *dev, > > >>>>>> #endif /* !CONFIG_ACPI */ > > >>>>>> > > >>>>>> #ifdef CONFIG_ACPI > > >>>>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > > >>>>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)); > > >>>>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 > > >> val_a, > > >>>>>> + u32 val_b, u8 extended)); > > >>>>>> > > >>>>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, > > >>>>>> - u32 pm1a_control, u32 pm1b_control); > > >>>>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, > > >>>>>> +u32 > > >> val_b, > > >>>>>> + u8 extended); > > >>>>>> #ifdef CONFIG_X86 > > >>>>>> void arch_reserve_mem_area(acpi_physical_address addr, size_t > > >> size); > > >>>>>> #else > > >>>>>> @@ -491,7 +491,7 @@ static inline void > > >>>>>> arch_reserve_mem_area(acpi_physical_address addr, > > >>>>>> } > > >>>>>> #endif /* CONFIG_X86 */ > > >>>>>> #else > > >>>>>> -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) > > >>>>>> do { } while > > >>>>>> (0) > > >>>>>> +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do > > >>>>>> +{ } while (0) > > >>>>>> #endif > > >>>>>> > > >>>>>> #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) > > >>>>>> -- > > >>>>>> 1.7.9.5 > > >>>>>> > > >>>>>> -- > > >>>>>> To unsubscribe from this list: send the line "unsubscribe > > >>>>>> linux- > > acpi" > > >>>>>> in the body of a message to majordomo@vger.kernel.org More > > >>>>>> majordomo info at http://vger.kernel.org/majordomo-info.html
Ben Guthro
2013-Jul-25 01:19 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
On Jul 24, 2013, at 9:01 PM, "Zheng, Lv" <lv.zheng@intel.com> wrote:>> From: Moore, Robert >> Sent: Wednesday, July 24, 2013 10:39 PM >> >> I haven''t found a high-level description of "acpi_os_prepare_sleep", perhaps I >> missed it. > > If we take a look at the declaration of this new OSL API, its name is acpi_os_prepare_sleep, but originally it only hacks two registers'' values. > It is more like a Xen only hacking logic rather than an OSL API from ACPICA''s perspective.The feature was introduced by Intel, for tboot, not Xen. As pointed out by Konrad - If you implemented tboot on another OS, like Solaris, etc - this would be necessary.> So the API declaration is just looking ugly to ACPICA, this has prevented this OSL API from being back ported to ACPICA for long time. > If ACPICA merged this codes, then it could be very hard for ACPICA to do any future enhancement to modify the logic in the acpi_hw_legacy_sleep/acpi_hw_extended_sleep. > Thus this is not clean for ACPICA, it will introduce unwanted software entropy to ACPICA. > > This patchset enhances the OSL API, but doesn''t make it cleaner, and just add a new parameter, it is a hack on top of the original hack.The original hack, as you call it is abstracted away in other parts of ACPICA, in all of the acpi_os_* code, if I read it correctly. I''m not sure what makes this any different.> IMO, from ACPICA''s perspective, the OSL API should be designed to be re-used by any other OSPMs and might have more meaningful function declaration to ACPICA. > OSPM codes like Xen can implement this OSL API. The Xen only hacking logic should be put inside the OSL API implementation. >Again - not just for Xen.> Hers is just a suggestion and I don''t know if this can work for Xen: > > status = acpi_os_prepare_sleep(u8 sleep_state); > if (ACPI_SKIP(status)) > ... > > And export: > 1. acpi_gbl_sleep_type_a/acpi_gbl_sleep_type_b > 2. acpi_gbl_reduced_hardware > 3. acpi_hw_get_bit_register_info > to be used by acpi_os_prepare_sleep. > At least you can just copy the logic in the acpi_hw_legacy_sleep/acpi_hw_extended_sleep to the acpi_os_prepare_sleep. > That kind of complexity is Xen''s complexity, you shouldn''t move this complexity to ACPICA just because you want Xen side codes to be simpler. > If Xen and tboot already have knowledge about above what will actually happen to the "sleep_state", we don''t need to export them.I''m sorry, I don''t follow you here. I moved no complexity into ACPICA in order to make Xen simpler. In fact, I am arguing for the simpler interface, and smaller change in ACPICA. It merely needs to also happen in the new reduced hardware sleep path, as it is broken for existing systems...and indeed would also be broken for the tboot path.> > This way might be better for both parties. > > Thanks and best regards > -Lv > > >> >> Can someone point me to the overall description of this change and why it is >> being considered? >> >> Thanks, >> Bob >> >> >>> -----Original Message----- >>> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] >>> Sent: Wednesday, July 24, 2013 6:23 AM >>> To: Moore, Robert >>> Cc: Zheng, Lv; Konrad Rzeszutek Wilk; Jan Beulich; Rafael J . Wysocki; >>> linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; xen- >>> devel@lists.xen.org >>> Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in >>> reduced hardware sleep path >>> >>> On 07/24/2013 09:18 AM, Moore, Robert wrote: >>>> I have not looked closely at this, but we typically do things like >>>> this >>> in ACPICA so that they only need to be implemented once to support all >>> of the various acpica-hosted operating systems - linux, solaris, >>> hp-ux, apple, freebsd, etc. -- even if they could be implemented >>> "cleaner" in some way on any given host. >>> >>> Even when the resulting "simplification" results in reduced functionality? >>> >>> Maybe I am misunderstanding the suggestion...but it sounded like it >>> was basically to mimic the traditional behavior, and mask out the >>> reduced hardware capabilities on these system types. >>> >>> It seems to me that if the system supports the reduced hardware ACPI >>> sleep, you would want to make use of it... >>> >>> >>> >>>> >>>> >>>> >>>>> -----Original Message----- >>>>> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] >>>>> Sent: Wednesday, July 24, 2013 5:01 AM >>>>> To: Zheng, Lv >>>>> Cc: Konrad Rzeszutek Wilk; Jan Beulich; Rafael J . Wysocki; linux- >>>>> kernel@vger.kernel.org; linux-acpi@vger.kernel.org; xen- >>>>> devel@lists.xen.org; Moore, Robert >>>>> Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook >>>>> in reduced hardware sleep path >>>>> >>>>> >>>>> >>>>> On 07/24/2013 02:24 AM, Zheng, Lv wrote: >>>>>> Hi, >>>>>> >>>>>> Sorry for the delayed response. >>>>>> >>>>>>> From: Ben Guthro [mailto:Benjamin.Guthro@citrix.com] >>>>>>> Sent: Tuesday, July 02, 2013 7:43 PM >>>>>>> >>>>>>> >>>>>>> On 07/02/2013 02:19 AM, Zheng, Lv wrote: >>>>>>>> Thanks for your efforts! >>>>>>>> >>>>>>>> I wonder if it is possible to remove the argument - "u8 extended" >>>>>>>> and convert >>>>>>> "pm1a_control, pm1b_control" into some u8 values that are >>>>>>> equivalent to "acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b" in >>>>>>> the legacy sleep >>>>> path. >>>>>>>> It can also simplify Xen codes. >>>>>>> >>>>>>> Thanks for your time to review this. >>>>>>> >>>>>>> I''m not sure that this simplifies things. I think that, in fact, >>>>>>> it would make them quite a bit more complicated, but perhaps I >>>>> misunderstand. >>>>>>> >>>>>>> Is it not preferred to use the reduced hardware sleep, over the >>>>>>> old >>>>> method? >>>>>>> While these register definitions may be equivalent below, doing >>>>>>> the translation in linux, only to translate them back again at a >>>>>>> lower >>>>> layer seems unnecessary. >>>>>>> >>>>>> >>>>>> Yes, it would require tboot layer to be able to be aware of how >>>>>> such >>>>> fields locate in the PM registers. >>>>>> So I think you can pass the register address of the field and the >>>>>> field >>>>> name/value pair to the tboot, this could simplify things, no lower >>>>> layer effort will be needed. >>>>>> Please don''t worry about the case that a register field could be >>>>>> split >>>>> into PM1a and PM1b, it could be a hardware design issue. >>>>>> IMO, one field should always be in one register, either PM1a or PM1b. >>>>>> Or there could be hardware issues cannot be addressed by the >>>>>> ACPICA >>>>> architecture (something like natural atomicity). >>>>>> But maybe I''m wrong. >>>>> >>>>> Again, I don''t think this simplifies things, but complicates them >>>>> unnecessarily. Converting the reduced hardware sleep to the legacy >>>>> sleep seems like it would be an unnecessary layer of translation. >>>>> >>>>> The interface now simply passes the information from ACPICA down to >>>>> the lower layers (xen, tboot) - and then lets them worry about the >>>>> reduced hardware implementation. >>>>> >>>>> FWIW, xen has shipped with this implemetation, and enterprise >>>>> kernels using the traditional xen kernel (like Suse) are making use of it. >>>>> >>>>> It may benefit tboot, in this case, but not Xen. >>>>> >>>>> I personally see it as an undesirable complication. >>>>> >>>>> Best regards, >>>>> Ben >>>>> >>>>>> >>>>>> Thanks and best regards >>>>>> -Lv >>>>>> >>>>>>> The hypervisor knows how to deal with both the reduced hardware >>>>>>> sleep as well as the legacy sleep path - it merely need to >>>>>>> distinguish these two paths, when performing the hypercall. >>>>>>> >>>>>>> Since there are two paths through the higher level ACPICA code - >>>>>>> that in hwsleep.c, and hwesleep.c - there needs to be some >>>>>>> distinction between the two paths, when calling through to the >>>>>>> lower level >>>>>>> acpi_os_prepare_sleep() call. >>>>>>> >>>>>>> An alternate method would be to create another interface named >>>>>>> acpi_os_prepare_esleep() which would do the equivalent of this >>>>>>> patch series, with an "extended" parameter hidden from upper >>>>>>> level >>>>> interfaces. >>>>>>> >>>>>>> This, however, would also add another function to >>>>>>> include/acpi/acpiosxf.h - which, I thought was undesirable, in >>>>>>> the impression that I got from Bob Moore, and Rafael Wysocki >>>>>>> (though, please correct me on this point, if I have >>>>>>> misunderstood) >>>>>>> >>>>>>> Best Regards >>>>>>> >>>>>>> Ben >>>>>>> >>>>>>>> >>>>>>>> As in ACPI specification, the bit definitions between the legacy >>>>>>>> sleep registers >>>>>>> and the extended sleep registers are equivalent. >>>>>>>> >>>>>>>> The legacy sleep register definition: >>>>>>>> Table 4-16 PM1 Status Registers Fixed Hardware Feature Status >>>>>>>> Bits >>>>>>>> - WAK_STS(bit 15) Table 4-18 PM1 Control Registers Fixed >>>>>>>> Hardware Feature Control Bits - SLP_TYPx (bit 10-12), SLP_EN >>>>>>>> (bit 13) >>>>>>>> >>>>>>>> The extended sleep register definition: >>>>>>>> Table 4-24 Sleep Control Register - SLP_TYPx (3 bits from offset >>>>>>>> 2), SLP_EN (1 >>>>>>> bit from offset 5), here 10-8 = 2, and 13-8 = 5, this definition >>>>>>> is equivalent to Table 4-18. >>>>>>>> Table 4-25 Sleep Status Register - WAK_STS (1 bit 7), 15-8 = 7, >>>>>>>> this definition is >>>>>>> equivalent to Table 4-16. >>>>>>>> >>>>>>>> Thanks and best regards >>>>>>>> -Lv >>>>>>>> >>>>>>>>> -----Original Message----- >>>>>>>>> From: linux-acpi-owner@vger.kernel.org >>>>>>>>> [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Ben >>>>>>>>> Guthro >>>>>>>>> Sent: Wednesday, June 26, 2013 10:06 PM >>>>>>>>> To: Konrad Rzeszutek Wilk; Jan Beulich; Rafaell J . Wysocki; >>>>>>>>> linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; >>>>>>>>> xen-devel@lists.xen.org >>>>>>>>> Cc: Ben Guthro; Moore, Robert >>>>>>>>> Subject: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook >>>>>>>>> in reduced hardware sleep path >>>>>>>>> >>>>>>>>> In version 3.4 acpi_os_prepare_sleep() got introduced in >>>>>>>>> parallel with reduced hardware sleep support, and the two >>>>>>>>> changes didn''t get >>>>>>>>> synchronized: The new code doesn''t call the hook function (if >>>>>>>>> so requested). Fix this, requiring a parameter to be added to >>>>>>>>> the hook function to distinguish "extended" from "legacy" sleep. >>>>>>>>> >>>>>>>>> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> >>>>>>>>> Signed-off-by: Jan Beulich <jbeulich@suse.com> >>>>>>>>> Cc: Bob Moore <robert.moore@intel.com> >>>>>>>>> Cc: Rafaell J. Wysocki <rjw@sisk.pl> >>>>>>>>> Cc: linux-acpi@vger.kernel.org >>>>>>>>> --- >>>>>>>>> drivers/acpi/acpica/hwesleep.c | 8 ++++++++ >>>>>>>>> drivers/acpi/acpica/hwsleep.c | 2 +- >>>>>>>>> drivers/acpi/osl.c | 16 ++++++++-------- >>>>>>>>> include/linux/acpi.h | 10 +++++----- >>>>>>>>> 4 files changed, 22 insertions(+), 14 deletions(-) >>>>>>>>> >>>>>>>>> diff --git a/drivers/acpi/acpica/hwesleep.c >>>>>>>>> b/drivers/acpi/acpica/hwesleep.c index 5e5f762..6834dd7 100644 >>>>>>>>> --- a/drivers/acpi/acpica/hwesleep.c >>>>>>>>> +++ b/drivers/acpi/acpica/hwesleep.c >>>>>>>>> @@ -43,6 +43,7 @@ >>>>>>>>> */ >>>>>>>>> >>>>>>>>> #include <acpi/acpi.h> >>>>>>>>> +#include <linux/acpi.h> >>>>>>>>> #include "accommon.h" >>>>>>>>> >>>>>>>>> #define _COMPONENT ACPI_HARDWARE >>>>>>>>> @@ -128,6 +129,13 @@ acpi_status acpi_hw_extended_sleep(u8 >>>>>>>>> sleep_state) >>>>>>>>> >>>>>>>>> ACPI_FLUSH_CPU_CACHE(); >>>>>>>>> >>>>>>>>> + status = acpi_os_prepare_sleep(sleep_state, >>>>> acpi_gbl_sleep_type_a, >>>>>>>>> + acpi_gbl_sleep_type_b, true); >>>>>>>>> + if (ACPI_SKIP(status)) >>>>>>>>> + return_ACPI_STATUS(AE_OK); >>>>>>>>> + if (ACPI_FAILURE(status)) >>>>>>>>> + return_ACPI_STATUS(status); >>>>>>>>> + >>>>>>>>> /* >>>>>>>>> * Set the SLP_TYP and SLP_EN bits. >>>>>>>>> * >>>>>>>>> diff --git a/drivers/acpi/acpica/hwsleep.c >>>>>>>>> b/drivers/acpi/acpica/hwsleep.c index e3828cc..a93c299 100644 >>>>>>>>> --- a/drivers/acpi/acpica/hwsleep.c >>>>>>>>> +++ b/drivers/acpi/acpica/hwsleep.c >>>>>>>>> @@ -153,7 +153,7 @@ acpi_status acpi_hw_legacy_sleep(u8 >>> sleep_state) >>>>>>>>> ACPI_FLUSH_CPU_CACHE(); >>>>>>>>> >>>>>>>>> status = acpi_os_prepare_sleep(sleep_state, pm1a_control, >>>>>>>>> - pm1b_control); >>>>>>>>> + pm1b_control, false); >>>>>>>>> if (ACPI_SKIP(status)) >>>>>>>>> return_ACPI_STATUS(AE_OK); >>>>>>>>> if (ACPI_FAILURE(status)) >>>>>>>>> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index >>>>>>>>> e721863..3fc2801 100644 >>>>>>>>> --- a/drivers/acpi/osl.c >>>>>>>>> +++ b/drivers/acpi/osl.c >>>>>>>>> @@ -77,8 +77,8 @@ EXPORT_SYMBOL(acpi_in_debugger); >>>>>>>>> extern char line_buf[80]; >>>>>>>>> #endif /*ENABLE_DEBUGGER */ >>>>>>>>> >>>>>>>>> -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 >>> pm1a_ctrl, >>>>>>>>> - u32 pm1b_ctrl); >>>>>>>>> +static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 >>>>>>>>> +val_a, >>>>>>>>> +u32 >>>>>>> val_b, >>>>>>>>> + u8 extended); >>>>>>>>> >>>>>>>>> static acpi_osd_handler acpi_irq_handler; >>>>>>>>> static void *acpi_irq_context; @@ -1757,13 +1757,13 @@ >>>>>>>>> acpi_status acpi_os_terminate(void) >>>>>>>>> return AE_OK; >>>>>>>>> } >>>>>>>>> >>>>>>>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 >>> pm1a_control, >>>>>>>>> - u32 pm1b_control) >>>>>>>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, >>>>>>>>> +u32 >>>>> val_b, >>>>>>>>> + u8 extended) >>>>>>>>> { >>>>>>>>> int rc = 0; >>>>>>>>> if (__acpi_os_prepare_sleep) >>>>>>>>> - rc = __acpi_os_prepare_sleep(sleep_state, >>>>>>>>> - pm1a_control, pm1b_control); >>>>>>>>> + rc = __acpi_os_prepare_sleep(sleep_state, val_a, val_b, >>>>>>>>> + extended); >>>>>>>>> if (rc < 0) >>>>>>>>> return AE_ERROR; >>>>>>>>> else if (rc > 0) >>>>>>>>> @@ -1772,8 +1772,8 @@ acpi_status acpi_os_prepare_sleep(u8 >>>>>>>>> sleep_state, >>>>>>>>> u32 pm1a_control, >>>>>>>>> return AE_OK; >>>>>>>>> } >>>>>>>>> >>>>>>>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >>>>>>>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)) >>>>>>>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 >>>>> val_a, >>>>>>>>> + u32 val_b, u8 extended)) >>>>>>>>> { >>>>>>>>> __acpi_os_prepare_sleep = func; >>>>>>>>> } >>>>>>>>> diff --git a/include/linux/acpi.h b/include/linux/acpi.h index >>>>>>>>> 17b5b59..de99022 100644 >>>>>>>>> --- a/include/linux/acpi.h >>>>>>>>> +++ b/include/linux/acpi.h >>>>>>>>> @@ -477,11 +477,11 @@ static inline bool >>>>>>>>> acpi_driver_match_device(struct device *dev, >>>>>>>>> #endif /* !CONFIG_ACPI */ >>>>>>>>> >>>>>>>>> #ifdef CONFIG_ACPI >>>>>>>>> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >>>>>>>>> - u32 pm1a_ctrl, u32 pm1b_ctrl)); >>>>>>>>> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 >>>>> val_a, >>>>>>>>> + u32 val_b, u8 extended)); >>>>>>>>> >>>>>>>>> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, >>>>>>>>> - u32 pm1a_control, u32 pm1b_control); >>>>>>>>> +acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 val_a, >>>>>>>>> +u32 >>>>> val_b, >>>>>>>>> + u8 extended); >>>>>>>>> #ifdef CONFIG_X86 >>>>>>>>> void arch_reserve_mem_area(acpi_physical_address addr, size_t >>>>> size); >>>>>>>>> #else >>>>>>>>> @@ -491,7 +491,7 @@ static inline void >>>>>>>>> arch_reserve_mem_area(acpi_physical_address addr, >>>>>>>>> } >>>>>>>>> #endif /* CONFIG_X86 */ >>>>>>>>> #else >>>>>>>>> -#define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) >>>>>>>>> do { } while >>>>>>>>> (0) >>>>>>>>> +#define acpi_os_set_prepare_sleep(func, val_a, val_b, ext) do >>>>>>>>> +{ } while (0) >>>>>>>>> #endif >>>>>>>>> >>>>>>>>> #if defined(CONFIG_ACPI) && defined(CONFIG_PM_RUNTIME) >>>>>>>>> -- >>>>>>>>> 1.7.9.5 >>>>>>>>> >>>>>>>>> -- >>>>>>>>> To unsubscribe from this list: send the line "unsubscribe >>>>>>>>> linux- >>> acpi" >>>>>>>>> in the body of a message to majordomo@vger.kernel.org More >>>>>>>>> majordomo info at http://vger.kernel.org/majordomo-info.html
Zheng, Lv
2013-Jul-25 01:28 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
Let me just give an example to let you know the difficulties for ACPICA developers to merge Xen''s acpi_os_prepare_sleep. The original logic in the acpi_hw_legacy_sleep is: 111 /* Get current value of PM1A control */ 112 113 status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL, 114 &pm1a_control); 115 if (ACPI_FAILURE(status)) { 116 return_ACPI_STATUS(status); 117 } 118 ACPI_DEBUG_PRINT((ACPI_DB_INIT, 119 "Entering sleep state [S%u]\n", sleep_state)); 120 121 /* Clear the SLP_EN and SLP_TYP fields */ 122 123 pm1a_control &= ~(sleep_type_reg_info->access_bit_mask | 124 sleep_enable_reg_info->access_bit_mask); 125 pm1b_control = pm1a_control; 126 127 /* Insert the SLP_TYP bits */ 128 129 pm1a_control |130 (acpi_gbl_sleep_type_a << sleep_type_reg_info->bit_position); 131 pm1b_control |132 (acpi_gbl_sleep_type_b << sleep_type_reg_info->bit_position); 133 134 /* 135 * We split the writes of SLP_TYP and SLP_EN to workaround 136 * poorly implemented hardware. 137 */ 138 139 /* Write #1: write the SLP_TYP data to the PM1 Control registers */ 140 141 status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); 142 if (ACPI_FAILURE(status)) { 143 return_ACPI_STATUS(status); 144 } 145 146 /* Insert the sleep enable (SLP_EN) bit */ 147 148 pm1a_control |= sleep_enable_reg_info->access_bit_mask; 149 pm1b_control |= sleep_enable_reg_info->access_bit_mask; 150 151 /* Flush caches, as per ACPI specification */ 152 153 ACPI_FLUSH_CPU_CACHE(); 154 ======[Now Xen''s hook appears here) ======161 /* Write #2: Write both SLP_TYP + SLP_EN */ 162 163 status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); 164 if (ACPI_FAILURE(status)) { 165 return_ACPI_STATUS(status); 166 } If the whole block is re-implemented by ACPICA in the future: Acpi_hw_write_field_register(ACPI_SLEEP_REGISTER, ACPI_SLP_TYPE | ACPI_SLP_EN, slp_type | slp_en); Then where should ACPICA put this hook under the new design? Can it go inside acpi_hw_write_field_register? If the hook is in the current position, then future ACPICA development work on the suspend/resume codes are likely broken. IMO, 1. acpi_os_preapre_sleep() should be put before Line 111 2. acpi_os_preapre_sleep()''s parameters should be re-designed 3. Xen only register hacking logic should be put inside acpi_os_prepare_sleep(). Hope the above example can make my concern clearer now. :-) Thanks -Lv> -----Original Message----- > From: linux-acpi-owner@vger.kernel.org > [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Konrad Rzeszutek Wilk > Sent: Thursday, July 25, 2013 12:32 AM > To: Ben Guthro > Cc: Moore, Robert; Zheng, Lv; Jan Beulich; Rafael J . Wysocki; > linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; > xen-devel@lists.xen.org > Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced > hardware sleep path > > On Wed, Jul 24, 2013 at 11:14:06AM -0400, Ben Guthro wrote: > > > > > > On 07/24/2013 10:38 AM, Moore, Robert wrote: > > > I haven''t found a high-level description of "acpi_os_prepare_sleep", > perhaps I missed it. > > > > > > Can someone point me to the overall description of this change and why it is > being considered? > > > > Hi Bob, > > > > For this series, the v6 of this series does a decent job of what it is > > trying to accomplish: > > https://lkml.org/lkml/2013/7/1/205 > > > > However, I recognize that this does not really describe *why* > > acpi_os_prepare_sleep is necessary to begin with. For that, we need to > > go back a little more. > > > > The summary for the series that introduced it is a good description, > > of the reasons it is necessary: > > http://lkml.indiana.edu/hypermail/linux/kernel/1112.2/00450.html > > > > In summary though - in the case of Xen (and I believe this is also > > true in tboot) a value inappropriate for a VM (which dom0 is a special > > case > > of) was being written to cr3, and the physical machine would never > > come out of S3. > > > > This mechanism gives an os specific hook to do something else down at > > the lower levels, while still being able to take advantage of the > > large amount of OS independent code in ACPICA. > > It might be also prudent to look at original ''hook'' that was added by Intel in the > Linux code to support TXT: > > > commit 86886e55b273f565935491816c7c96b82469d4f8 > Author: Joseph Cihula <joseph.cihula@intel.com> > Date: Tue Jun 30 19:31:07 2009 -0700 > > x86, intel_txt: Intel TXT Sx shutdown support > > Support for graceful handling of sleep states (S3/S4/S5) after an Intel(R) > TXT launch. > > Without this patch, attempting to place the system in one of the ACPI > sleep > states (S3/S4/S5) will cause the TXT hardware to treat this as an attack > and > will cause a system reset, with memory locked. Not only may the > subsequent > memory scrub take some time, but the platform will be unable to enter > the > requested power state. > > This patch calls back into the tboot so that it may properly and securely > clean > up system state and clear the secrets-in-memory flag, after which it will > place > the system into the requested sleep state using ACPI information passed > by the kernel. > > arch/x86/kernel/smpboot.c | 2 ++ > drivers/acpi/acpica/hwsleep.c | 3 +++ > kernel/cpu.c | 7 ++++++- > 3 files changed, 11 insertions(+), 1 deletion(-) > > Signed-off-by: Joseph Cihula <joseph.cihula@intel.com> > Signed-off-by: Shane Wang <shane.wang@intel.com> > Signed-off-by: H. Peter Anvin <hpa@zytor.com> > > I suspect that if tboot was used with a different OS (Solaris?) it would hit the > same case and a similar hook would be needed. > > Said ''hook'' (which was a call to tboot_sleep) was converted to be a more > neutral ''acpi_os_prepare_sleep'' which tboot can use (and incidently Xen too). > > I think what Bob is saying that if said hook is neccessary (and I believe it is - and > Intel TXT maintainer thinks so too since he added it in the first place), then the > right way of adding it is via the ACPICA tree. > > Should the discussion for this be moved there ? (https://acpica.org/community) > and an generic ''os_prepare_sleep'' patch added in > git://github.com/acpica/acpica.git? > > -- > To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body > of a message to majordomo@vger.kernel.org More majordomo info at > http://vger.kernel.org/majordomo-info.html
Ben Guthro
2013-Jul-25 01:37 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
I''m afraid this is well outside of the scope of the bug I was trying to fix. Given the interactions with the acpi code I have had so far - I am somewhat disinclined to make such sweeping changes. I guess any distro supporting Xen, or tboot will have to carry a patch to avoid such a bug. On Wed, Jul 24, 2013 at 9:28 PM, Zheng, Lv <lv.zheng@intel.com> wrote:> Let me just give an example to let you know the difficulties for ACPICA > developers to merge Xen''s acpi_os_prepare_sleep. > > The original logic in the acpi_hw_legacy_sleep is: > 111 /* Get current value of PM1A control */ > 112 > 113 status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL, > 114 &pm1a_control); > 115 if (ACPI_FAILURE(status)) { > 116 return_ACPI_STATUS(status); > 117 } > 118 ACPI_DEBUG_PRINT((ACPI_DB_INIT, > 119 "Entering sleep state [S%u]\n", > sleep_state)); > 120 > 121 /* Clear the SLP_EN and SLP_TYP fields */ > 122 > 123 pm1a_control &= ~(sleep_type_reg_info->access_bit_mask | > 124 sleep_enable_reg_info->access_bit_mask); > 125 pm1b_control = pm1a_control; > 126 > 127 /* Insert the SLP_TYP bits */ > 128 > 129 pm1a_control |> 130 (acpi_gbl_sleep_type_a << > sleep_type_reg_info->bit_position); > 131 pm1b_control |> 132 (acpi_gbl_sleep_type_b << > sleep_type_reg_info->bit_position); > 133 > 134 /* > 135 * We split the writes of SLP_TYP and SLP_EN to workaround > 136 * poorly implemented hardware. > 137 */ > 138 > 139 /* Write #1: write the SLP_TYP data to the PM1 Control > registers */ > 140 > 141 status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); > 142 if (ACPI_FAILURE(status)) { > 143 return_ACPI_STATUS(status); > 144 } > 145 > 146 /* Insert the sleep enable (SLP_EN) bit */ > 147 > 148 pm1a_control |= sleep_enable_reg_info->access_bit_mask; > 149 pm1b_control |= sleep_enable_reg_info->access_bit_mask; > 150 > 151 /* Flush caches, as per ACPI specification */ > 152 > 153 ACPI_FLUSH_CPU_CACHE(); > 154 > ======> [Now Xen''s hook appears here) > ======> 161 /* Write #2: Write both SLP_TYP + SLP_EN */ > 162 > 163 status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); > 164 if (ACPI_FAILURE(status)) { > 165 return_ACPI_STATUS(status); > 166 } > > If the whole block is re-implemented by ACPICA in the future: > > Acpi_hw_write_field_register(ACPI_SLEEP_REGISTER, ACPI_SLP_TYPE | > ACPI_SLP_EN, slp_type | slp_en); > > Then where should ACPICA put this hook under the new design? > Can it go inside acpi_hw_write_field_register? > If the hook is in the current position, then future ACPICA development > work on the suspend/resume codes are likely broken. > > IMO, > 1. acpi_os_preapre_sleep() should be put before Line 111 > 2. acpi_os_preapre_sleep()''s parameters should be re-designed > 3. Xen only register hacking logic should be put inside > acpi_os_prepare_sleep(). > > Hope the above example can make my concern clearer now. :-) > > Thanks > -Lv > > > -----Original Message----- > > From: linux-acpi-owner@vger.kernel.org > > [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Konrad Rzeszutek > Wilk > > Sent: Thursday, July 25, 2013 12:32 AM > > To: Ben Guthro > > Cc: Moore, Robert; Zheng, Lv; Jan Beulich; Rafael J . Wysocki; > > linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; > > xen-devel@lists.xen.org > > Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in > reduced > > hardware sleep path > > > > On Wed, Jul 24, 2013 at 11:14:06AM -0400, Ben Guthro wrote: > > > > > > > > > On 07/24/2013 10:38 AM, Moore, Robert wrote: > > > > I haven''t found a high-level description of "acpi_os_prepare_sleep", > > perhaps I missed it. > > > > > > > > Can someone point me to the overall description of this change and > why it is > > being considered? > > > > > > Hi Bob, > > > > > > For this series, the v6 of this series does a decent job of what it is > > > trying to accomplish: > > > https://lkml.org/lkml/2013/7/1/205 > > > > > > However, I recognize that this does not really describe *why* > > > acpi_os_prepare_sleep is necessary to begin with. For that, we need to > > > go back a little more. > > > > > > The summary for the series that introduced it is a good description, > > > of the reasons it is necessary: > > > http://lkml.indiana.edu/hypermail/linux/kernel/1112.2/00450.html > > > > > > In summary though - in the case of Xen (and I believe this is also > > > true in tboot) a value inappropriate for a VM (which dom0 is a special > > > case > > > of) was being written to cr3, and the physical machine would never > > > come out of S3. > > > > > > This mechanism gives an os specific hook to do something else down at > > > the lower levels, while still being able to take advantage of the > > > large amount of OS independent code in ACPICA. > > > > It might be also prudent to look at original ''hook'' that was added by > Intel in the > > Linux code to support TXT: > > > > > > commit 86886e55b273f565935491816c7c96b82469d4f8 > > Author: Joseph Cihula <joseph.cihula@intel.com> > > Date: Tue Jun 30 19:31:07 2009 -0700 > > > > x86, intel_txt: Intel TXT Sx shutdown support > > > > Support for graceful handling of sleep states (S3/S4/S5) after an > Intel(R) > > TXT launch. > > > > Without this patch, attempting to place the system in one of the ACPI > > sleep > > states (S3/S4/S5) will cause the TXT hardware to treat this as an > attack > > and > > will cause a system reset, with memory locked. Not only may the > > subsequent > > memory scrub take some time, but the platform will be unable to enter > > the > > requested power state. > > > > This patch calls back into the tboot so that it may properly and > securely > > clean > > up system state and clear the secrets-in-memory flag, after which it > will > > place > > the system into the requested sleep state using ACPI information > passed > > by the kernel. > > > > arch/x86/kernel/smpboot.c | 2 ++ > > drivers/acpi/acpica/hwsleep.c | 3 +++ > > kernel/cpu.c | 7 ++++++- > > 3 files changed, 11 insertions(+), 1 deletion(-) > > > > Signed-off-by: Joseph Cihula <joseph.cihula@intel.com> > > Signed-off-by: Shane Wang <shane.wang@intel.com> > > Signed-off-by: H. Peter Anvin <hpa@zytor.com> > > > > I suspect that if tboot was used with a different OS (Solaris?) it would > hit the > > same case and a similar hook would be needed. > > > > Said ''hook'' (which was a call to tboot_sleep) was converted to be a more > > neutral ''acpi_os_prepare_sleep'' which tboot can use (and incidently Xen > too). > > > > I think what Bob is saying that if said hook is neccessary (and I > believe it is - and > > Intel TXT maintainer thinks so too since he added it in the first > place), then the > > right way of adding it is via the ACPICA tree. > > > > Should the discussion for this be moved there ? ( > https://acpica.org/community) > > and an generic ''os_prepare_sleep'' patch added in > > git://github.com/acpica/acpica.git? > > > > -- > > To unsubscribe from this list: send the line "unsubscribe linux-acpi" in > the body > > of a message to majordomo@vger.kernel.org More majordomo info at > > http://vger.kernel.org/majordomo-info.html > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ >_______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
Zheng, Lv
2013-Jul-25 01:54 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
Yes, I agree. As what I''ve said, it''s up to the others to determine if the patch is OK. I just need to make my concerns visible in the community. :-) Thanks and best regards -Lv From: ben.guthro@gmail.com [mailto:ben.guthro@gmail.com] On Behalf Of Ben Guthro Sent: Thursday, July 25, 2013 9:38 AM I''m afraid this is well outside of the scope of the bug I was trying to fix. Given the interactions with the acpi code I have had so far - I am somewhat disinclined to make such sweeping changes. I guess any distro supporting Xen, or tboot will have to carry a patch to avoid such a bug. On Wed, Jul 24, 2013 at 9:28 PM, Zheng, Lv <lv.zheng@intel.com> wrote: Let me just give an example to let you know the difficulties for ACPICA developers to merge Xen''s acpi_os_prepare_sleep. The original logic in the acpi_hw_legacy_sleep is: 111 /* Get current value of PM1A control */ 112 113 status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL, 114 &pm1a_control); 115 if (ACPI_FAILURE(status)) { 116 return_ACPI_STATUS(status); 117 } 118 ACPI_DEBUG_PRINT((ACPI_DB_INIT, 119 "Entering sleep state [S%u]\n", sleep_state)); 120 121 /* Clear the SLP_EN and SLP_TYP fields */ 122 123 pm1a_control &= ~(sleep_type_reg_info->access_bit_mask | 124 sleep_enable_reg_info->access_bit_mask); 125 pm1b_control = pm1a_control; 126 127 /* Insert the SLP_TYP bits */ 128 129 pm1a_control |130 (acpi_gbl_sleep_type_a << sleep_type_reg_info->bit_position); 131 pm1b_control |132 (acpi_gbl_sleep_type_b << sleep_type_reg_info->bit_position); 133 134 /* 135 * We split the writes of SLP_TYP and SLP_EN to workaround 136 * poorly implemented hardware. 137 */ 138 139 /* Write #1: write the SLP_TYP data to the PM1 Control registers */ 140 141 status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); 142 if (ACPI_FAILURE(status)) { 143 return_ACPI_STATUS(status); 144 } 145 146 /* Insert the sleep enable (SLP_EN) bit */ 147 148 pm1a_control |= sleep_enable_reg_info->access_bit_mask; 149 pm1b_control |= sleep_enable_reg_info->access_bit_mask; 150 151 /* Flush caches, as per ACPI specification */ 152 153 ACPI_FLUSH_CPU_CACHE(); 154 ======[Now Xen''s hook appears here) ======161 /* Write #2: Write both SLP_TYP + SLP_EN */ 162 163 status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); 164 if (ACPI_FAILURE(status)) { 165 return_ACPI_STATUS(status); 166 } If the whole block is re-implemented by ACPICA in the future: Acpi_hw_write_field_register(ACPI_SLEEP_REGISTER, ACPI_SLP_TYPE | ACPI_SLP_EN, slp_type | slp_en); Then where should ACPICA put this hook under the new design? Can it go inside acpi_hw_write_field_register? If the hook is in the current position, then future ACPICA development work on the suspend/resume codes are likely broken. IMO, 1. acpi_os_preapre_sleep() should be put before Line 111 2. acpi_os_preapre_sleep()''s parameters should be re-designed 3. Xen only register hacking logic should be put inside acpi_os_prepare_sleep(). Hope the above example can make my concern clearer now. :-) Thanks -Lv> -----Original Message----- > From: linux-acpi-owner@vger.kernel.org > [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Konrad Rzeszutek Wilk > Sent: Thursday, July 25, 2013 12:32 AM > To: Ben Guthro > Cc: Moore, Robert; Zheng, Lv; Jan Beulich; Rafael J . Wysocki; > linux-kernel@vger.kernel.org; linux-acpi@vger.kernel.org; > xen-devel@lists.xen.org > Subject: Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced > hardware sleep path > > On Wed, Jul 24, 2013 at 11:14:06AM -0400, Ben Guthro wrote: > > > > > > On 07/24/2013 10:38 AM, Moore, Robert wrote: > > > I haven''t found a high-level description of "acpi_os_prepare_sleep", > perhaps I missed it. > > > > > > Can someone point me to the overall description of this change and why it is > being considered? > > > > Hi Bob, > > > > For this series, the v6 of this series does a decent job of what it is > > trying to accomplish: > > https://lkml.org/lkml/2013/7/1/205 > > > > However, I recognize that this does not really describe *why* > > acpi_os_prepare_sleep is necessary to begin with. For that, we need to > > go back a little more. > > > > The summary for the series that introduced it is a good description, > > of the reasons it is necessary: > > http://lkml.indiana.edu/hypermail/linux/kernel/1112.2/00450.html > > > > In summary though - in the case of Xen (and I believe this is also > > true in tboot) a value inappropriate for a VM (which dom0 is a special > > case > > of) was being written to cr3, and the physical machine would never > > come out of S3. > > > > This mechanism gives an os specific hook to do something else down at > > the lower levels, while still being able to take advantage of the > > large amount of OS independent code in ACPICA. > > It might be also prudent to look at original ''hook'' that was added by Intel in the > Linux code to support TXT: > > > commit 86886e55b273f565935491816c7c96b82469d4f8 > Author: Joseph Cihula <joseph.cihula@intel.com> > Date: Tue Jun 30 19:31:07 2009 -0700 > > x86, intel_txt: Intel TXT Sx shutdown support > > Support for graceful handling of sleep states (S3/S4/S5) after an Intel(R) > TXT launch. > > Without this patch, attempting to place the system in one of the ACPI > sleep > states (S3/S4/S5) will cause the TXT hardware to treat this as an attack > and > will cause a system reset, with memory locked. Not only may the > subsequent > memory scrub take some time, but the platform will be unable to enter > the > requested power state. > > This patch calls back into the tboot so that it may properly and securely > clean > up system state and clear the secrets-in-memory flag, after which it will > place > the system into the requested sleep state using ACPI information passed > by the kernel. > > arch/x86/kernel/smpboot.c | 2 ++ > drivers/acpi/acpica/hwsleep.c | 3 +++ > kernel/cpu.c | 7 ++++++- > 3 files changed, 11 insertions(+), 1 deletion(-) > > Signed-off-by: Joseph Cihula <joseph.cihula@intel.com> > Signed-off-by: Shane Wang <shane.wang@intel.com> > Signed-off-by: H. Peter Anvin <hpa@zytor.com> > > I suspect that if tboot was used with a different OS (Solaris?) it would hit the > same case and a similar hook would be needed. > > Said ''hook'' (which was a call to tboot_sleep) was converted to be a more > neutral ''acpi_os_prepare_sleep'' which tboot can use (and incidently Xen too). > > I think what Bob is saying that if said hook is neccessary (and I believe it is - and > Intel TXT maintainer thinks so too since he added it in the first place), then the > right way of adding it is via the ACPICA tree. > > Should the discussion for this be moved there ? (https://acpica.org/community) > and an generic ''os_prepare_sleep'' patch added in > git://github.com/acpica/acpica.git? > > -- > To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body > of a message to majordomo@vger.kernel.org More majordomo info at > http://vger.kernel.org/majordomo-info.html-- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Konrad Rzeszutek Wilk
2013-Jul-25 12:04 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
CC-ing some of the tboot maintainers.> As what I''ve said, it''s up to the others to determine if the patch is OK. > I just need to make my concerns visible in the community. :-)If I understand your concerns you don''t want the hook to depend on any of the bit manipulations the existing code does for the pm1 values. The hook should do it itself case it needs to tweak them or what not. And it also frees you from altering the ACPICA code without having to worry about being dependent on what the input values the hook requires? Is this what you had in mind? (not compile tested nor tested). I am not even sure if outside the drivers/acpi you can call acpi_hw_get_bit_register_info .. And since the Xen bits would do the same exact bit manipulation it probably could use a library to do pm1* stuff so both tboot and Xen can use it. diff --git a/arch/x86/kernel/tboot.c b/arch/x86/kernel/tboot.c index f84fe00..59570b1 100644 --- a/arch/x86/kernel/tboot.c +++ b/arch/x86/kernel/tboot.c @@ -273,20 +273,75 @@ static void tboot_copy_fadt(const struct acpi_table_fadt *fadt) offsetof(struct acpi_table_facs, firmware_waking_vector); } -static int tboot_sleep(u8 sleep_state, u32 pm1a_control, u32 pm1b_control) +static int tboot_get_pm_control(bool legacy) +{ + u32 pm1a_control; + u32 pm1b_control; + u32 in_value; + acpi_status status; + struct acpi_bit_register_info *sleep_type_reg_info; + struct acpi_bit_register_info *sleep_enable_reg_info; + + if (!legacy) + return -ENOSPC; + + status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL, + &pm1a_control); + if (ACPI_FAILURE(status)) { + return -EXXX /* something */; + } + sleep_type_reg_info = acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_TYPE); + sleep_enable_reg_info = acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_ENABLE); + /* Clear the SLP_EN and SLP_TYP fields */ + + pm1a_control &= ~(sleep_type_reg_info->access_bit_mask | + sleep_enable_reg_info->access_bit_mask); + pm1b_control = pm1a_control; + + /* Insert the SLP_TYP bits */ + + pm1a_control |+ (acpi_gbl_sleep_type_a << sleep_type_reg_info->bit_position); + pm1b_control |+ (acpi_gbl_sleep_type_b << sleep_type_reg_info->bit_position); + + /* + * We split the writes of SLP_TYP and SLP_EN to workaround + * poorly implemented hardware. + */ + + /* Write #1: write the SLP_TYP data to the PM1 Control registers */ + + status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); + if (ACPI_FAILURE(status)) { + return -EXXX /* something */; + } + + /* Insert the sleep enable (SLP_EN) bit */ + + pm1a_control |= sleep_enable_reg_info->access_bit_mask; + pm1b_control |= sleep_enable_reg_info->access_bit_mask; + tboot->acpi_sinfo.pm1a_cnt_val = pm1a_control; + tboot->acpi_sinfo.pm1b_cnt_val = pm1b_control; + return 0; +} +static int tboot_sleep(u8 sleep_state); { static u32 acpi_shutdown_map[ACPI_S_STATE_COUNT] = { /* S0,1,2: */ -1, -1, -1, /* S3: */ TB_SHUTDOWN_S3, /* S4: */ TB_SHUTDOWN_S4, /* S5: */ TB_SHUTDOWN_S5 }; + int rc; if (!tboot_enabled()) return 0; tboot_copy_fadt(&acpi_gbl_FADT); - tboot->acpi_sinfo.pm1a_cnt_val = pm1a_control; - tboot->acpi_sinfo.pm1b_cnt_val = pm1b_control; + + rc = tboot_get_pm_control(); + if (rc < 0) + return -1; /* we always use the 32b wakeup vector */ tboot->acpi_sinfo.vector_width = 32; diff --git a/drivers/acpi/acpica/hwesleep.c b/drivers/acpi/acpica/hwesleep.c index 5e5f762..a8e98f9 100644 --- a/drivers/acpi/acpica/hwesleep.c +++ b/drivers/acpi/acpica/hwesleep.c @@ -113,6 +113,15 @@ acpi_status acpi_hw_extended_sleep(u8 sleep_state) !acpi_gbl_FADT.sleep_status.address) { return_ACPI_STATUS(AE_NOT_EXIST); } + /* + * If using tboot or other platforms that need tweaks then + * do them here, and also bail out if neccessary. + */ + status = acpi_os_prepare_sleep(sleep_state); + if (ACPI_SKIP(status)) + return_ACPI_STATUS(AE_OK); + if (ACPI_FAILURE(status)) + return_ACPI_STATUS(status); /* Clear wake status (WAK_STS) */ diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c index e3828cc..909b23b 100644 --- a/drivers/acpi/acpica/hwsleep.c +++ b/drivers/acpi/acpica/hwsleep.c @@ -108,6 +108,16 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) return_ACPI_STATUS(status); } + /* + * If using tboot or other platforms that need tweaks then + * do them here, and also bail out if neccessary. + */ + status = acpi_os_prepare_sleep(sleep_state); + if (ACPI_SKIP(status)) + return_ACPI_STATUS(AE_OK); + if (ACPI_FAILURE(status)) + return_ACPI_STATUS(status); + /* Get current value of PM1A control */ status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL, @@ -152,12 +162,6 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) ACPI_FLUSH_CPU_CACHE(); - status = acpi_os_prepare_sleep(sleep_state, pm1a_control, - pm1b_control); - if (ACPI_SKIP(status)) - return_ACPI_STATUS(AE_OK); - if (ACPI_FAILURE(status)) - return_ACPI_STATUS(status); /* Write #2: Write both SLP_TYP + SLP_EN */ status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index e721863..ffcc364 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c @@ -77,8 +77,7 @@ EXPORT_SYMBOL(acpi_in_debugger); extern char line_buf[80]; #endif /*ENABLE_DEBUGGER */ -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, - u32 pm1b_ctrl); +static int (*__acpi_os_prepare_sleep)(u8 sleep_state); static acpi_osd_handler acpi_irq_handler; static void *acpi_irq_context; @@ -1757,13 +1756,11 @@ acpi_status acpi_os_terminate(void) return AE_OK; } -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, - u32 pm1b_control) +acpi_status acpi_os_prepare_sleep(u8 sleep_state) { int rc = 0; if (__acpi_os_prepare_sleep) - rc = __acpi_os_prepare_sleep(sleep_state, - pm1a_control, pm1b_control); + rc = __acpi_os_prepare_sleep(sleep_state); if (rc < 0) return AE_ERROR; else if (rc > 0) @@ -1772,8 +1769,7 @@ acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, return AE_OK; } -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, - u32 pm1a_ctrl, u32 pm1b_ctrl)) +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state)) { __acpi_os_prepare_sleep = func; } diff --git a/include/linux/acpi.h b/include/linux/acpi.h index 17b5b59..8de1043 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h @@ -480,8 +480,7 @@ static inline bool acpi_driver_match_device(struct device *dev, void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, u32 pm1a_ctrl, u32 pm1b_ctrl)); -acpi_status acpi_os_prepare_sleep(u8 sleep_state, - u32 pm1a_control, u32 pm1b_control); +acpi_status acpi_os_prepare_sleep(u8 sleep_state); #ifdef CONFIG_X86 void arch_reserve_mem_area(acpi_physical_address addr, size_t size); #else .. massive snip..> > > On 07/24/2013 10:38 AM, Moore, Robert wrote: > > > > I haven''t found a high-level description of "acpi_os_prepare_sleep", > > perhaps I missed it. > > > > > > > > Can someone point me to the overall description of this change and why it is > > being considered? > > > > > > Hi Bob, > > > > > > For this series, the v6 of this series does a decent job of what it is > > > trying to accomplish: > > > https://lkml.org/lkml/2013/7/1/205 > > > > > > However, I recognize that this does not really describe *why* > > > acpi_os_prepare_sleep is necessary to begin with. For that, we need to > > > go back a little more. > > > > > > The summary for the series that introduced it is a good description, > > > of the reasons it is necessary: > > > http://lkml.indiana.edu/hypermail/linux/kernel/1112.2/00450.html > > > > > > In summary though - in the case of Xen (and I believe this is also > > > true in tboot) a value inappropriate for a VM (which dom0 is a special > > > case > > > of) was being written to cr3, and the physical machine would never > > > come out of S3. > > > > > > This mechanism gives an os specific hook to do something else down at > > > the lower levels, while still being able to take advantage of the > > > large amount of OS independent code in ACPICA. > > > > It might be also prudent to look at original ''hook'' that was added by Intel in the > > Linux code to support TXT: > > > > > > commit 86886e55b273f565935491816c7c96b82469d4f8 > > Author: Joseph Cihula <joseph.cihula@intel.com> > > Date: Tue Jun 30 19:31:07 2009 -0700 > > > > x86, intel_txt: Intel TXT Sx shutdown support > > > > Support for graceful handling of sleep states (S3/S4/S5) after an Intel(R) > > TXT launch. > > > > Without this patch, attempting to place the system in one of the ACPI > > sleep > > states (S3/S4/S5) will cause the TXT hardware to treat this as an attack > > and > > will cause a system reset, with memory locked. Not only may the > > subsequent > > memory scrub take some time, but the platform will be unable to enter > > the > > requested power state. > > > > This patch calls back into the tboot so that it may properly and securely > > clean > > up system state and clear the secrets-in-memory flag, after which it will > > place > > the system into the requested sleep state using ACPI information passed > > by the kernel. > > > > arch/x86/kernel/smpboot.c | 2 ++ > > drivers/acpi/acpica/hwsleep.c | 3 +++ > > kernel/cpu.c | 7 ++++++- > > 3 files changed, 11 insertions(+), 1 deletion(-) > > > > Signed-off-by: Joseph Cihula <joseph.cihula@intel.com> > > Signed-off-by: Shane Wang <shane.wang@intel.com> > > Signed-off-by: H. Peter Anvin <hpa@zytor.com> > > > > I suspect that if tboot was used with a different OS (Solaris?) it would hit the > > same case and a similar hook would be needed. > > > > Said ''hook'' (which was a call to tboot_sleep) was converted to be a more > > neutral ''acpi_os_prepare_sleep'' which tboot can use (and incidently Xen too). > > > > I think what Bob is saying that if said hook is neccessary (and I believe it is - and > > Intel TXT maintainer thinks so too since he added it in the first place), then the > > right way of adding it is via the ACPICA tree. > > > > Should the discussion for this be moved there ? (https://acpica.org/community) > > and an generic ''os_prepare_sleep'' patch added in > > git://github.com/acpica/acpica.git? > > > > -- > > To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body > > of a message to majordomo@vger.kernel.org More majordomo info at > > http://vger.kernel.org/majordomo-info.html > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ >
Zheng, Lv
2013-Jul-26 02:51 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
> From: Konrad Rzeszutek Wilk [mailto:konrad.wilk@oracle.com] > Sent: Thursday, July 25, 2013 8:04 PM > > CC-ing some of the tboot maintainers. > > As what I''ve said, it''s up to the others to determine if the patch is OK. > > I just need to make my concerns visible in the community. :-) > > If I understand your concerns you don''t want the hook to depend on any > of the bit manipulations the existing code does for the pm1 values. The > hook should do it itself case it needs to tweak them or what not. > > And it also frees you from altering the ACPICA code without having to > worry about being dependent on what the input values the hook requires? > > Is this what you had in mind? (not compile tested nor tested).Actually I''ve drafted such a patch that had conflicts with the Xen/tboot hooks. Then the patchset has to first delete the hooks to make test possible for testers. It is here: https://bugzilla.kernel.org/show_bug.cgi?id=54181> > I am not even sure if outside the drivers/acpi you can call > acpi_hw_get_bit_register_info ..If we want this patch to be accepted without modification, then someone can help to do such cleanup in the future when ACPICA change happens.> > And since the Xen bits would do the same exact bit manipulation it > probably could use a library to do pm1* stuff so both tboot and Xen > can use it.This sounds better. I think Xen and tboot will need such a library to atomically accessing PM register fields. Thanks and best regards -Lv> > diff --git a/arch/x86/kernel/tboot.c b/arch/x86/kernel/tboot.c > index f84fe00..59570b1 100644 > --- a/arch/x86/kernel/tboot.c > +++ b/arch/x86/kernel/tboot.c > @@ -273,20 +273,75 @@ static void tboot_copy_fadt(const struct > acpi_table_fadt *fadt) > offsetof(struct acpi_table_facs, firmware_waking_vector); > } > > -static int tboot_sleep(u8 sleep_state, u32 pm1a_control, u32 pm1b_control) > +static int tboot_get_pm_control(bool legacy) > +{ > + u32 pm1a_control; > + u32 pm1b_control; > + u32 in_value; > + acpi_status status; > + struct acpi_bit_register_info *sleep_type_reg_info; > + struct acpi_bit_register_info *sleep_enable_reg_info; > + > + if (!legacy) > + return -ENOSPC; > + > + status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL, > + &pm1a_control); > + if (ACPI_FAILURE(status)) { > + return -EXXX /* something */; > + } > + sleep_type_reg_info > acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_TYPE); > + sleep_enable_reg_info > acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_ENABLE); > + /* Clear the SLP_EN and SLP_TYP fields */ > + > + pm1a_control &= ~(sleep_type_reg_info->access_bit_mask | > + sleep_enable_reg_info->access_bit_mask); > + pm1b_control = pm1a_control; > + > + /* Insert the SLP_TYP bits */ > + > + pm1a_control |> + (acpi_gbl_sleep_type_a << sleep_type_reg_info->bit_position); > + pm1b_control |> + (acpi_gbl_sleep_type_b << sleep_type_reg_info->bit_position); > + > + /* > + * We split the writes of SLP_TYP and SLP_EN to workaround > + * poorly implemented hardware. > + */ > + > + /* Write #1: write the SLP_TYP data to the PM1 Control registers */ > + > + status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); > + if (ACPI_FAILURE(status)) { > + return -EXXX /* something */; > + } > + > + /* Insert the sleep enable (SLP_EN) bit */ > + > + pm1a_control |= sleep_enable_reg_info->access_bit_mask; > + pm1b_control |= sleep_enable_reg_info->access_bit_mask; > + tboot->acpi_sinfo.pm1a_cnt_val = pm1a_control; > + tboot->acpi_sinfo.pm1b_cnt_val = pm1b_control; > + return 0; > +} > +static int tboot_sleep(u8 sleep_state); > { > static u32 acpi_shutdown_map[ACPI_S_STATE_COUNT] = { > /* S0,1,2: */ -1, -1, -1, > /* S3: */ TB_SHUTDOWN_S3, > /* S4: */ TB_SHUTDOWN_S4, > /* S5: */ TB_SHUTDOWN_S5 }; > + int rc; > > if (!tboot_enabled()) > return 0; > > tboot_copy_fadt(&acpi_gbl_FADT); > - tboot->acpi_sinfo.pm1a_cnt_val = pm1a_control; > - tboot->acpi_sinfo.pm1b_cnt_val = pm1b_control; > + > + rc = tboot_get_pm_control(); > + if (rc < 0) > + return -1; > /* we always use the 32b wakeup vector */ > tboot->acpi_sinfo.vector_width = 32; > > diff --git a/drivers/acpi/acpica/hwesleep.c b/drivers/acpi/acpica/hwesleep.c > index 5e5f762..a8e98f9 100644 > --- a/drivers/acpi/acpica/hwesleep.c > +++ b/drivers/acpi/acpica/hwesleep.c > @@ -113,6 +113,15 @@ acpi_status acpi_hw_extended_sleep(u8 > sleep_state) > !acpi_gbl_FADT.sleep_status.address) { > return_ACPI_STATUS(AE_NOT_EXIST); > } > + /* > + * If using tboot or other platforms that need tweaks then > + * do them here, and also bail out if neccessary. > + */ > + status = acpi_os_prepare_sleep(sleep_state); > + if (ACPI_SKIP(status)) > + return_ACPI_STATUS(AE_OK); > + if (ACPI_FAILURE(status)) > + return_ACPI_STATUS(status); > > /* Clear wake status (WAK_STS) */ > > diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c > index e3828cc..909b23b 100644 > --- a/drivers/acpi/acpica/hwsleep.c > +++ b/drivers/acpi/acpica/hwsleep.c > @@ -108,6 +108,16 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) > return_ACPI_STATUS(status); > } > > + /* > + * If using tboot or other platforms that need tweaks then > + * do them here, and also bail out if neccessary. > + */ > + status = acpi_os_prepare_sleep(sleep_state); > + if (ACPI_SKIP(status)) > + return_ACPI_STATUS(AE_OK); > + if (ACPI_FAILURE(status)) > + return_ACPI_STATUS(status); > + > /* Get current value of PM1A control */ > > status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL, > @@ -152,12 +162,6 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) > > ACPI_FLUSH_CPU_CACHE(); > > - status = acpi_os_prepare_sleep(sleep_state, pm1a_control, > - pm1b_control); > - if (ACPI_SKIP(status)) > - return_ACPI_STATUS(AE_OK); > - if (ACPI_FAILURE(status)) > - return_ACPI_STATUS(status); > /* Write #2: Write both SLP_TYP + SLP_EN */ > > status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); > diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c > index e721863..ffcc364 100644 > --- a/drivers/acpi/osl.c > +++ b/drivers/acpi/osl.c > @@ -77,8 +77,7 @@ EXPORT_SYMBOL(acpi_in_debugger); > extern char line_buf[80]; > #endif /*ENABLE_DEBUGGER */ > > -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, > - u32 pm1b_ctrl); > +static int (*__acpi_os_prepare_sleep)(u8 sleep_state); > > static acpi_osd_handler acpi_irq_handler; > static void *acpi_irq_context; > @@ -1757,13 +1756,11 @@ acpi_status acpi_os_terminate(void) > return AE_OK; > } > > -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, > - u32 pm1b_control) > +acpi_status acpi_os_prepare_sleep(u8 sleep_state) > { > int rc = 0; > if (__acpi_os_prepare_sleep) > - rc = __acpi_os_prepare_sleep(sleep_state, > - pm1a_control, pm1b_control); > + rc = __acpi_os_prepare_sleep(sleep_state); > if (rc < 0) > return AE_ERROR; > else if (rc > 0) > @@ -1772,8 +1769,7 @@ acpi_status acpi_os_prepare_sleep(u8 sleep_state, > u32 pm1a_control, > return AE_OK; > } > > -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > - u32 pm1a_ctrl, u32 pm1b_ctrl)) > +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state)) > { > __acpi_os_prepare_sleep = func; > } > diff --git a/include/linux/acpi.h b/include/linux/acpi.h > index 17b5b59..8de1043 100644 > --- a/include/linux/acpi.h > +++ b/include/linux/acpi.h > @@ -480,8 +480,7 @@ static inline bool acpi_driver_match_device(struct > device *dev, > void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > u32 pm1a_ctrl, u32 pm1b_ctrl)); > > -acpi_status acpi_os_prepare_sleep(u8 sleep_state, > - u32 pm1a_control, u32 pm1b_control); > +acpi_status acpi_os_prepare_sleep(u8 sleep_state); > #ifdef CONFIG_X86 > void arch_reserve_mem_area(acpi_physical_address addr, size_t size); > #else > > .. massive snip.. > > > > On 07/24/2013 10:38 AM, Moore, Robert wrote: > > > > > I haven''t found a high-level description of "acpi_os_prepare_sleep", > > > perhaps I missed it. > > > > > > > > > > Can someone point me to the overall description of this change and why > it is > > > being considered? > > > > > > > > Hi Bob, > > > > > > > > For this series, the v6 of this series does a decent job of what it is > > > > trying to accomplish: > > > > https://lkml.org/lkml/2013/7/1/205 > > > > > > > > However, I recognize that this does not really describe *why* > > > > acpi_os_prepare_sleep is necessary to begin with. For that, we need to > > > > go back a little more. > > > > > > > > The summary for the series that introduced it is a good description, > > > > of the reasons it is necessary: > > > > http://lkml.indiana.edu/hypermail/linux/kernel/1112.2/00450.html > > > > > > > > In summary though - in the case of Xen (and I believe this is also > > > > true in tboot) a value inappropriate for a VM (which dom0 is a special > > > > case > > > > of) was being written to cr3, and the physical machine would never > > > > come out of S3. > > > > > > > > This mechanism gives an os specific hook to do something else down at > > > > the lower levels, while still being able to take advantage of the > > > > large amount of OS independent code in ACPICA. > > > > > > It might be also prudent to look at original ''hook'' that was added by Intel in > the > > > Linux code to support TXT: > > > > > > > > > commit 86886e55b273f565935491816c7c96b82469d4f8 > > > Author: Joseph Cihula <joseph.cihula@intel.com> > > > Date: Tue Jun 30 19:31:07 2009 -0700 > > > > > > x86, intel_txt: Intel TXT Sx shutdown support > > > > > > Support for graceful handling of sleep states (S3/S4/S5) after an > Intel(R) > > > TXT launch. > > > > > > Without this patch, attempting to place the system in one of the ACPI > > > sleep > > > states (S3/S4/S5) will cause the TXT hardware to treat this as an > attack > > > and > > > will cause a system reset, with memory locked. Not only may the > > > subsequent > > > memory scrub take some time, but the platform will be unable to > enter > > > the > > > requested power state. > > > > > > This patch calls back into the tboot so that it may properly and > securely > > > clean > > > up system state and clear the secrets-in-memory flag, after which it > will > > > place > > > the system into the requested sleep state using ACPI information > passed > > > by the kernel. > > > > > > arch/x86/kernel/smpboot.c | 2 ++ > > > drivers/acpi/acpica/hwsleep.c | 3 +++ > > > kernel/cpu.c | 7 ++++++- > > > 3 files changed, 11 insertions(+), 1 deletion(-) > > > > > > Signed-off-by: Joseph Cihula <joseph.cihula@intel.com> > > > Signed-off-by: Shane Wang <shane.wang@intel.com> > > > Signed-off-by: H. Peter Anvin <hpa@zytor.com> > > > > > > I suspect that if tboot was used with a different OS (Solaris?) it would hit the > > > same case and a similar hook would be needed. > > > > > > Said ''hook'' (which was a call to tboot_sleep) was converted to be a more > > > neutral ''acpi_os_prepare_sleep'' which tboot can use (and incidently Xen > too). > > > > > > I think what Bob is saying that if said hook is neccessary (and I believe it is - > and > > > Intel TXT maintainer thinks so too since he added it in the first place), then > the > > > right way of adding it is via the ACPICA tree. > > > > > > Should the discussion for this be moved there ? > (https://acpica.org/community) > > > and an generic ''os_prepare_sleep'' patch added in > > > git://github.com/acpica/acpica.git? > > > > > > -- > > > To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the > body > > > of a message to majordomo@vger.kernel.org More majordomo info at > > > http://vger.kernel.org/majordomo-info.html > > -- > > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > > the body of a message to majordomo@vger.kernel.org > > More majordomo info at http://vger.kernel.org/majordomo-info.html > > Please read the FAQ at http://www.tux.org/lkml/ > >
konrad wilk
2013-Jul-26 18:03 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
On 7/25/2013 10:51 PM, Zheng, Lv wrote:>> From: Konrad Rzeszutek Wilk [mailto:konrad.wilk@oracle.com] >> Sent: Thursday, July 25, 2013 8:04 PM >> >> CC-ing some of the tboot maintainers. >>> As what I''ve said, it''s up to the others to determine if the patch is OK. >>> I just need to make my concerns visible in the community. :-) >> If I understand your concerns you don''t want the hook to depend on any >> of the bit manipulations the existing code does for the pm1 values. The >> hook should do it itself case it needs to tweak them or what not. >> >> And it also frees you from altering the ACPICA code without having to >> worry about being dependent on what the input values the hook requires? >> >> Is this what you had in mind? (not compile tested nor tested). > Actually I''ve drafted such a patch that had conflicts with the Xen/tboot hooks.Ok, so the idea patch is not yet what you had in mind I surmise? Looking at the patch "ACPICA: Hardware: Modify sleep hardware interfaces" from said bugzilla I believe you could still retain the hook. You could even add it as part of the state machine (before the values are written to the respective area).> Then the patchset has to first delete the hooks to make test possible for testers. > It is here: > https://bugzilla.kernel.org/show_bug.cgi?id=54181I must be missing something obvious but the patches just say "Removes the hook for debugging purpose." I think the reason you did that is b/c you were not sure were it would fit in your "ACPICA: Hardware: Modify sleep hardware interfaces" patch. But as I said - I am probably missing something obvious.> >> I am not even sure if outside the drivers/acpi you can call >> acpi_hw_get_bit_register_info .. > If we want this patch to be accepted without modification, then someone can help to do such cleanup in the future when ACPICA change happens.How would you expose said functions to non-ACPICA drivers?> >> And since the Xen bits would do the same exact bit manipulation it >> probably could use a library to do pm1* stuff so both tboot and Xen >> can use it. > This sounds better. > I think Xen and tboot will need such a library to atomically accessing PM register fields.The sad part is that it would mirror the same exact code paths that the existing ACPICA code does. Which is why it was just passing in the pm* registers. But I understand that you prefer to have a generic API so that you don''t have to worry about low-level implementations of platform hooks. What if this hook was allowed to be turned in the state machine? That is the acpi_sleep_dispatch and it over-wrote part of the "write to PM1" state? The goal of the hook is to redirect the write using a different mechanism - so if the ''write to PM1'' is accomplished then that is good.> > Thanks and best regards > -Lv > >> diff --git a/arch/x86/kernel/tboot.c b/arch/x86/kernel/tboot.c >> index f84fe00..59570b1 100644 >> --- a/arch/x86/kernel/tboot.c >> +++ b/arch/x86/kernel/tboot.c >> @@ -273,20 +273,75 @@ static void tboot_copy_fadt(const struct >> acpi_table_fadt *fadt) >> offsetof(struct acpi_table_facs, firmware_waking_vector); >> } >> >> -static int tboot_sleep(u8 sleep_state, u32 pm1a_control, u32 pm1b_control) >> +static int tboot_get_pm_control(bool legacy) >> +{ >> + u32 pm1a_control; >> + u32 pm1b_control; >> + u32 in_value; >> + acpi_status status; >> + struct acpi_bit_register_info *sleep_type_reg_info; >> + struct acpi_bit_register_info *sleep_enable_reg_info; >> + >> + if (!legacy) >> + return -ENOSPC; >> + >> + status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL, >> + &pm1a_control); >> + if (ACPI_FAILURE(status)) { >> + return -EXXX /* something */; >> + } >> + sleep_type_reg_info >> acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_TYPE); >> + sleep_enable_reg_info >> acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_ENABLE); >> + /* Clear the SLP_EN and SLP_TYP fields */ >> + >> + pm1a_control &= ~(sleep_type_reg_info->access_bit_mask | >> + sleep_enable_reg_info->access_bit_mask); >> + pm1b_control = pm1a_control; >> + >> + /* Insert the SLP_TYP bits */ >> + >> + pm1a_control |>> + (acpi_gbl_sleep_type_a << sleep_type_reg_info->bit_position); >> + pm1b_control |>> + (acpi_gbl_sleep_type_b << sleep_type_reg_info->bit_position); >> + >> + /* >> + * We split the writes of SLP_TYP and SLP_EN to workaround >> + * poorly implemented hardware. >> + */ >> + >> + /* Write #1: write the SLP_TYP data to the PM1 Control registers */ >> + >> + status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); >> + if (ACPI_FAILURE(status)) { >> + return -EXXX /* something */; >> + } >> + >> + /* Insert the sleep enable (SLP_EN) bit */ >> + >> + pm1a_control |= sleep_enable_reg_info->access_bit_mask; >> + pm1b_control |= sleep_enable_reg_info->access_bit_mask; >> + tboot->acpi_sinfo.pm1a_cnt_val = pm1a_control; >> + tboot->acpi_sinfo.pm1b_cnt_val = pm1b_control; >> + return 0; >> +} >> +static int tboot_sleep(u8 sleep_state); >> { >> static u32 acpi_shutdown_map[ACPI_S_STATE_COUNT] = { >> /* S0,1,2: */ -1, -1, -1, >> /* S3: */ TB_SHUTDOWN_S3, >> /* S4: */ TB_SHUTDOWN_S4, >> /* S5: */ TB_SHUTDOWN_S5 }; >> + int rc; >> >> if (!tboot_enabled()) >> return 0; >> >> tboot_copy_fadt(&acpi_gbl_FADT); >> - tboot->acpi_sinfo.pm1a_cnt_val = pm1a_control; >> - tboot->acpi_sinfo.pm1b_cnt_val = pm1b_control; >> + >> + rc = tboot_get_pm_control(); >> + if (rc < 0) >> + return -1; >> /* we always use the 32b wakeup vector */ >> tboot->acpi_sinfo.vector_width = 32; >> >> diff --git a/drivers/acpi/acpica/hwesleep.c b/drivers/acpi/acpica/hwesleep.c >> index 5e5f762..a8e98f9 100644 >> --- a/drivers/acpi/acpica/hwesleep.c >> +++ b/drivers/acpi/acpica/hwesleep.c >> @@ -113,6 +113,15 @@ acpi_status acpi_hw_extended_sleep(u8 >> sleep_state) >> !acpi_gbl_FADT.sleep_status.address) { >> return_ACPI_STATUS(AE_NOT_EXIST); >> } >> + /* >> + * If using tboot or other platforms that need tweaks then >> + * do them here, and also bail out if neccessary. >> + */ >> + status = acpi_os_prepare_sleep(sleep_state); >> + if (ACPI_SKIP(status)) >> + return_ACPI_STATUS(AE_OK); >> + if (ACPI_FAILURE(status)) >> + return_ACPI_STATUS(status); >> >> /* Clear wake status (WAK_STS) */ >> >> diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c >> index e3828cc..909b23b 100644 >> --- a/drivers/acpi/acpica/hwsleep.c >> +++ b/drivers/acpi/acpica/hwsleep.c >> @@ -108,6 +108,16 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) >> return_ACPI_STATUS(status); >> } >> >> + /* >> + * If using tboot or other platforms that need tweaks then >> + * do them here, and also bail out if neccessary. >> + */ >> + status = acpi_os_prepare_sleep(sleep_state); >> + if (ACPI_SKIP(status)) >> + return_ACPI_STATUS(AE_OK); >> + if (ACPI_FAILURE(status)) >> + return_ACPI_STATUS(status); >> + >> /* Get current value of PM1A control */ >> >> status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL, >> @@ -152,12 +162,6 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) >> >> ACPI_FLUSH_CPU_CACHE(); >> >> - status = acpi_os_prepare_sleep(sleep_state, pm1a_control, >> - pm1b_control); >> - if (ACPI_SKIP(status)) >> - return_ACPI_STATUS(AE_OK); >> - if (ACPI_FAILURE(status)) >> - return_ACPI_STATUS(status); >> /* Write #2: Write both SLP_TYP + SLP_EN */ >> >> status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); >> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c >> index e721863..ffcc364 100644 >> --- a/drivers/acpi/osl.c >> +++ b/drivers/acpi/osl.c >> @@ -77,8 +77,7 @@ EXPORT_SYMBOL(acpi_in_debugger); >> extern char line_buf[80]; >> #endif /*ENABLE_DEBUGGER */ >> >> -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, >> - u32 pm1b_ctrl); >> +static int (*__acpi_os_prepare_sleep)(u8 sleep_state); >> >> static acpi_osd_handler acpi_irq_handler; >> static void *acpi_irq_context; >> @@ -1757,13 +1756,11 @@ acpi_status acpi_os_terminate(void) >> return AE_OK; >> } >> >> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, >> - u32 pm1b_control) >> +acpi_status acpi_os_prepare_sleep(u8 sleep_state) >> { >> int rc = 0; >> if (__acpi_os_prepare_sleep) >> - rc = __acpi_os_prepare_sleep(sleep_state, >> - pm1a_control, pm1b_control); >> + rc = __acpi_os_prepare_sleep(sleep_state); >> if (rc < 0) >> return AE_ERROR; >> else if (rc > 0) >> @@ -1772,8 +1769,7 @@ acpi_status acpi_os_prepare_sleep(u8 sleep_state, >> u32 pm1a_control, >> return AE_OK; >> } >> >> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >> - u32 pm1a_ctrl, u32 pm1b_ctrl)) >> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state)) >> { >> __acpi_os_prepare_sleep = func; >> } >> diff --git a/include/linux/acpi.h b/include/linux/acpi.h >> index 17b5b59..8de1043 100644 >> --- a/include/linux/acpi.h >> +++ b/include/linux/acpi.h >> @@ -480,8 +480,7 @@ static inline bool acpi_driver_match_device(struct >> device *dev, >> void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, >> u32 pm1a_ctrl, u32 pm1b_ctrl)); >> >> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, >> - u32 pm1a_control, u32 pm1b_control); >> +acpi_status acpi_os_prepare_sleep(u8 sleep_state); >> #ifdef CONFIG_X86 >> void arch_reserve_mem_area(acpi_physical_address addr, size_t size); >> #else >> >> .. massive snip.. >>>>> On 07/24/2013 10:38 AM, Moore, Robert wrote: >>>>>> I haven''t found a high-level description of "acpi_os_prepare_sleep", >>>> perhaps I missed it. >>>>>> Can someone point me to the overall description of this change and why >> it is >>>> being considered? >>>>> Hi Bob, >>>>> >>>>> For this series, the v6 of this series does a decent job of what it is >>>>> trying to accomplish: >>>>> https://lkml.org/lkml/2013/7/1/205 >>>>> >>>>> However, I recognize that this does not really describe *why* >>>>> acpi_os_prepare_sleep is necessary to begin with. For that, we need to >>>>> go back a little more. >>>>> >>>>> The summary for the series that introduced it is a good description, >>>>> of the reasons it is necessary: >>>>> http://lkml.indiana.edu/hypermail/linux/kernel/1112.2/00450.html >>>>> >>>>> In summary though - in the case of Xen (and I believe this is also >>>>> true in tboot) a value inappropriate for a VM (which dom0 is a special >>>>> case >>>>> of) was being written to cr3, and the physical machine would never >>>>> come out of S3. >>>>> >>>>> This mechanism gives an os specific hook to do something else down at >>>>> the lower levels, while still being able to take advantage of the >>>>> large amount of OS independent code in ACPICA. >>>> It might be also prudent to look at original ''hook'' that was added by Intel in >> the >>>> Linux code to support TXT: >>>> >>>> >>>> commit 86886e55b273f565935491816c7c96b82469d4f8 >>>> Author: Joseph Cihula <joseph.cihula@intel.com> >>>> Date: Tue Jun 30 19:31:07 2009 -0700 >>>> >>>> x86, intel_txt: Intel TXT Sx shutdown support >>>> >>>> Support for graceful handling of sleep states (S3/S4/S5) after an >> Intel(R) >>>> TXT launch. >>>> >>>> Without this patch, attempting to place the system in one of the ACPI >>>> sleep >>>> states (S3/S4/S5) will cause the TXT hardware to treat this as an >> attack >>>> and >>>> will cause a system reset, with memory locked. Not only may the >>>> subsequent >>>> memory scrub take some time, but the platform will be unable to >> enter >>>> the >>>> requested power state. >>>> >>>> This patch calls back into the tboot so that it may properly and >> securely >>>> clean >>>> up system state and clear the secrets-in-memory flag, after which it >> will >>>> place >>>> the system into the requested sleep state using ACPI information >> passed >>>> by the kernel. >>>> >>>> arch/x86/kernel/smpboot.c | 2 ++ >>>> drivers/acpi/acpica/hwsleep.c | 3 +++ >>>> kernel/cpu.c | 7 ++++++- >>>> 3 files changed, 11 insertions(+), 1 deletion(-) >>>> >>>> Signed-off-by: Joseph Cihula <joseph.cihula@intel.com> >>>> Signed-off-by: Shane Wang <shane.wang@intel.com> >>>> Signed-off-by: H. Peter Anvin <hpa@zytor.com> >>>> >>>> I suspect that if tboot was used with a different OS (Solaris?) it would hit the >>>> same case and a similar hook would be needed. >>>> >>>> Said ''hook'' (which was a call to tboot_sleep) was converted to be a more >>>> neutral ''acpi_os_prepare_sleep'' which tboot can use (and incidently Xen >> too). >>>> I think what Bob is saying that if said hook is neccessary (and I believe it is - >> and >>>> Intel TXT maintainer thinks so too since he added it in the first place), then >> the >>>> right way of adding it is via the ACPICA tree. >>>> >>>> Should the discussion for this be moved there ? >> (https://acpica.org/community) >>>> and an generic ''os_prepare_sleep'' patch added in >>>> git://github.com/acpica/acpica.git? >>>> >>>> -- >>>> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the >> body >>>> of a message to majordomo@vger.kernel.org More majordomo info at >>>> http://vger.kernel.org/majordomo-info.html >>> -- >>> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in >>> the body of a message to majordomo@vger.kernel.org >>> More majordomo info at http://vger.kernel.org/majordomo-info.html >>> Please read the FAQ at http://www.tux.org/lkml/ >>>
Zheng, Lv
2013-Jul-29 02:22 UTC
Re: [PATCH v3 1/3] acpi: Call acpi_os_prepare_sleep hook in reduced hardware sleep path
We can find the maintainer''s reply that the patch set will be merged. So let me just do a top-based reply here. The examples I showed in the previous emails are just examples that could be used to demonstrate the difficulties on the future ACPICA development that brought by the hooks. Since all what we are talking about are the future, we can just live with the current approaches. We can find a way in the future when the conflicts do happen. Thanks and best regards -Lv> On Saturday, July 27, 2013 2:04 AM konrad wilk >> On 7/25/2013 10:51 PM, Zheng, Lv wrote: > >> From: Konrad Rzeszutek Wilk [mailto:konrad.wilk@oracle.com] > >> Sent: Thursday, July 25, 2013 8:04 PM > >> > >> CC-ing some of the tboot maintainers. > >>> As what I''ve said, it''s up to the others to determine if the patch is OK. > >>> I just need to make my concerns visible in the community. :-) > >> If I understand your concerns you don''t want the hook to depend on any > >> of the bit manipulations the existing code does for the pm1 values. The > >> hook should do it itself case it needs to tweak them or what not. > >> > >> And it also frees you from altering the ACPICA code without having to > >> worry about being dependent on what the input values the hook requires? > >> > >> Is this what you had in mind? (not compile tested nor tested). > > Actually I''ve drafted such a patch that had conflicts with the Xen/tboot hooks. > > Ok, so the idea patch is not yet what you had in mind I surmise? > > Looking at the patch "ACPICA: Hardware: Modify sleep hardware > interfaces" from said > bugzilla I believe you could still retain the hook. You could even add > it as part of the > state machine (before the values are written to the respective area). > > Then the patchset has to first delete the hooks to make test possible for > testers. > > It is here: > > https://bugzilla.kernel.org/show_bug.cgi?id=54181 > I must be missing something obvious but the patches just say "Removes > the hook for debugging purpose." > I think the reason you did that is b/c you were not sure were it would > fit in your "ACPICA: Hardware: Modify sleep hardware interfaces" patch. > But as I said - I am probably missing something obvious. > > > > >> I am not even sure if outside the drivers/acpi you can call > >> acpi_hw_get_bit_register_info .. > > If we want this patch to be accepted without modification, then someone can > help to do such cleanup in the future when ACPICA change happens. > How would you expose said functions to non-ACPICA drivers? > > > >> And since the Xen bits would do the same exact bit manipulation it > >> probably could use a library to do pm1* stuff so both tboot and Xen > >> can use it. > > This sounds better. > > I think Xen and tboot will need such a library to atomically accessing PM > register fields. > > The sad part is that it would mirror the same exact code paths that the > existing ACPICA code does. Which is why > it was just passing in the pm* registers. But I understand that you > prefer to have a generic API so that you don''t have to worry about > low-level implementations of platform hooks. > > What if this hook was allowed to be turned in the state machine? That is > the acpi_sleep_dispatch and > it over-wrote part of the "write to PM1" state? The goal of the hook is > to redirect the write using a different mechanism - so if the ''write to > PM1'' is accomplished then that is good. > > > > Thanks and best regards > > -Lv > > > >> diff --git a/arch/x86/kernel/tboot.c b/arch/x86/kernel/tboot.c > >> index f84fe00..59570b1 100644 > >> --- a/arch/x86/kernel/tboot.c > >> +++ b/arch/x86/kernel/tboot.c > >> @@ -273,20 +273,75 @@ static void tboot_copy_fadt(const struct > >> acpi_table_fadt *fadt) > >> offsetof(struct acpi_table_facs, firmware_waking_vector); > >> } > >> > >> -static int tboot_sleep(u8 sleep_state, u32 pm1a_control, u32 > pm1b_control) > >> +static int tboot_get_pm_control(bool legacy) > >> +{ > >> + u32 pm1a_control; > >> + u32 pm1b_control; > >> + u32 in_value; > >> + acpi_status status; > >> + struct acpi_bit_register_info *sleep_type_reg_info; > >> + struct acpi_bit_register_info *sleep_enable_reg_info; > >> + > >> + if (!legacy) > >> + return -ENOSPC; > >> + > >> + status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL, > >> + &pm1a_control); > >> + if (ACPI_FAILURE(status)) { > >> + return -EXXX /* something */; > >> + } > >> + sleep_type_reg_info > >> acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_TYPE); > >> + sleep_enable_reg_info > >> acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_ENABLE); > >> + /* Clear the SLP_EN and SLP_TYP fields */ > >> + > >> + pm1a_control &= ~(sleep_type_reg_info->access_bit_mask | > >> + sleep_enable_reg_info->access_bit_mask); > >> + pm1b_control = pm1a_control; > >> + > >> + /* Insert the SLP_TYP bits */ > >> + > >> + pm1a_control |> >> + (acpi_gbl_sleep_type_a << sleep_type_reg_info->bit_position); > >> + pm1b_control |> >> + (acpi_gbl_sleep_type_b << sleep_type_reg_info->bit_position); > >> + > >> + /* > >> + * We split the writes of SLP_TYP and SLP_EN to workaround > >> + * poorly implemented hardware. > >> + */ > >> + > >> + /* Write #1: write the SLP_TYP data to the PM1 Control registers */ > >> + > >> + status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); > >> + if (ACPI_FAILURE(status)) { > >> + return -EXXX /* something */; > >> + } > >> + > >> + /* Insert the sleep enable (SLP_EN) bit */ > >> + > >> + pm1a_control |= sleep_enable_reg_info->access_bit_mask; > >> + pm1b_control |= sleep_enable_reg_info->access_bit_mask; > >> + tboot->acpi_sinfo.pm1a_cnt_val = pm1a_control; > >> + tboot->acpi_sinfo.pm1b_cnt_val = pm1b_control; > >> + return 0; > >> +} > >> +static int tboot_sleep(u8 sleep_state); > >> { > >> static u32 acpi_shutdown_map[ACPI_S_STATE_COUNT] = { > >> /* S0,1,2: */ -1, -1, -1, > >> /* S3: */ TB_SHUTDOWN_S3, > >> /* S4: */ TB_SHUTDOWN_S4, > >> /* S5: */ TB_SHUTDOWN_S5 }; > >> + int rc; > >> > >> if (!tboot_enabled()) > >> return 0; > >> > >> tboot_copy_fadt(&acpi_gbl_FADT); > >> - tboot->acpi_sinfo.pm1a_cnt_val = pm1a_control; > >> - tboot->acpi_sinfo.pm1b_cnt_val = pm1b_control; > >> + > >> + rc = tboot_get_pm_control(); > >> + if (rc < 0) > >> + return -1; > >> /* we always use the 32b wakeup vector */ > >> tboot->acpi_sinfo.vector_width = 32; > >> > >> diff --git a/drivers/acpi/acpica/hwesleep.c b/drivers/acpi/acpica/hwesleep.c > >> index 5e5f762..a8e98f9 100644 > >> --- a/drivers/acpi/acpica/hwesleep.c > >> +++ b/drivers/acpi/acpica/hwesleep.c > >> @@ -113,6 +113,15 @@ acpi_status acpi_hw_extended_sleep(u8 > >> sleep_state) > >> !acpi_gbl_FADT.sleep_status.address) { > >> return_ACPI_STATUS(AE_NOT_EXIST); > >> } > >> + /* > >> + * If using tboot or other platforms that need tweaks then > >> + * do them here, and also bail out if neccessary. > >> + */ > >> + status = acpi_os_prepare_sleep(sleep_state); > >> + if (ACPI_SKIP(status)) > >> + return_ACPI_STATUS(AE_OK); > >> + if (ACPI_FAILURE(status)) > >> + return_ACPI_STATUS(status); > >> > >> /* Clear wake status (WAK_STS) */ > >> > >> diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c > >> index e3828cc..909b23b 100644 > >> --- a/drivers/acpi/acpica/hwsleep.c > >> +++ b/drivers/acpi/acpica/hwsleep.c > >> @@ -108,6 +108,16 @@ acpi_status acpi_hw_legacy_sleep(u8 > sleep_state) > >> return_ACPI_STATUS(status); > >> } > >> > >> + /* > >> + * If using tboot or other platforms that need tweaks then > >> + * do them here, and also bail out if neccessary. > >> + */ > >> + status = acpi_os_prepare_sleep(sleep_state); > >> + if (ACPI_SKIP(status)) > >> + return_ACPI_STATUS(AE_OK); > >> + if (ACPI_FAILURE(status)) > >> + return_ACPI_STATUS(status); > >> + > >> /* Get current value of PM1A control */ > >> > >> status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL, > >> @@ -152,12 +162,6 @@ acpi_status acpi_hw_legacy_sleep(u8 > sleep_state) > >> > >> ACPI_FLUSH_CPU_CACHE(); > >> > >> - status = acpi_os_prepare_sleep(sleep_state, pm1a_control, > >> - pm1b_control); > >> - if (ACPI_SKIP(status)) > >> - return_ACPI_STATUS(AE_OK); > >> - if (ACPI_FAILURE(status)) > >> - return_ACPI_STATUS(status); > >> /* Write #2: Write both SLP_TYP + SLP_EN */ > >> > >> status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); > >> diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c > >> index e721863..ffcc364 100644 > >> --- a/drivers/acpi/osl.c > >> +++ b/drivers/acpi/osl.c > >> @@ -77,8 +77,7 @@ EXPORT_SYMBOL(acpi_in_debugger); > >> extern char line_buf[80]; > >> #endif /*ENABLE_DEBUGGER */ > >> > >> -static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, > >> - u32 pm1b_ctrl); > >> +static int (*__acpi_os_prepare_sleep)(u8 sleep_state); > >> > >> static acpi_osd_handler acpi_irq_handler; > >> static void *acpi_irq_context; > >> @@ -1757,13 +1756,11 @@ acpi_status acpi_os_terminate(void) > >> return AE_OK; > >> } > >> > >> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, > >> - u32 pm1b_control) > >> +acpi_status acpi_os_prepare_sleep(u8 sleep_state) > >> { > >> int rc = 0; > >> if (__acpi_os_prepare_sleep) > >> - rc = __acpi_os_prepare_sleep(sleep_state, > >> - pm1a_control, pm1b_control); > >> + rc = __acpi_os_prepare_sleep(sleep_state); > >> if (rc < 0) > >> return AE_ERROR; > >> else if (rc > 0) > >> @@ -1772,8 +1769,7 @@ acpi_status acpi_os_prepare_sleep(u8 > sleep_state, > >> u32 pm1a_control, > >> return AE_OK; > >> } > >> > >> -void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > >> - u32 pm1a_ctrl, u32 pm1b_ctrl)) > >> +void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state)) > >> { > >> __acpi_os_prepare_sleep = func; > >> } > >> diff --git a/include/linux/acpi.h b/include/linux/acpi.h > >> index 17b5b59..8de1043 100644 > >> --- a/include/linux/acpi.h > >> +++ b/include/linux/acpi.h > >> @@ -480,8 +480,7 @@ static inline bool acpi_driver_match_device(struct > >> device *dev, > >> void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, > >> u32 pm1a_ctrl, u32 pm1b_ctrl)); > >> > >> -acpi_status acpi_os_prepare_sleep(u8 sleep_state, > >> - u32 pm1a_control, u32 pm1b_control); > >> +acpi_status acpi_os_prepare_sleep(u8 sleep_state); > >> #ifdef CONFIG_X86 > >> void arch_reserve_mem_area(acpi_physical_address addr, size_t size); > >> #else > >> > >> .. massive snip.. > >>>>> On 07/24/2013 10:38 AM, Moore, Robert wrote: > >>>>>> I haven''t found a high-level description of "acpi_os_prepare_sleep", > >>>> perhaps I missed it. > >>>>>> Can someone point me to the overall description of this change and > why > >> it is > >>>> being considered? > >>>>> Hi Bob, > >>>>> > >>>>> For this series, the v6 of this series does a decent job of what it is > >>>>> trying to accomplish: > >>>>> https://lkml.org/lkml/2013/7/1/205 > >>>>> > >>>>> However, I recognize that this does not really describe *why* > >>>>> acpi_os_prepare_sleep is necessary to begin with. For that, we need to > >>>>> go back a little more. > >>>>> > >>>>> The summary for the series that introduced it is a good description, > >>>>> of the reasons it is necessary: > >>>>> http://lkml.indiana.edu/hypermail/linux/kernel/1112.2/00450.html > >>>>> > >>>>> In summary though - in the case of Xen (and I believe this is also > >>>>> true in tboot) a value inappropriate for a VM (which dom0 is a special > >>>>> case > >>>>> of) was being written to cr3, and the physical machine would never > >>>>> come out of S3. > >>>>> > >>>>> This mechanism gives an os specific hook to do something else down at > >>>>> the lower levels, while still being able to take advantage of the > >>>>> large amount of OS independent code in ACPICA. > >>>> It might be also prudent to look at original ''hook'' that was added by Intel > in > >> the > >>>> Linux code to support TXT: > >>>> > >>>> > >>>> commit 86886e55b273f565935491816c7c96b82469d4f8 > >>>> Author: Joseph Cihula <joseph.cihula@intel.com> > >>>> Date: Tue Jun 30 19:31:07 2009 -0700 > >>>> > >>>> x86, intel_txt: Intel TXT Sx shutdown support > >>>> > >>>> Support for graceful handling of sleep states (S3/S4/S5) after an > >> Intel(R) > >>>> TXT launch. > >>>> > >>>> Without this patch, attempting to place the system in one of the > ACPI > >>>> sleep > >>>> states (S3/S4/S5) will cause the TXT hardware to treat this as an > >> attack > >>>> and > >>>> will cause a system reset, with memory locked. Not only may the > >>>> subsequent > >>>> memory scrub take some time, but the platform will be unable to > >> enter > >>>> the > >>>> requested power state. > >>>> > >>>> This patch calls back into the tboot so that it may properly and > >> securely > >>>> clean > >>>> up system state and clear the secrets-in-memory flag, after which > it > >> will > >>>> place > >>>> the system into the requested sleep state using ACPI information > >> passed > >>>> by the kernel. > >>>> > >>>> arch/x86/kernel/smpboot.c | 2 ++ > >>>> drivers/acpi/acpica/hwsleep.c | 3 +++ > >>>> kernel/cpu.c | 7 ++++++- > >>>> 3 files changed, 11 insertions(+), 1 deletion(-) > >>>> > >>>> Signed-off-by: Joseph Cihula <joseph.cihula@intel.com> > >>>> Signed-off-by: Shane Wang <shane.wang@intel.com> > >>>> Signed-off-by: H. Peter Anvin <hpa@zytor.com> > >>>> > >>>> I suspect that if tboot was used with a different OS (Solaris?) it would hit > the > >>>> same case and a similar hook would be needed. > >>>> > >>>> Said ''hook'' (which was a call to tboot_sleep) was converted to be a more > >>>> neutral ''acpi_os_prepare_sleep'' which tboot can use (and incidently Xen > >> too). > >>>> I think what Bob is saying that if said hook is neccessary (and I believe it is > - > >> and > >>>> Intel TXT maintainer thinks so too since he added it in the first place), > then > >> the > >>>> right way of adding it is via the ACPICA tree. > >>>> > >>>> Should the discussion for this be moved there ? > >> (https://acpica.org/community) > >>>> and an generic ''os_prepare_sleep'' patch added in > >>>> git://github.com/acpica/acpica.git? > >>>> > >>>> -- > >>>> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the > >> body > >>>> of a message to majordomo@vger.kernel.org More majordomo info at > >>>> http://vger.kernel.org/majordomo-info.html > >>> -- > >>> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > >>> the body of a message to majordomo@vger.kernel.org > >>> More majordomo info at http://vger.kernel.org/majordomo-info.html > >>> Please read the FAQ at http://www.tux.org/lkml/ > >>>