From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by mx.groups.io with SMTP id smtpd.web11.60435.1672741780678095556 for ; Tue, 03 Jan 2023 02:29:40 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@kernel.org header.s=k20201202 header.b=CmFmw+Io; spf=pass (domain: kernel.org, ip: 139.178.84.217, mailfrom: ardb@kernel.org) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id E827261231 for ; Tue, 3 Jan 2023 10:29:39 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 582F1C433F0 for ; Tue, 3 Jan 2023 10:29:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1672741779; bh=5ynjp9aTcbU0hN3dz9MUbjbOrSYjyviiPFAl4fPkOnE=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=CmFmw+IolqNG+QelOpLqtxUYA0avbRAvoL8oxnD3XJmP0v/b0snLK01Qh+xK3YVx6 5XBGb2I1VyzOoAO2zSeaBg7RfEcIccZBIuvOJ1VzM4Yl96V06NkYEwo01n1y+eq6b0 ZpXnCqvS+Da6mvHwPJHGxg0Zer1UAc+nJ1HgoerVzgw+Wmu+9+ILGgGFtHEo/A89KL WMhqMfdiRTHyb0Uf3muJY3mhTOfwcrgrhz2fUN8p86slyMeaAlBEiv40XvLhUX4e7n rrShOrHaxC5PiyqaMrfynDoaWIvFehkzRl/VepGG67wyGHYnRUCU7Qne7q8NzlidzN InhFU/XkSpejQ== Received: by mail-lf1-f48.google.com with SMTP id z26so45054854lfu.8 for ; Tue, 03 Jan 2023 02:29:39 -0800 (PST) X-Gm-Message-State: AFqh2kp8+WMw1/oaOpPfyZj3WE0DyhE0Qa24luYDUilQumlvXG5jvCf7 ndgk+ij91P+mFJ7ULV0deB8Rc2lH7THRpddPqlU= X-Google-Smtp-Source: AMrXdXu0DRHwjlWJRH5Z0qFUo6v6WlPs1A428suIpqAofvL/j/J0NDHDfKzFE7U2xOH6CLXnsUhnf4UOPqLOJ3xpiDY= X-Received: by 2002:a05:6512:3d93:b0:4b8:9001:a694 with SMTP id k19-20020a0565123d9300b004b89001a694mr2054476lfv.426.1672741777355; Tue, 03 Jan 2023 02:29:37 -0800 (PST) MIME-Version: 1.0 References: <20221227011521.812930-1-mw@semihalf.com> In-Reply-To: <20221227011521.812930-1-mw@semihalf.com> From: "Ard Biesheuvel" Date: Tue, 3 Jan 2023 11:29:26 +0100 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [edk2-non-osi: PATCH] SolidRun/Cn913xCEx7Eval: Add missing switch CPU port mode description To: Marcin Wojtas Cc: devel@edk2.groups.io, quic_llindhol@quicinc.com, ardb+tianocore@kernel.org, jaz@semihalf.com Content-Type: text/plain; charset="UTF-8" On Tue, 27 Dec 2022 at 02:17, Marcin Wojtas wrote: > > The DSA device tree binding requires setting the > CPU port mode explicitly and it was missing in the CN913x CEx7 > Evaluation Board swtich description. Fix that. > > Signed-off-by: Marcin Wojtas > --- > Silicon/Marvell/OcteonTx/DeviceTree/T91/cn9130-cex7.dts | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/Silicon/Marvell/OcteonTx/DeviceTree/T91/cn9130-cex7.dts b/Silicon/Marvell/OcteonTx/DeviceTree/T91/cn9130-cex7.dts > index 50e6d69..d42911c 100644 > --- a/Silicon/Marvell/OcteonTx/DeviceTree/T91/cn9130-cex7.dts > +++ b/Silicon/Marvell/OcteonTx/DeviceTree/T91/cn9130-cex7.dts > @@ -285,6 +285,11 @@ > reg = <5>; > label = "cpu"; > ethernet = <&cp0_eth2>; > + phy-mode = "2500base-x"; > + fixed-link { > + speed = <2500>; > + full-duplex; > + }; > }; > }; > Pushed as 61662e8596dd9a64..9a5511ca917a27e4 Thanks,