From patchwork Mon Aug 17 02:05:25 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Huang Shijie X-Patchwork-Id: 7023501 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 6E0DFC05AC for ; Mon, 17 Aug 2015 06:49:52 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9977820523 for ; Mon, 17 Aug 2015 06:49:51 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 88F602050B for ; Mon, 17 Aug 2015 06:49:50 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1ZREDG-0004jr-NL; Mon, 17 Aug 2015 06:48:06 +0000 Received: from merlin.infradead.org ([2001:4978:20e::2]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1ZREBd-0002yW-VM for linux-arm-kernel@bombadil.infradead.org; Mon, 17 Aug 2015 06:46:26 +0000 Received: from eu-smtp-delivery-143.mimecast.com ([207.82.80.143]) by merlin.infradead.org with esmtp (Exim 4.85 #2 (Red Hat Linux)) id 1ZR9qf-0003o9-NF for linux-arm-kernel@lists.infradead.org; Mon, 17 Aug 2015 02:08:30 +0000 Received: from cam-owa1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.140]) by eu-smtp-1.mimecast.com with ESMTP id uk-mta-21-75PmwWkuSB2hLNq_dbVUNw-1; Mon, 17 Aug 2015 03:05:38 +0100 Received: from Huang.asiapac.arm.com ([10.1.2.79]) by cam-owa1.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Mon, 17 Aug 2015 03:05:38 +0100 From: Huang Shijie To: catalin.marinas@arm.com Subject: [PATCH] arm64: dts: Juno: fix the wrong memory map sizes for the I2C/EHCI/OHCI Date: Mon, 17 Aug 2015 10:05:25 +0800 Message-Id: <1439777125-9409-1-git-send-email-shijie.huang@arm.com> X-Mailer: git-send-email 2.1.4 X-OriginalArrivalTime: 17 Aug 2015 02:05:38.0569 (UTC) FILETIME=[363ED790:01D0D891] X-MC-Unique: 75PmwWkuSB2hLNq_dbVUNw-1 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20150816_220829_976263_2ECE0683 X-CRM114-Status: UNSURE ( 7.34 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -4.2 (----) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Huang Shijie , devicetree@vger.kernel.org, will.deacon@arm.com, linux-arm-kernel@lists.infradead.org MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, 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 From the "Juno ARM Development Platform Soc Techinical Reference Mannual(r1p0)", we get the following memory map sizes (3-25): I2C : 0x7ffa0000 0x7ffa00ff (256B) USB OHCI : 0x7ffb0000 0x7ffb0fff (4KB) USB EHCI : 0x7ffc0000 0x7ffc0fff (4KB) This patch fixes the wrong memory map sizes for them. Signed-off-by: Huang Shijie --- arch/arm64/boot/dts/arm/juno-base.dtsi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm64/boot/dts/arm/juno-base.dtsi b/arch/arm64/boot/dts/arm/juno-base.dtsi index e3ee960..7b2715f 100644 --- a/arch/arm64/boot/dts/arm/juno-base.dtsi +++ b/arch/arm64/boot/dts/arm/juno-base.dtsi @@ -74,7 +74,7 @@ i2c@7ffa0000 { compatible = "snps,designware-i2c"; - reg = <0x0 0x7ffa0000 0x0 0x1000>; + reg = <0x0 0x7ffa0000 0x0 0x100>; #address-cells = <1>; #size-cells = <0>; interrupts = ; @@ -95,14 +95,14 @@ ohci@7ffb0000 { compatible = "generic-ohci"; - reg = <0x0 0x7ffb0000 0x0 0x10000>; + reg = <0x0 0x7ffb0000 0x0 0x1000>; interrupts = ; clocks = <&soc_usb48mhz>; }; ehci@7ffc0000 { compatible = "generic-ehci"; - reg = <0x0 0x7ffc0000 0x0 0x10000>; + reg = <0x0 0x7ffc0000 0x0 0x1000>; interrupts = ; clocks = <&soc_usb48mhz>; };