2014-06-30 06:08:12

by Li, Aubrey

[permalink] [raw]
Subject: [Resend PATCHv3 0/3] x86: new Intel atom SOC power management controller driver

From: Aubrey Li <[email protected]>

The Power Management Controller (PMC) controls many of the power
management features present in the SoC. This driver provides the power
off functionality and s0ix residency control, also provides the SOC
device state and platform sleep state observation via debugfs.

v3:
- split the driver into tree pieces: the power off functionality, the
s0ix residency control, and the debugfs exports.

v2:
- allow pmc_atom and lpc_ich to work at the same time.

Aubrey Li (3):
X86 platform: New Intel Atom SOC power management controller driver
x86/pmc_atom: disable a few S0ix wake up events for S0ix residency
x86/pmc_atom: expose PMC device state and platform sleep state

arch/x86/Kconfig | 4 +
arch/x86/include/asm/pmc_atom.h | 107 +++++++++++++
arch/x86/kernel/Makefile | 1 +
arch/x86/kernel/pmc_atom.c | 321
+++++++++++++++++++++++++++++++++++++++
4 files changed, 433 insertions(+)
create mode 100644 arch/x86/include/asm/pmc_atom.h
create mode 100644 arch/x86/kernel/pmc_atom.c

--
1.7.10.4
--


2014-07-15 10:02:49

by Li, Aubrey

[permalink] [raw]
Subject: Re: [Resend PATCHv3 0/3] x86: new Intel atom SOC power management controller driver

ping......

On 2014/6/30 14:07, Li, Aubrey wrote:
> From: Aubrey Li <[email protected]>
>
> The Power Management Controller (PMC) controls many of the power
> management features present in the SoC. This driver provides the power
> off functionality and s0ix residency control, also provides the SOC
> device state and platform sleep state observation via debugfs.
>
> v3:
> - split the driver into tree pieces: the power off functionality, the
> s0ix residency control, and the debugfs exports.
>
> v2:
> - allow pmc_atom and lpc_ich to work at the same time.
>
> Aubrey Li (3):
> X86 platform: New Intel Atom SOC power management controller driver
> x86/pmc_atom: disable a few S0ix wake up events for S0ix residency
> x86/pmc_atom: expose PMC device state and platform sleep state
>
> arch/x86/Kconfig | 4 +
> arch/x86/include/asm/pmc_atom.h | 107 +++++++++++++
> arch/x86/kernel/Makefile | 1 +
> arch/x86/kernel/pmc_atom.c | 321
> +++++++++++++++++++++++++++++++++++++++
> 4 files changed, 433 insertions(+)
> create mode 100644 arch/x86/include/asm/pmc_atom.h
> create mode 100644 arch/x86/kernel/pmc_atom.c
>

2014-07-23 15:51:31

by H. Peter Anvin

[permalink] [raw]
Subject: Re: [Resend PATCHv3 0/3] x86: new Intel atom SOC power management controller driver

On 06/29/2014 11:07 PM, Li, Aubrey wrote:
> From: Aubrey Li <[email protected]>
>
> The Power Management Controller (PMC) controls many of the power
> management features present in the SoC. This driver provides the power
> off functionality and s0ix residency control, also provides the SOC
> device state and platform sleep state observation via debugfs.
>
> v3:
> - split the driver into tree pieces: the power off functionality, the
> s0ix residency control, and the debugfs exports.
>
> v2:
> - allow pmc_atom and lpc_ich to work at the same time.
>
> Aubrey Li (3):
> X86 platform: New Intel Atom SOC power management controller driver
> x86/pmc_atom: disable a few S0ix wake up events for S0ix residency
> x86/pmc_atom: expose PMC device state and platform sleep state
>

Looking at this now. In the future, please make sure that the patches
are sent as followup messages to the 0/* cover page so they thread
correctly.

-hpa