From patchwork Fri May 31 14:00:26 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maciej Pijanowski X-Patchwork-Id: 1108537 X-Patchwork-Delegate: prabhakar@freescale.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=3mdeb.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 45Ftjm4w9Xz9s4V for ; Sat, 1 Jun 2019 04:47:40 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 3C982C21E08; Fri, 31 May 2019 18:47:14 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 467DFC21BE5; Fri, 31 May 2019 18:46:59 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 32CA1C21C51; Fri, 31 May 2019 14:00:47 +0000 (UTC) Received: from 11.mo1.mail-out.ovh.net (11.mo1.mail-out.ovh.net [188.165.48.29]) by lists.denx.de (Postfix) with ESMTPS id AD245C21C8B for ; Fri, 31 May 2019 14:00:46 +0000 (UTC) Received: from player718.ha.ovh.net (unknown [10.108.54.156]) by mo1.mail-out.ovh.net (Postfix) with ESMTP id 7902D17C0C0 for ; Fri, 31 May 2019 16:00:45 +0200 (CEST) Received: from 3mdeb.com (85-222-117-222.dynamic.chello.pl [85.222.117.222]) (Authenticated sender: maciej.pijanowski@3mdeb.com) by player718.ha.ovh.net (Postfix) with ESMTPSA id D18DF649EECF; Fri, 31 May 2019 14:00:41 +0000 (UTC) From: Maciej Pijanowski To: u-boot@lists.denx.de Date: Fri, 31 May 2019 16:00:26 +0200 Message-Id: <1559311226-31376-1-git-send-email-maciej.pijanowski@3mdeb.com> X-Mailer: git-send-email 2.7.4 X-Ovh-Tracer-Id: 3714625270340005401 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgeduuddrudefuddgjeefucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdpvefjgfevmfevgfenuceurghilhhouhhtmecuhedttdenuc X-Mailman-Approved-At: Fri, 31 May 2019 18:46:56 +0000 Subject: [U-Boot] [PATCH] fsl-layerscape/ls1046a_serdes.c: fix 0x3363 serdes1 setting X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" According to the table 31-1 in the QorIQ LS1046A Reference Manual, Rev. 2, 11/2018, the D lane of SerDes1 uses following settings: - SGMII.9, not SGMII.5 for D lane, - SGMII.10, not SGMII.6 for C lane. Signed-off-by: Maciej Pijanowski Cc: prabhakar.kushwaha@nxp.com --- arch/arm/cpu/armv8/fsl-layerscape/ls1046a_serdes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/cpu/armv8/fsl-layerscape/ls1046a_serdes.c b/arch/arm/cpu/armv8/fsl-layerscape/ls1046a_serdes.c index f8310f210556..91de5ff0d3da 100644 --- a/arch/arm/cpu/armv8/fsl-layerscape/ls1046a_serdes.c +++ b/arch/arm/cpu/armv8/fsl-layerscape/ls1046a_serdes.c @@ -29,7 +29,7 @@ static struct serdes_config serdes1_cfg_tbl[] = { {0x1163, {XFI_FM1_MAC9, XFI_FM1_MAC10, PCIE1, SGMII_FM1_DTSEC6} }, {0x2263, {SGMII_2500_FM1_DTSEC9, SGMII_2500_FM1_DTSEC10, PCIE1, SGMII_FM1_DTSEC6} }, - {0x3363, {SGMII_FM1_DTSEC5, SGMII_FM1_DTSEC6, PCIE1, + {0x3363, {SGMII_FM1_DTSEC9, SGMII_FM1_DTSEC10, PCIE1, SGMII_FM1_DTSEC6} }, {0x2223, {SGMII_2500_FM1_DTSEC9, SGMII_2500_FM1_DTSEC10, SGMII_2500_FM1_DTSEC5, SGMII_FM1_DTSEC6} },