From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 96A4EC76186 for ; Wed, 24 Jul 2019 19:39:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 685B921873 for ; Wed, 24 Jul 2019 19:39:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1563997154; bh=+1CtUSW3tQES3BjigDLmzURGFyl5t5pK8WVLmrjnpjY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=xTaULlYs50Nyq74nqGUAOItQ20Q5S1Pst3bZw/NYxWRGahBOeCbUUuobfSERzHSL/ C6KJHMMI6E+G97aLEUX5or+FrGl79y9AHGkOgTW+cStefuJ21syICodtnqEaxWKEnB BXhfXy4alsRsfVeKbwkh4htwjxPcT3TfdTmujJYw= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389876AbfGXTjN (ORCPT ); Wed, 24 Jul 2019 15:39:13 -0400 Received: from mail.kernel.org ([198.145.29.99]:40166 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389419AbfGXTjL (ORCPT ); Wed, 24 Jul 2019 15:39:11 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 5514922ADA; Wed, 24 Jul 2019 19:39:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1563997150; bh=+1CtUSW3tQES3BjigDLmzURGFyl5t5pK8WVLmrjnpjY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=u+fEO/tj0Vt/WYAGbOvZv73s9ofQdp4MR2MLUZQ+1WOvbQnlEClOXFzQkdn3VawJx DtVepZUFojaqeRKpQ14RrSNKZ5vl8MEO7rBJXfl6z29pTbGc7EGkCI48H9UOSjTzgn +CanTa4gNEWvWdb3bkYCSHXjtSXrOax/yYWVo2L8= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Jon Hunter , Thierry Reding Subject: [PATCH 5.2 336/413] arm64: tegra: Fix AGIC register range Date: Wed, 24 Jul 2019 21:20:27 +0200 Message-Id: <20190724191759.864229523@linuxfoundation.org> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190724191735.096702571@linuxfoundation.org> References: <20190724191735.096702571@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Jon Hunter commit ba24eee6686f6ed3738602b54d959253316a9541 upstream. The Tegra AGIC interrupt controller is an ARM GIC400 interrupt controller. Per the ARM GIC device-tree binding, the first address region is for the GIC distributor registers and the second address region is for the GIC CPU interface registers. The address space for the distributor registers is 4kB, but currently this is incorrectly defined as 8kB for the Tegra AGIC and overlaps with the CPU interface registers. Correct the address space for the distributor to be 4kB. Cc: stable@vger.kernel.org Signed-off-by: Jon Hunter Fixes: bcdbde433542 ("arm64: tegra: Add AGIC node for Tegra210") Signed-off-by: Thierry Reding Signed-off-by: Greg Kroah-Hartman --- arch/arm64/boot/dts/nvidia/tegra210.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/arm64/boot/dts/nvidia/tegra210.dtsi +++ b/arch/arm64/boot/dts/nvidia/tegra210.dtsi @@ -1258,7 +1258,7 @@ compatible = "nvidia,tegra210-agic"; #interrupt-cells = <3>; interrupt-controller; - reg = <0x702f9000 0x2000>, + reg = <0x702f9000 0x1000>, <0x702fa000 0x2000>; interrupts = ; clocks = <&tegra_car TEGRA210_CLK_APE>;