From patchwork Fri Sep 23 08:48:08 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Santosh Shilimkar X-Patchwork-Id: 116030 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 746BCB6F7B for ; Fri, 23 Sep 2011 18:48:41 +1000 (EST) Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1R71Qv-0006Kv-GW; Fri, 23 Sep 2011 08:48:33 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1R71Qv-0003zR-45; Fri, 23 Sep 2011 08:48:33 +0000 Received: from comal.ext.ti.com ([198.47.26.152]) by canuck.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1R71Qs-0003z8-0S for linux-arm-kernel@lists.infradead.org; Fri, 23 Sep 2011 08:48:30 +0000 Received: from dbdp20.itg.ti.com ([172.24.170.38]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id p8N8mGtW021517 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 23 Sep 2011 03:48:19 -0500 Received: from dbde71.ent.ti.com (localhost [127.0.0.1]) by dbdp20.itg.ti.com (8.13.8/8.13.8) with ESMTP id p8N8mFnN000172; Fri, 23 Sep 2011 14:18:15 +0530 (IST) Received: from dbdp31.itg.ti.com (172.24.170.98) by DBDE71.ent.ti.com (172.24.170.149) with Microsoft SMTP Server id 8.3.106.1; Fri, 23 Sep 2011 14:18:15 +0530 Received: from ula0393909.apr.dhcp.ti.com (ula0393909.apr.dhcp.ti.com [172.24.136.99]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id p8N8mCG1028336; Fri, 23 Sep 2011 14:18:13 +0530 (IST) From: Santosh Shilimkar To: Subject: [GIT PULL] CPU PM notifiers and ARM driver PM updates for v3.2. Date: Fri, 23 Sep 2011 14:18:08 +0530 Message-ID: <1316767688-23705-1-git-send-email-santosh.shilimkar@ti.com> X-Mailer: git-send-email 1.7.4.1 MIME-Version: 1.0 X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110923_044830_194431_7CB14EBC X-CRM114-Status: GOOD ( 11.00 ) X-Spam-Score: -2.8 (--) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (-2.8 points) pts rule name description ---- ---------------------- -------------------------------------------------- -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at http://www.dnswl.org/, medium trust [198.47.26.152 listed in list.dnswl.org] -0.5 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain Cc: khilman@ti.com, Santosh Shilimkar , linux-arm-kernel@lists.infradead.org, ccross@android.com X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org Please pull the CPU PM notifier and ARM GIC, VFP PM updates for v3.2. I have added vfp comment fix and strongly ordered descriptor patch in this pull request. Regards, Santosh The following changes since commit b6fd41e29dea9c6753b1843a77e50433e6123bcb: Linux 3.1-rc6 (2011-09-12 14:02:02 -0700) are available in the git repository at: git://gitorious.org/omap-sw-develoment/linux-omap-dev.git for_3_2/for-rmk/arm_cpu_pm Colin Cross (5): cpu_pm: Add cpu power management notifiers cpu_pm: call notifiers during suspend ARM: gic: Use cpu pm notifiers to save gic state ARM: vfp: Use cpu pm notifiers to save vfp state ARM: gic: Allow gic arch extensions to provide irqchip flags Santosh Shilimkar (3): ARM: Enable CPU_PM notifiers on ARM machines. ARM: vfp: Fix the comment to make it consistent with the code. ARM: mm: Add strongly ordered descriptor support. arch/arm/Kconfig | 1 + arch/arm/common/gic.c | 188 ++++++++++++++++++++++++++++ arch/arm/include/asm/hardware/gic.h | 8 ++ arch/arm/include/asm/mach/map.h | 1 + arch/arm/include/asm/pgtable.h | 3 + arch/arm/mm/mmu.c | 8 ++ arch/arm/vfp/vfpmodule.c | 31 ++++-- include/linux/cpu_pm.h | 109 ++++++++++++++++ kernel/Makefile | 1 + kernel/cpu_pm.c | 233 +++++++++++++++++++++++++++++++++++ kernel/power/Kconfig | 4 + 11 files changed, 578 insertions(+), 9 deletions(-) create mode 100644 include/linux/cpu_pm.h create mode 100644 kernel/cpu_pm.c