From patchwork Mon Feb 20 05:45:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 6830 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id DAD2723EB0 for ; Mon, 20 Feb 2012 05:51:03 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 99AB7A18365 for ; Mon, 20 Feb 2012 05:51:03 +0000 (UTC) Received: by iabz7 with SMTP id z7so10004567iab.11 for ; Sun, 19 Feb 2012 21:51:03 -0800 (PST) Received: from mr.google.com ([10.50.153.198]) by 10.50.153.198 with SMTP id vi6mr10467345igb.30.1329717063064 (num_hops = 1); Sun, 19 Feb 2012 21:51:03 -0800 (PST) Received: by 10.50.153.198 with SMTP id vi6mr8476870igb.30.1329717063013; Sun, 19 Feb 2012 21:51:03 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.11.10 with SMTP id r10csp37024ibr; Sun, 19 Feb 2012 21:51:02 -0800 (PST) Received: by 10.68.189.196 with SMTP id gk4mr48078807pbc.44.1329717061892; Sun, 19 Feb 2012 21:51:01 -0800 (PST) Received: from mail-pw0-f50.google.com (mail-pw0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id t9si27133231pbi.13.2012.02.19.21.51.01 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 19 Feb 2012 21:51:01 -0800 (PST) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by pbcwy7 with SMTP id wy7so6718395pbc.37 for ; Sun, 19 Feb 2012 21:51:01 -0800 (PST) MIME-Version: 1.0 Received: by 10.68.189.106 with SMTP id gh10mr47796177pbc.127.1329717061182; Sun, 19 Feb 2012 21:51:01 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id f10sm12311627pbn.58.2012.02.19.21.50.58 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 19 Feb 2012 21:51:00 -0800 (PST) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH] ARM: EXYNOS: Hook up JPEG PD to generic PD infrastructure Date: Mon, 20 Feb 2012 11:15:02 +0530 Message-Id: <1329716702-9337-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQnsAtC/UP3fNElA2yNaxwsrUC7zqCxxX3cP7IrXbzWFzeslFy7cEcxLV+pU4B2aT2ULJjoV Add JPEG power domain (PD) to generic power domain infrastructure. Signed-off-by: Sachin Kamat --- Hi Kukjin, Please apply this over the JPEG platform suport patches for Exynos. --- arch/arm/mach-exynos/pm_domains.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-exynos/pm_domains.c b/arch/arm/mach-exynos/pm_domains.c index 0b04af2..4e8340f 100644 --- a/arch/arm/mach-exynos/pm_domains.c +++ b/arch/arm/mach-exynos/pm_domains.c @@ -183,6 +183,9 @@ static __init int exynos4_pm_init_power_domain(void) #ifdef CONFIG_S5P_DEV_CSIS1 exynos_pm_add_dev_to_genpd(&s5p_device_mipi_csis1, &exynos4_pd_cam); #endif +#ifdef CONFIG_S5P_DEV_JPEG + exynos_pm_add_dev_to_genpd(&s5p_device_jpeg, &exynos4_pd_cam); +#endif return 0; } arch_initcall(exynos4_pm_init_power_domain);