From: jamie@jamieiles.com (Jamie Iles)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 2/4] ARM: CSR: add PM sleep entry for SiRFprimaII
Date: Tue, 23 Aug 2011 09:50:16 +0100 [thread overview]
Message-ID: <20110823085016.GH2796@pulham.picochip.com> (raw)
In-Reply-To: <1314080152-30503-3-git-send-email-Baohua.Song@csr.com>
Hi Barry, Rongjun,
A couple of minor nits inline.
Jamie
On Mon, Aug 22, 2011 at 11:15:50PM -0700, Barry Song wrote:
> From: Rongjun Ying <rongjun.ying@csr.com>
>
> Signed-off-by: Rongjun Ying <rongjun.ying@csr.com>
> Signed-off-by: Barry Song <Baohua.Song@csr.com>
> ---
> -v2:
> delete redundant ARM mode registers save/restore
> use generic cpu suspend
> move l2 cache suspend/resume codes out
> make memc become a device driver
>
> arch/arm/mach-prima2/pm.c | 158 ++++++++++++++++++++++++++++++++++++++++++
> arch/arm/mach-prima2/pm.h | 31 ++++++++
> arch/arm/mach-prima2/sleep.S | 61 ++++++++++++++++
> 3 files changed, 250 insertions(+), 0 deletions(-)
> create mode 100644 arch/arm/mach-prima2/pm.c
> create mode 100644 arch/arm/mach-prima2/pm.h
> create mode 100644 arch/arm/mach-prima2/sleep.S
>
> diff --git a/arch/arm/mach-prima2/pm.c b/arch/arm/mach-prima2/pm.c
> new file mode 100644
> index 0000000..75167df
> --- /dev/null
> +++ b/arch/arm/mach-prima2/pm.c
> @@ -0,0 +1,158 @@
> +/*
> + * power management entry for CSR SiRFprimaII
> + *
> + * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
> + *
> + * Licensed under GPLv2 or later.
> + */
> +
> +#include <linux/kernel.h>
> +#include <linux/suspend.h>
> +#include <linux/slab.h>
> +#include <linux/of.h>
> +#include <linux/of_address.h>
> +#include <linux/of_device.h>
> +#include <linux/of_platform.h>
> +#include <linux/io.h>
> +#include <linux/rtc/sirfsoc_rtciobrg.h>
> +#include <asm/suspend.h>
> +
> +#include "pm.h"
> +
> +static u32 sirfsoc_pwrc_base;
> +void __iomem *sirfsoc_memc_base;
> +
> +static void sirfsoc_set_wakeup_source(void)
> +{
> + u32 pwr_trigger_en_reg;
> + pwr_trigger_en_reg = sirfsoc_rtc_iobrg_readl(sirfsoc_pwrc_base +
> + SIRFSOC_PWRC_TRIGGER_EN);
> +#define X_ON_KEY_B (1 << 0)
> + sirfsoc_rtc_iobrg_writel(pwr_trigger_en_reg | X_ON_KEY_B,
> + sirfsoc_pwrc_base + SIRFSOC_PWRC_TRIGGER_EN);
> +}
> +
> +static void sirfsoc_set_sleep_mode(u32 mode)
> +{
> + u32 sleep_mode = sirfsoc_rtc_iobrg_readl(sirfsoc_pwrc_base +
> + SIRFSOC_PWRC_PDN_CTRL);
> + sleep_mode &= ~(SIRFSOC_SLEEP_MODE_MASK << 1);
> + sleep_mode |= ((mode << 1));
> + sirfsoc_rtc_iobrg_writel(sleep_mode, sirfsoc_pwrc_base +
> + SIRFSOC_PWRC_PDN_CTRL);
> +}
> +
> +int sirfsoc_pre_suspend_power_off(void)
> +{
> + u32 wakeup_entry = virt_to_phys(cpu_resume);
> +
> + sirfsoc_rtc_iobrg_writel(wakeup_entry,
> + SIRFSOC_PWRC_SCRATCH_PAD1);
> +
> + sirfsoc_set_wakeup_source();
> +
> + sirfsoc_set_sleep_mode(SIRFSOC_DEEP_SLEEP_MODE);
> +
> + return 0;
> +}
> +
> +static void sirfsoc_save_register(u32 *ptr)
> +{
> + /* todo: save necessary system registers here */
> +}
> +
> +static void sirfsoc_restore_regs(u32 *ptr)
> +{
> + /* todo: restore saved system registers here */
> +}
> +
> +static int sirfsoc_pm_enter(suspend_state_t state)
> +{
> + u32 *saved_regs;
> +
> + switch (state) {
> + case PM_SUSPEND_MEM:
> + saved_regs = kmalloc(1024, GFP_ATOMIC);
> + if (!saved_regs)
> + return -ENOMEM;
> +
> + sirfsoc_save_register(saved_regs);
> +
> + /* go zzz */
> + cpu_suspend(0, sirfsoc_finish_suspend);
> +
> + sirfsoc_restore_regs(saved_regs);
> + kfree(saved_regs);
> + break;
> + default:
> + return -EINVAL;
> + }
> + return 0;
> +}
> +
> +static const struct platform_suspend_ops sirfsoc_pm_ops = {
> + .enter = sirfsoc_pm_enter,
> + .valid = suspend_valid_only_mem,
> +};
> +
> +static int __init sirfsoc_pm_init(void)
> +{
> + suspend_set_ops(&sirfsoc_pm_ops);
> + return 0;
> +}
> +late_initcall(sirfsoc_pm_init);
> +
> +static struct of_device_id pwrc_ids[] = {
> + { .compatible = "sirf,prima2-pwrc" },
Missing a sentinel terminator and const?
> +};
> +
> +static int __init sirfsoc_of_pwrc_init(void)
> +{
> + struct device_node *np;
> + const __be32 *addrp;
> +
> + np = of_find_matching_node(NULL, pwrc_ids);
> + if (!np)
> + panic("unable to find compatible pwrc node in dtb\n");
> +
> + addrp = of_get_property(np, "reg", NULL);
> + if (!addrp)
> + panic("unable to find base address of pwrc node in dtb\n");
> +
> + sirfsoc_pwrc_base = be32_to_cpup(addrp);
> +
> + of_node_put(np);
> +
> + return 0;
> +}
> +postcore_initcall(sirfsoc_of_pwrc_init);
> +
> +static struct of_device_id memc_ids[] = {
> + { .compatible = "sirf,prima2-memc" },
and here?
> +};
> +
> +static int __devinit sirfsoc_memc_probe(struct platform_device *op)
> +{
> + struct device_node *np = op->dev.of_node;
> +
> + sirfsoc_memc_base = of_iomap(np, 0);
> + if (!sirfsoc_memc_base)
> + panic("unable to map memc registers\n");
> +
> + return 0;
> +}
> +
> +static struct platform_driver sirfsoc_memc_driver = {
> + .probe = sirfsoc_memc_probe,
> + .driver = {
> + .name = "sirfsoc-memc",
> + .owner = THIS_MODULE,
> + .of_match_table = memc_ids,
> + },
> +};
> +
> +static int __init sirfsoc_memc_init(void)
> +{
> + return platform_driver_register(&sirfsoc_memc_driver);
> +}
> +postcore_initcall(sirfsoc_memc_init);
> diff --git a/arch/arm/mach-prima2/pm.h b/arch/arm/mach-prima2/pm.h
> new file mode 100644
> index 0000000..fe2028b
> --- /dev/null
> +++ b/arch/arm/mach-prima2/pm.h
> @@ -0,0 +1,31 @@
> +/*
> + * arch/arm/mach-prima2/pm.h
> + *
> + * Copyright (C) 2011 CSR
> + *
> + * This file is licensed under the terms of the GNU General Public
> + * License version 2. This program is licensed "as is" without any
> + * warranty of any kind, whether express or implied.
> + */
> +
> +#ifndef _MACH_PRIMA2_PM_H_
> +#define _MACH_PRIMA2_PM_H_
> +
> +#define SIRFSOC_PWR_SLEEPFORCE 0x01
> +
> +#define SIRFSOC_SLEEP_MODE_MASK 0x3
> +#define SIRFSOC_DEEP_SLEEP_MODE 0x1
> +
> +#define SIRFSOC_PWRC_PDN_CTRL 0x0
> +#define SIRFSOC_PWRC_PON_OFF 0x4
> +#define SIRFSOC_PWRC_TRIGGER_EN 0x8
> +#define SIRFSOC_PWRC_PIN_STATUS 0x14
> +#define SIRFSOC_PWRC_SCRATCH_PAD1 0x18
> +#define SIRFSOC_PWRC_SCRATCH_PAD2 0x1C
> +
> +#ifndef __ASSEMBLY__
> +extern int sirfsoc_finish_suspend(unsigned long);
> +#endif
> +
> +#endif
> +
> diff --git a/arch/arm/mach-prima2/sleep.S b/arch/arm/mach-prima2/sleep.S
> new file mode 100644
> index 0000000..07f8067
> --- /dev/null
> +++ b/arch/arm/mach-prima2/sleep.S
> @@ -0,0 +1,61 @@
> +/*
> + * sleep mode for CSR SiRFprimaII
> + *
> + * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
> + *
> + * Licensed under GPLv2 or later.
> + */
> +
> +#include <linux/linkage.h>
> +#include <asm/ptrace.h>
> +#include <asm/assembler.h>
> +
> +#include "pm.h"
> +
> +#define DENALI_CTL_22_OFF 0x58
> +#define DENALI_CTL_112_OFF 0x1c0
> +
> + .text
> +
> +ENTRY(sirfsoc_finish_suspend)
> + @ r5: mem controller
> + ldr r0, =sirfsoc_memc_base
> + ldr r5, [r0]
> + @ r7: rtc iobrg controller
> + ldr r0, =sirfsoc_rtciobrg_base
> + ldr r7, [r0]
> +
> + @ Read the power control register and set the
> + @ sleep force bit.
> + ldr r0, =SIRFSOC_PWRC_PDN_CTRL
> + bl __sirfsoc_rtc_iobrg_readl
> + orr r0,r0,#SIRFSOC_PWR_SLEEPFORCE
> + ldr r1, =SIRFSOC_PWRC_PDN_CTRL
> + bl sirfsoc_rtc_iobrg_pre_writel
> + mov r1, #0x1
> +
> + @ read the MEM ctl register and set the self
> + @ refresh bit
> +
> + ldr r2, [r5, #DENALI_CTL_22_OFF]
> + orr r2, r2, #0x1
> +
> + @ Following code has to run from cache since
> + @ the RAM is going to self refresh mode
> + .align 5
> + str r2, [r5, #DENALI_CTL_22_OFF]
> +
> +1:
> + ldr r4, [r5, #DENALI_CTL_112_OFF]
> + tst r4, #0x1
> + bne 1b
> +
> + @ write SLEEPFORCE through rtc iobridge
> +
> + str r1, [r7]
> + @ wait rtc io bridge sync
> +1:
> + ldr r3, [r7]
> + tst r3, #0x01
> + bne 1b
> + b .
> --
> 1.7.1
>
>
>
> Member of the CSR plc group of companies. CSR plc registered in England and Wales, registered number 4187346, registered office Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, United Kingdom
> More information can be found at www.csr.com. Follow CSR on Twitter at http://twitter.com/CSR_PLC and read our blog at www.csr.com/blog
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2011-08-23 8:50 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-23 6:15 [PATCH v2 0/4] ARM: CSR: add rtciobrg and PM support Barry Song
2011-08-23 6:15 ` [PATCH v2 1/4] ARM: CSR: add rtc i/o bridge interface for SiRFprimaII Barry Song
2011-08-23 8:48 ` Jamie Iles
2011-08-23 9:33 ` Barry Song
2011-08-23 9:53 ` Jamie Iles
2011-08-23 15:59 ` Arnd Bergmann
2011-08-24 1:45 ` Barry Song
2011-08-23 16:01 ` Arnd Bergmann
2011-08-23 16:15 ` Arnd Bergmann
2011-08-24 1:43 ` Barry Song
2011-08-24 1:42 ` Barry Song
2011-08-23 6:15 ` [PATCH v2 2/4] ARM: CSR: add PM sleep entry " Barry Song
2011-08-23 8:50 ` Jamie Iles [this message]
2011-08-23 9:08 ` Barry Song
2011-08-23 9:41 ` Russell King - ARM Linux
2011-08-27 9:53 ` Barry Song
2011-08-25 7:27 ` Shawn Guo
2011-08-25 7:30 ` Barry Song
2011-08-25 8:21 ` Shawn Guo
2011-08-25 8:21 ` Barry Song
2011-08-25 8:33 ` Barry Song
2011-08-25 15:56 ` Arnd Bergmann
2011-08-25 22:58 ` Barry Song
2011-08-23 6:15 ` [PATCH v2 3/4] ARM: L2X0: move l2x0_init out of .init section Barry Song
2011-08-23 6:15 ` [PATCH v2 4/4] ARM: CSR: add PM suspend/resume entries for SiRFprimaII L2 cache Barry Song
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=20110823085016.GH2796@pulham.picochip.com \
--to=jamie@jamieiles.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).