From patchwork Tue Jan 29 04:20:56 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: gio--- via openwrt-devel X-Patchwork-Id: 1032465 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=lists.openwrt.org (client-ip=2607:7c80:54:e::133; helo=bombadil.infradead.org; envelope-from=openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=lists.openwrt.org Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="AZVPIp6J"; dkim-atps=neutral Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43pYG84x0jz9sDL for ; Tue, 29 Jan 2019 15:21:04 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Date:Sender:Content-Type: Subject:List-Help:Reply-To:List-Archive:List-Unsubscribe:List-Subscribe:Cc: From:List-Post:List-Id:Message-ID:MIME-Version:References:In-Reply-To:To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=8fkn57NWnrRzGwsg/jBxK+c3GMzogvmjCv1oGQJjSSg=; b=AZVPIp6JDS9Q+S6g5UNZAVCgs oOsczvFtEn7qs61EXZZvtcwiDFiszIK+gB9IspkzCf2I6tXL7EY4ymahBoHVZJ2hKTUzBVtmNsTzr 5oLz2ArywvM9eTpnqKFWTbXy7WY4Fh5WYhnEvbsICCy9IOz2L3MXyZgo2ELozFyoaYD0j5x6gmL6+ RF5dWxy0PhFbvL1i6HdyVYLr2HTqXpEA7d/jvkfNyFxNwFGDm/hUaJjPcPJgMw0Qu2HEAc7bG0TV/ RrhfEo8VDavj6oSdVK8Ft9m3oYztq0ZSr4OSWpPP/sUXkaHBoS0Z0dMDsYzufzmGShMO/VZUihh85 luuwucFPw==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1goKtM-0006M0-7c; Tue, 29 Jan 2019 04:20:56 +0000 To: openwrt-devel@lists.openwrt.org In-Reply-To: <20190129041253.18725-1-spiccinini@altermundi.net> References: <20190129041253.18725-1-spiccinini@altermundi.net> MIME-Version: 1.0 Message-ID: List-Id: List-Post: X-Patchwork-Original-From: Santiago Piccinini via openwrt-devel From: gio--- via openwrt-devel Precedence: list Cc: Santiago Piccinini X-Mailman-Version: 2.1.21 X-BeenThere: openwrt-devel@lists.openwrt.org List-Subscribe: , List-Unsubscribe: , List-Archive: Reply-To: Santiago Piccinini List-Help: Subject: [OpenWrt-Devel] [PATCH 1/2] ath79: fix qca955x pcie0 memory size Sender: "openwrt-devel" Date: Tue, 29 Jan 2019 04:20:56 +0000 Errors-To: openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software. Datasheet states that both PCI ranges are of 0x2000000 size: 0x1000_0000-0x11FF_FFF and 0x1200_0000-0x13FF_0000. Signed-off-by: Santiago Piccinini Reviewed-by: Daniel Golle --- target/linux/ath79/dts/qca9557.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/ath79/dts/qca9557.dtsi b/target/linux/ath79/dts/qca9557.dtsi index bfc2545b27..541aa6916e 100644 --- a/target/linux/ath79/dts/qca9557.dtsi +++ b/target/linux/ath79/dts/qca9557.dtsi @@ -186,7 +186,7 @@ <0x180f0000 0x100>, /* CTRL */ <0x14000000 0x1000>; /* CFG */ reg-names = "crp_base", "ctrl_base", "cfg_base"; - ranges = <0x2000000 0 0x10000000 0x10000000 0 0x04000000 /* pci memory */ + ranges = <0x2000000 0 0x10000000 0x10000000 0 0x02000000 /* pci memory */ 0x1000000 0 0x00000000 0x0000000 0 0x000001>; /* io space */ interrupt-parent = <&intc2>; interrupts = <1>;