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=unavailable 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 1071DC76186 for ; Wed, 24 Jul 2019 20:11:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B6ED020659 for ; Wed, 24 Jul 2019 20:11:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1563999083; bh=3VdDBmTnwHVu1OpwPWnQ9O6tDB33STt5sdr6ZM/8KZw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=ejYe1NMOUoFgP7V40ahzOrXXGzxxz/dQgUcGObhbExluqf/sWOdv5T780M7VSKBSl WpMBoj8TH2RFd/wqgqpFbX3FUcz8o4PWGGoSUE2owQkNhWFK/YnRVn3xICN6PiAZ/M ujVjnYdb7fmFpfPztLCz2S4eWMQardnELrHbr51M= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2392109AbfGXT5u (ORCPT ); Wed, 24 Jul 2019 15:57:50 -0400 Received: from mail.kernel.org ([198.145.29.99]:43578 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2392093AbfGXT5r (ORCPT ); Wed, 24 Jul 2019 15:57:47 -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 26DE022BED; Wed, 24 Jul 2019 19:57:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1563998266; bh=3VdDBmTnwHVu1OpwPWnQ9O6tDB33STt5sdr6ZM/8KZw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ITZ7jlrhqlBTSm86/jrIksXsJQIpM4tOsb8l2Fi0qCFIGWaYEP/K4gNycqmOZGM+1 miO8+T6SBqtXOQE0kTuPE6NpnRSnf1tqEe2Dv+PgA6zt7NxXnr5f+EhYXrVLqdbJsW VN+YXJLReyzUl0X/D2oX7zwoQvnzvifG1KffAsgM= 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.1 306/371] arm64: tegra: Fix AGIC register range Date: Wed, 24 Jul 2019 21:20:58 +0200 Message-Id: <20190724191747.226059995@linuxfoundation.org> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190724191724.382593077@linuxfoundation.org> References: <20190724191724.382593077@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 @@ -1250,7 +1250,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>;