[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150203161821.GB24474@xora-haswell.xora.org.uk>
Date: Tue, 3 Feb 2015 16:18:22 +0000
From: Graeme Gregory <graeme.gregory@...aro.org>
To: "Rafael J. Wysocki" <rjw@...ysocki.net>
Cc: Hanjun Guo <hanjun.guo@...aro.org>,
Catalin Marinas <catalin.marinas@....com>,
Olof Johansson <olof@...om.net>, Arnd Bergmann <arnd@...db.de>,
Mark Rutland <mark.rutland@....com>,
Grant Likely <grant.likely@...aro.org>,
Will Deacon <will.deacon@....com>,
Lorenzo Pieralisi <Lorenzo.Pieralisi@....com>,
Sudeep Holla <Sudeep.Holla@....com>,
Jon Masters <jcm@...hat.com>,
Jason Cooper <jason@...edaemon.net>,
Marc Zyngier <marc.zyngier@....com>,
Bjorn Helgaas <bhelgaas@...gle.com>,
Daniel Lezcano <daniel.lezcano@...aro.org>,
Mark Brown <broonie@...nel.org>, Rob Herring <robh@...nel.org>,
Robert Richter <rric@...nel.org>,
Randy Dunlap <rdunlap@...radead.org>,
Charles.Garcia-Tobin@....com, phoenix.liyi@...wei.com,
Timur Tabi <timur@...eaurora.org>,
Ashwin Chaugule <ashwinc@...eaurora.org>,
suravee.suthikulpanit@....com,
Mark Langsdorf <mlangsdo@...hat.com>, wangyijing@...wei.com,
linux-acpi@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org, linaro-acpi@...ts.linaro.org,
Tomasz Nowicki <tomasz.nowicki@...aro.org>
Subject: Re: [PATCH v8 05/21] ACPI / sleep: Introduce sleep_arm.c
On Mon, Feb 02, 2015 at 11:18:24PM +0100, Rafael J. Wysocki wrote:
> On Monday, February 02, 2015 08:45:33 PM Hanjun Guo wrote:
> > From: Graeme Gregory <graeme.gregory@...aro.org>
> >
> > ACPI 5.1 does not currently support S states for ARM64 hardware but
> > ACPI code will call acpi_target_system_state() for device power
> > managment, so introduce sleep_arm.c to allow other drivers to function
> > until S states are defined.
> >
> > CC: Rafael J. Wysocki <rjw@...ysocki.net>
> > Tested-by: Suravee Suthikulpanit <Suravee.Suthikulpanit@....com>
> > Tested-by: Yijing Wang <wangyijing@...wei.com>
> > Tested-by: Mark Langsdorf <mlangsdo@...hat.com>
> > Tested-by: Jon Masters <jcm@...hat.com>
> > Tested-by: Timur Tabi <timur@...eaurora.org>
> > Signed-off-by: Graeme Gregory <graeme.gregory@...aro.org>
> > Signed-off-by: Tomasz Nowicki <tomasz.nowicki@...aro.org>
> > Signed-off-by: Hanjun Guo <hanjun.guo@...aro.org>
> > ---
> > drivers/acpi/Makefile | 4 ++++
> > drivers/acpi/sleep_arm.c | 28 ++++++++++++++++++++++++++++
> > 2 files changed, 32 insertions(+)
> > create mode 100644 drivers/acpi/sleep_arm.c
> >
> > diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile
> > index f74317c..bcec54e 100644
> > --- a/drivers/acpi/Makefile
> > +++ b/drivers/acpi/Makefile
> > @@ -23,7 +23,11 @@ acpi-y += nvs.o
> >
> > # Power management related files
> > acpi-y += wakeup.o
> > +ifeq ($(ARCH), arm64)
> > +acpi-y += sleep_arm.o
> > +else # X86, IA64
> > acpi-y += sleep.o
> > +endif
> > acpi-y += device_pm.o
> > acpi-$(CONFIG_ACPI_SLEEP) += proc.o
> >
> > diff --git a/drivers/acpi/sleep_arm.c b/drivers/acpi/sleep_arm.c
> > new file mode 100644
> > index 0000000..54578ef
> > --- /dev/null
> > +++ b/drivers/acpi/sleep_arm.c
> > @@ -0,0 +1,28 @@
> > +/*
> > + * ARM64 Specific Sleep Functionality
> > + *
> > + * Copyright (C) 2013-2014, Linaro Ltd.
> > + * Author: Graeme Gregory <graeme.gregory@...aro.org>
> > + *
> > + * This program is free software; you can redistribute it and/or modify
> > + * it under the terms of the GNU General Public License version 2 as
> > + * published by the Free Software Foundation.
> > + */
> > +
> > +#include <linux/acpi.h>
> > +
> > +/*
> > + * Currently the ACPI 5.1 standard does not define S states in a
> > + * manner which is usable for ARM64. These two stubs are sufficient
> > + * that system initialises and device PM works.
> > + */
> > +u32 acpi_target_system_state(void)
> > +{
> > + return ACPI_STATE_S0;
> > +}
> > +EXPORT_SYMBOL_GPL(acpi_target_system_state);
> > +
> > +int __init acpi_sleep_init(void)
> > +{
> > + return -ENOSYS;
> > +}
> >
>
> Why does this need to be in drivers/acpi/ ?
>
Sorry it doesn't it got left behind when we moved some other stuff.
Graeme
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists