All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wenyou Yang <wenyou.yang@atmel.com>
To: <nicolas.ferre@atmel.com>, <linux@arm.linux.org.uk>
Cc: <linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>,
	<alexandre.belloni@free-electrons.com>,
	<sylvain.rochet@finsecur.com>, <peda@axentia.se>,
	<sergei.shtylyov@cogentembedded.com>, <linux@maxim.org.za>,
	<wenyou.yang@atmel.com>
Subject: [PATCH v2.0 0/6] ARM: AT91: pm improvement for 4.1
Date: Mon, 9 Mar 2015 11:47:37 +0800	[thread overview]
Message-ID: <1425872857-7772-1-git-send-email-wenyou.yang@atmel.com> (raw)

Hi,

The patch series purpose is to improve the AT91 pm code.
	Create a procedure to handle the sdram self-fresh mode.
	The standby mode uses same sram function as the suspend to memory mode,

It is based on the branch, at91-4.0-fixes
git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
	+ [PATCH] ARM: AT91: pm cleanup for 4.1

Chang log for v2.0
 - reserve the at91_xxx_standby() for at91_cpuidle_device.
 - rebase

Wenyou Yang (6):
  pm: at91: pm_slowclock: create the procedure to handle the sdram
    self-refresh
  pm: at91: move the copying the sram function to the sram
    initializationi phase
  pm: at91: standby mode uses the same sram function as suspend to
    memory mode
  pm: at91: rename file name: pm_slowclock.S -->pm_suspend.S
  pm: at91: rename function name:
    at91_slow_clock()-->at91_pm_suspend_sram_fn
  pm: at91: remove unused void (*at91_pm_standby)(void)

 arch/arm/mach-at91/Makefile       |    2 +-
 arch/arm/mach-at91/pm.c           |  121 +++++++------
 arch/arm/mach-at91/pm.h           |   10 ++
 arch/arm/mach-at91/pm_slowclock.S |  296 -------------------------------
 arch/arm/mach-at91/pm_suspend.S   |  349 +++++++++++++++++++++++++++++++++++++
 5 files changed, 420 insertions(+), 358 deletions(-)
 delete mode 100644 arch/arm/mach-at91/pm_slowclock.S
 create mode 100644 arch/arm/mach-at91/pm_suspend.S

-- 
1.7.9.5


WARNING: multiple messages have this Message-ID (diff)
From: wenyou.yang@atmel.com (Wenyou Yang)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2.0 0/6] ARM: AT91: pm improvement for 4.1
Date: Mon, 9 Mar 2015 11:47:37 +0800	[thread overview]
Message-ID: <1425872857-7772-1-git-send-email-wenyou.yang@atmel.com> (raw)

Hi,

The patch series purpose is to improve the AT91 pm code.
	Create a procedure to handle the sdram self-fresh mode.
	The standby mode uses same sram function as the suspend to memory mode,

It is based on the branch, at91-4.0-fixes
git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
	+ [PATCH] ARM: AT91: pm cleanup for 4.1

Chang log for v2.0
 - reserve the at91_xxx_standby() for at91_cpuidle_device.
 - rebase

Wenyou Yang (6):
  pm: at91: pm_slowclock: create the procedure to handle the sdram
    self-refresh
  pm: at91: move the copying the sram function to the sram
    initializationi phase
  pm: at91: standby mode uses the same sram function as suspend to
    memory mode
  pm: at91: rename file name: pm_slowclock.S -->pm_suspend.S
  pm: at91: rename function name:
    at91_slow_clock()-->at91_pm_suspend_sram_fn
  pm: at91: remove unused void (*at91_pm_standby)(void)

 arch/arm/mach-at91/Makefile       |    2 +-
 arch/arm/mach-at91/pm.c           |  121 +++++++------
 arch/arm/mach-at91/pm.h           |   10 ++
 arch/arm/mach-at91/pm_slowclock.S |  296 -------------------------------
 arch/arm/mach-at91/pm_suspend.S   |  349 +++++++++++++++++++++++++++++++++++++
 5 files changed, 420 insertions(+), 358 deletions(-)
 delete mode 100644 arch/arm/mach-at91/pm_slowclock.S
 create mode 100644 arch/arm/mach-at91/pm_suspend.S

-- 
1.7.9.5

             reply	other threads:[~2015-03-09  3:47 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-09  3:47 Wenyou Yang [this message]
2015-03-09  3:47 ` [PATCH v2.0 0/6] ARM: AT91: pm improvement for 4.1 Wenyou Yang
2015-03-09  3:48 ` [PATCH v2.0 1/6] pm: at91: pm_slowclock: create the procedure to handle the sdram self-refresh Wenyou Yang
2015-03-09  3:48   ` Wenyou Yang
2015-03-09  3:49 ` [PATCH v2.0 2/6] pm: at91: move the copying the sram function to the sram initializationi phase Wenyou Yang
2015-03-09  3:49   ` Wenyou Yang
2015-03-09  3:49 ` [PATCH v2.0 3/6] pm: at91: standby mode uses same sram function as suspend to memory mode Wenyou Yang
2015-03-09  3:49   ` Wenyou Yang
2015-03-09  3:50 ` [PATCH v2.0 4/6] pm: at91: rename file name: pm_slowclock.S -->pm_suspend.S Wenyou Yang
2015-03-09  3:50   ` Wenyou Yang
2015-03-09  3:51 ` [PATCH v2.0 5/6] pm: at91: rename function name: at91_slow_clock()-->at91_pm_suspend_sram_fn Wenyou Yang
2015-03-09  3:51   ` Wenyou Yang
2015-03-09  3:51 ` [PATCH v2.0 6/6] pm: at91: remove unused void (*at91_pm_standby)(void) Wenyou Yang
2015-03-09  3:51   ` Wenyou Yang
2015-03-12 18:58 ` [PATCH v2.0 0/6] ARM: AT91: pm improvement for 4.1 Sylvain Rochet
2015-03-12 18:58   ` Sylvain Rochet
2015-03-13 10:05 ` Nicolas Ferre
2015-03-13 10:05   ` Nicolas Ferre
2015-03-16  2:54   ` Yang, Wenyou
2015-03-16  2:54     ` Yang, Wenyou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1425872857-7772-1-git-send-email-wenyou.yang@atmel.com \
    --to=wenyou.yang@atmel.com \
    --cc=alexandre.belloni@free-electrons.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=linux@maxim.org.za \
    --cc=nicolas.ferre@atmel.com \
    --cc=peda@axentia.se \
    --cc=sergei.shtylyov@cogentembedded.com \
    --cc=sylvain.rochet@finsecur.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.