From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Google-Smtp-Source: AH8x227eDlpi/MjeEjoeSm/IJd8y92d/qjVugltVHS837uD8gjky+c22fMHEOODXsTRg8ZY01IVl ARC-Seal: i=1; a=rsa-sha256; t=1517591141; cv=none; d=google.com; s=arc-20160816; b=VtCZgDmVy7WiaIx0LlQlQ074YMaD6Uq2AUbknyg1EQCGbVv3N1iKwmKz3VyWWZp72Q ya7sLJB2mM+7PvbQQrM0RIcMZbQ2TgH4NLnrSofbaergKtxKupiG+yKRYSPimk39Qgbm nJpoegCjPG1XND3BEn4kWl5mqWWqW2icsb4x9fog0xc24f9hfBadJzjFIxMdWaLBkrpb FSoGI4xm52NgDKXVYnNozwm/4Al7xwCExGEe+6Z7yUSmYfsuZXYpGiJ1GoH2vMEe9Exe aXIEjWJql8vn5JTxlT50Wpn3++0foeWmrvxaZWrug3jqBIlzBckfenDDIKYUIpieBGpS cWIg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=mime-version:user-agent:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=dXjSdb29exT6xaMPPLOKVE8PzJ+RnaCZ06SQCe9e5gE=; b=VlX3gvvQq5teF7SVVCYOjqxn1PrzUkN0NKL8obMVbQhMT7nRrtldYA1Gz5HFPsIrkL ThbzHY0RFFLYL9EUD7HKECecTwEpZPWE+4jieiNV4ADEibdsBptaMKGpDjymx/xgTTjQ T2hMgubzynq545y6FOYjFRxJ7IbGQqe2b/Be1m0VPgEQsxQvQD8fS2G0njn+ykZiPvMo ++3UxQAE+hltr/Y+CMN9tIA5Hr3E0KBTB90QVikboI2Yhw7STaCBoG4mvQJS8UluFhJ2 2SiIiwDkBmkREL9URxK9CjsFN4ni/Te1hxP268JzC1gNq+S9yFN2Hka15Fo6sg/IV/Xz oQEA== ARC-Authentication-Results: i=1; mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.71.90 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org Authentication-Results: mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.71.90 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Jon Mason , Florian Fainelli , Sasha Levin Subject: [PATCH 4.9 66/86] ARM: dts: NSP: Fix PPI interrupt types Date: Fri, 2 Feb 2018 17:58:26 +0100 Message-Id: <20180202140828.759363734@linuxfoundation.org> X-Mailer: git-send-email 2.16.1 In-Reply-To: <20180202140822.679101338@linuxfoundation.org> References: <20180202140822.679101338@linuxfoundation.org> User-Agent: quilt/0.65 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-getmail-retrieved-from-mailbox: INBOX X-GMAIL-LABELS: =?utf-8?b?IlxcU2VudCI=?= X-GMAIL-THRID: =?utf-8?q?1591309648545488098?= X-GMAIL-MSGID: =?utf-8?q?1591309648545488098?= X-Mailing-List: linux-kernel@vger.kernel.org List-ID: 4.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Florian Fainelli [ Upstream commit 5f1aa51c7a1eef1c5a60b8334e32c89904964245 ] Booting a kernel results in the kernel warning us about the following PPI interrupts configuration: [ 0.105127] smp: Bringing up secondary CPUs ... [ 0.110545] GIC: PPI11 is secure or misconfigured [ 0.110551] GIC: PPI13 is secure or misconfigured Fix this by using the appropriate edge configuration for PPI11 and PPI13, this is similar to what was fixed for Northstar (BCM5301X) in commit 0e34079cd1f6 ("ARM: dts: BCM5301X: Correct GIC_PPI interrupt flags"). Fixes: 7b2e987de207 ("ARM: NSP: add minimal Northstar Plus device tree") Fixes: 1a9d53cabaf4 ("ARM: dts: NSP: Add TWD Support to DT") Acked-by: Jon Mason Signed-off-by: Florian Fainelli Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- arch/arm/boot/dts/bcm-nsp.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/arch/arm/boot/dts/bcm-nsp.dtsi +++ b/arch/arm/boot/dts/bcm-nsp.dtsi @@ -85,7 +85,7 @@ timer@20200 { compatible = "arm,cortex-a9-global-timer"; reg = <0x20200 0x100>; - interrupts = ; + interrupts = ; clocks = <&periph_clk>; }; @@ -93,7 +93,7 @@ compatible = "arm,cortex-a9-twd-timer"; reg = <0x20600 0x20>; interrupts = ; + IRQ_TYPE_EDGE_RISING)>; clocks = <&periph_clk>; };