From patchwork Wed Mar 7 21:51:57 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Marek_Beh=C3=BAn?= X-Patchwork-Id: 882810 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=nic.cz Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; secure) header.d=nic.cz header.i=@nic.cz header.b="E2fdcrg9"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3zxS9q5zjxz9sgv for ; Thu, 8 Mar 2018 08:55:11 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 734C3C21F98; Wed, 7 Mar 2018 21:55:08 +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=RCVD_IN_DNSWL_BLOCKED, T_DKIM_INVALID 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 39251C21DB6; Wed, 7 Mar 2018 21:55:05 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 8522DC21E68; Wed, 7 Mar 2018 21:55:03 +0000 (UTC) Received: from mail.nic.cz (mail.nic.cz [217.31.204.67]) by lists.denx.de (Postfix) with ESMTPS id 2B635C21BE5 for ; Wed, 7 Mar 2018 21:55:03 +0000 (UTC) Received: from dellmb.labs.office.nic.cz (unknown [IPv6:2001:1488:fffe:6:8982:ed8c:62b1:c0c8]) by mail.nic.cz (Postfix) with ESMTP id DCD75622AF; Wed, 7 Mar 2018 22:55:02 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=nic.cz; s=default; t=1520459702; bh=Ns0DV3AA2QkATtVsUolQsx7xsltjDd21w2aHEaByYno=; h=From:To:Date; b=E2fdcrg95A6DB6LBZMTe6wU0LWqJXGxv6L3w9yJA3gWjwFnUNxY9gZveE0d1Vu2n7 aXdIyKh1/vNF4FI89HsgecdcwuE3iEUhXwU2p2YQrbyPEis/vLVoGTY5OXbTrzgyF1 jJU0mqcb/TI9Dmbe30hSjcGR2SnmHKlzGfpEjO50= From: =?utf-8?q?Marek_Beh=C3=BAn?= To: u-boot@lists.denx.de Date: Wed, 7 Mar 2018 22:51:57 +0100 Message-Id: <20180307215216.10418-1-marek.behun@nic.cz> X-Mailer: git-send-email 2.16.1 MIME-Version: 1.0 X-Virus-Scanned: clamav-milter 0.99.2 at mail X-Virus-Status: Clean Cc: Tomas Hlavacek , Stefan Roese Subject: [U-Boot] [PATCH v1 00/19] More support for Armada 37xx boards 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: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This is a series of patches to update the support of Armada 37xx devices. Summary: - patches 1-6 are cosmetic patches for the Armada 37xx comphy driver - the 7th patch adds support for USB3 on comphy lane 2, which needs indirect register access - patches 8-9 change USB3 phy initialization according to u-boot-marvell changes - the 10th patch adds support for nontrivial order of nodes in the pin selector register in comphy_mux (on Armada 37xx the first two lanes are switched in the selector register) - the 11th patch adds the mux support for Armada 37xx comphy driver - the 12th patch is a workaround for SGMII initialization, which needs to change the pin selector register temporarily (while resetting the phy) - the 13th patch changes defconfigs to enable Armada 37xx pinctrl driver by default and removes the board_early_init_f for those board, which contained a temporary solution to not having the pinctrl driver - the 14th patch add support for TBG and peripheral clocks on Armada 37xx - the 15th patch changes the Armada 37xx SPI driver to use the clock driver - the 16th patch adds support for clk dump command - the 17th patch fixed the pinctrl driver according to new revision of the specification - the 18th patch contains some more cosmetic fixes, this time for comphy_core - the 19th patch fixes a bug in the mvneta driver which can occur on invalid property name in device tree Signed-off-by: Marek Behun