From patchwork Tue Dec 29 09:38:47 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Venu Byravarasu X-Patchwork-Id: 7929221 Return-Path: X-Original-To: patchwork-linux-mmc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id ABF7D9F349 for ; Tue, 29 Dec 2015 09:38:57 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 32AF320160 for ; Tue, 29 Dec 2015 09:38:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1A2B12015E for ; Tue, 29 Dec 2015 09:38:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752706AbbL2Jiy (ORCPT ); Tue, 29 Dec 2015 04:38:54 -0500 Received: from hqemgate14.nvidia.com ([216.228.121.143]:3562 "EHLO hqemgate14.nvidia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751198AbbL2Jiw (ORCPT ); Tue, 29 Dec 2015 04:38:52 -0500 Received: from hqnvupgp07.nvidia.com (Not Verified[216.228.121.13]) by hqemgate14.nvidia.com id ; Tue, 29 Dec 2015 01:39:14 -0800 Received: from HQMAIL107.nvidia.com ([172.20.187.13]) by hqnvupgp07.nvidia.com (PGP Universal service); Tue, 29 Dec 2015 01:23:05 -0800 X-PGP-Universal: processed; by hqnvupgp07.nvidia.com on Tue, 29 Dec 2015 01:23:05 -0800 Received: from BGMAIL101.nvidia.com (10.25.59.10) by HQMAIL107.nvidia.com (172.20.187.13) with Microsoft SMTP Server (TLS) id 15.0.1104.5; Tue, 29 Dec 2015 09:38:51 +0000 Received: from BGMAIL103.nvidia.com (10.25.59.12) by bgmail101.nvidia.com (10.25.59.10) with Microsoft SMTP Server (TLS) id 15.0.1104.5; Tue, 29 Dec 2015 09:38:47 +0000 Received: from BGMAIL103.nvidia.com ([fe80::d4f4:a75c:6728:80cf]) by bgmail103.nvidia.com ([fe80::d4f4:a75c:6728:80cf%19]) with mapi id 15.00.1104.000; Tue, 29 Dec 2015 09:38:47 +0000 From: Venu Byravarasu To: "Fu, Zhonghui" , Ulf Hansson CC: Adrian Hunter , "chaotian.jing@mediatek.com" , "lars@metafoo.de" , "sergei.shtylyov@cogentembedded.com" , linux-mmc , "linux-kernel@vger.kernel.org" Subject: RE: [PATCH 1/2] mmc: enable mmc host device to suspend/resume asynchronously Thread-Topic: [PATCH 1/2] mmc: enable mmc host device to suspend/resume asynchronously Thread-Index: AQHRQYXwiN5RLwIocUK1PxUNM/0yC57htKHg Date: Tue, 29 Dec 2015 09:38:47 +0000 Message-ID: References: <568157A7.8030607@linux.intel.com> In-Reply-To: <568157A7.8030607@linux.intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ms-exchange-transport-fromentityheader: Hosted x-originating-ip: [10.24.194.76] MIME-Version: 1.0 Content-Language: en-US Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Looks good to me. Acked-by: Venu Byravarasu BR, Venu -----Original Message----- From: Fu, Zhonghui [mailto:zhonghui.fu@linux.intel.com] Sent: Monday, December 28, 2015 9:09 PM To: Ulf Hansson Cc: Adrian Hunter; chaotian.jing@mediatek.com; lars@metafoo.de; Venu Byravarasu; sergei.shtylyov@cogentembedded.com; linux-mmc; linux-kernel@vger.kernel.org Subject: [PATCH 1/2] mmc: enable mmc host device to suspend/resume asynchronously Now, PM core supports asynchronous suspend/resume mode for devices during system suspend/resume, and the power state transition of one device may be completed in separate kernel thread. PM core ensures all power state transition dependency between devices. This patch enables mmc hosts to suspend/resume asynchronously. This will take advantage of multicore and improve system suspend/resume speed. After applying this patch and enabling all mmc hosts' child devices to suspend/resume asynchronously on ASUS T100TA, the system suspend-to-idle time is reduced from 1645ms to 1107ms, and the system resume time is reduced from 940ms to 914ms. Signed-off-by: Zhonghui Fu --- drivers/mmc/core/host.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) -- 1.7.1 diff --git a/drivers/mmc/core/host.c b/drivers/mmc/core/host.c index da950c4..7222fd7 100644 --- a/drivers/mmc/core/host.c +++ b/drivers/mmc/core/host.c @@ -339,6 +339,7 @@ struct mmc_host *mmc_alloc_host(int extra, struct device *dev) host->class_dev.parent = dev; host->class_dev.class = &mmc_host_class; device_initialize(&host->class_dev); + device_enable_async_suspend(&host->class_dev); if (mmc_gpio_alloc(host)) { put_device(&host->class_dev);