From patchwork Tue Mar 21 06:15:19 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rajendra Nayak X-Patchwork-Id: 9636053 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id B2AEC601E9 for ; Tue, 21 Mar 2017 06:16:42 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A4CC8279E0 for ; Tue, 21 Mar 2017 06:16:42 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 997CE27CEA; Tue, 21 Mar 2017 06:16:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 545E1279E0 for ; Tue, 21 Mar 2017 06:16:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755658AbdCUGQl (ORCPT ); Tue, 21 Mar 2017 02:16:41 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:42378 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756141AbdCUGQi (ORCPT ); Tue, 21 Mar 2017 02:16:38 -0400 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 5160C60CE0; Tue, 21 Mar 2017 06:15:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1490076940; bh=6cK+2V/OW+7l1BP/V9FFd3gXMb08UzgmTV4QvNmV3Zc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nhd2cupUfugnZ4sca+i94vyld/tWqQ3UJREGgo8vJ/KhNUbMWGW1mXaJpfqhYfeI0 4woKn5H4HN9RXUHa8aSp75UhKw4BWamK36/N5uvMNF4FHBKL4v9gcL2uZgCHWWVRG0 ApasoE/k1h+OwuylUIpRcjFSdgf8SoemQKHeoXXA= Received: from blr-ubuntu-173.qualcomm.com (unknown [202.46.23.61]) (using TLSv1.1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: rnayak@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id BFD9360C55; Tue, 21 Mar 2017 06:15:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1490076939; bh=6cK+2V/OW+7l1BP/V9FFd3gXMb08UzgmTV4QvNmV3Zc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bDtVY8RfmpcTw2XTJKnkjSlCmDhdrlmEmZG61OUtdJ/VFEE8r0xTI/g6d7c9VffLr Ximji5zdUsZ6emR/ffcoWkeKZHAhmL6MyuHNtOpRmDp1bLdcpoP2bHy31d4V4sIRlc LUaxdAeVcyOWre5pP51wABfXsso2HXTkKNDxWwsg= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org BFD9360C55 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=rnayak@codeaurora.org From: Rajendra Nayak To: sboyd@codeaurora.org, mturquette@baylibre.com Cc: linux-clk@vger.kernel.org, linux-arm-msm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Rajendra Nayak , Catalin Marinas Subject: [PATCH 1/5] arm64: qcom: Select PM_GENERIC_DOMAINS Date: Tue, 21 Mar 2017 11:45:19 +0530 Message-Id: <1490076923-20194-2-git-send-email-rnayak@codeaurora.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1490076923-20194-1-git-send-email-rnayak@codeaurora.org> References: <1490076923-20194-1-git-send-email-rnayak@codeaurora.org> Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Enable PM_GENERIC_DOMAINS for 64-bit qualcomm platforms. This is required to ensure devices which are dependent on some gdscs (powerdomains) to be powered on before they can be probed, work as expected. CC: Catalin Marinas Signed-off-by: Rajendra Nayak --- arch/arm64/Kconfig.platforms | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms index 129cc5a..c5ae2cf 100644 --- a/arch/arm64/Kconfig.platforms +++ b/arch/arm64/Kconfig.platforms @@ -115,6 +115,8 @@ config ARCH_QCOM bool "Qualcomm Platforms" select GPIOLIB select PINCTRL + select PM + select PM_GENERIC_DOMAINS help This enables support for the ARMv8 based Qualcomm chipsets.