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=-9.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,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 C6E66C04AAC for ; Mon, 20 May 2019 13:43:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 97CE9216C4 for ; Mon, 20 May 2019 13:43:27 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=synopsys.com header.i=@synopsys.com header.b="VUpqz3vh" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389525AbfETNnZ (ORCPT ); Mon, 20 May 2019 09:43:25 -0400 Received: from smtprelay-out1.synopsys.com ([198.182.47.102]:47878 "EHLO smtprelay-out1.synopsys.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S2389412AbfETNnT (ORCPT ); Mon, 20 May 2019 09:43:19 -0400 Received: from mailhost.synopsys.com (dc2-mailhost2.synopsys.com [10.12.135.162]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by smtprelay-out1.synopsys.com (Postfix) with ESMTPS id 5B2D4C01A7; Mon, 20 May 2019 13:43:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=synopsys.com; s=mail; t=1558359805; bh=reTmF1bCjM35df0o63yVrU14FQlaB/qxg+NFA08wM/8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References:From; b=VUpqz3vhDn9+ax2Mdpp2Hbg3hVFBTfN83Ie1NgzpQ0NpS6iwVO0r7I5qZB2zmaunm es44+96V+tZ7xBrvQAbxV5scvO+Wse8jCFvPbDO3FJ1ZF7zRzZz95FTOz3snU2+e6N 5d2/c2/Rvyk3LW8wvTGQPJgccoAGxgnHmQ/HkXzkZpLUxa1VXTkPhCS/VRttk6N5+x DWQTeQOC0j1Y1rTVdl4TYScVJ7PCik0ZqjkKe8iBGAWWlNEtybjL7txpBGNmPSv0i7 kByT31TYlrsoSrwQ5skCa4flsvj9q8mR2MVKf+MRGXLwwPFbBq7XfJon7mRCNA0PCb 5o1bScGxUiHRw== Received: from de02.synopsys.com (de02.internal.synopsys.com [10.225.17.21]) by mailhost.synopsys.com (Postfix) with ESMTP id B4FE7A00A2; Mon, 20 May 2019 13:43:15 +0000 (UTC) Received: from de02dwia024.internal.synopsys.com (de02dwia024.internal.synopsys.com [10.225.19.81]) by de02.synopsys.com (Postfix) with ESMTP id E944D3CE91; Mon, 20 May 2019 15:43:14 +0200 (CEST) From: Jose Abreu To: devicetree@vger.kernel.org, linux-snps-arc@lists.infradead.org, linux-kernel@vger.kernel.org Cc: Jose Abreu , Joao Pinto , Rob Herring , Mark Rutland , Vineet Gupta , Eugeniy Paltsev , Alexey Brodkin Subject: [PATCH 2/2] ARC: [plat-hsdk]: Add missing FIFO size entry in GMAC node Date: Mon, 20 May 2019 15:43:13 +0200 Message-Id: X-Mailer: git-send-email 2.7.4 In-Reply-To: References: In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add the binding for RX/TX fifo size of GMAC node. Signed-off-by: Jose Abreu Cc: Joao Pinto Cc: Rob Herring Cc: Mark Rutland Cc: Vineet Gupta Cc: Eugeniy Paltsev Cc: Alexey Brodkin --- arch/arc/boot/dts/hsdk.dts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arc/boot/dts/hsdk.dts b/arch/arc/boot/dts/hsdk.dts index b0f059377ab0..3bcd1edc4dcc 100644 --- a/arch/arc/boot/dts/hsdk.dts +++ b/arch/arc/boot/dts/hsdk.dts @@ -196,6 +196,9 @@ mac-address = [00 00 00 00 00 00]; /* Filled in by U-Boot */ dma-coherent; + tx-fifo-depth = <4096>; + rx-fifo-depth = <4096>; + mdio { #address-cells = <1>; #size-cells = <0>; -- 2.7.4