From patchwork Thu Oct 26 15:19:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Ripard X-Patchwork-Id: 830749 X-Patchwork-Delegate: trini@ti.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=) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3yN9fx1tr7z9t7D for ; Fri, 27 Oct 2017 02:20:09 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id DF663C21C71; Thu, 26 Oct 2017 15:19:43 +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 DE9F5C21DA0; Thu, 26 Oct 2017 15:19:23 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 6373BC21C34; Thu, 26 Oct 2017 15:19:22 +0000 (UTC) Received: from mail.free-electrons.com (mail.free-electrons.com [62.4.15.54]) by lists.denx.de (Postfix) with ESMTP id 0F366C21C26 for ; Thu, 26 Oct 2017 15:19:22 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 110) id 4946020857; Thu, 26 Oct 2017 17:19:20 +0200 (CEST) Received: from localhost (unknown [62.168.35.124]) by mail.free-electrons.com (Postfix) with ESMTPSA id 0679D2084E; Thu, 26 Oct 2017 17:19:19 +0200 (CEST) Date: Thu, 26 Oct 2017 17:19:21 +0200 From: Maxime Ripard To: Tom Rini Message-ID: <20171026151921.jdr5fslsrzhflalf@flea> MIME-Version: 1.0 User-Agent: NeoMutt/20171013 Cc: u-boot@lists.denx.de Subject: [U-Boot] [GIT PULL] u-boot-sunxi/master 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" Hi Tom, Here are a few changes that would be great to merge. It's basically a few fixes for CPU frequencies that were underclocked, fastboot that was broken on a NAND-based device (the CHIP Pro, and it also moves the fastboot NAND option to Kconfig in the process), some missing options, one board, and the size check and size reduction patches that we discussed at length. Thanks! Maxime The following changes since commit 4c7a211046a3956058b512edd8533f7df031cc4a: Kconfig: add CONFIG_BROKEN (2017-10-23 17:28:18 -0400) are available in the git repository at: git://git.denx.de/u-boot-sunxi master for you to fetch changes up to 819f1e081c527d2d02cdaeec0027384688cf5de0: sunxi: binman: Add U-Boot binary size check (2017-10-25 10:05:06 +0200) ---------------------------------------------------------------- Andre Przywara (1): SPL: SPI: select SPL_SPI_FLASH_SUPPORT on SPL_SPI_SUNXI Benjamin Young (1): cmd: fastboot: Enable FASTBOOT_FLASH_NAND for SUNXI_NAND devices Maxime Ripard (3): sunxi: Add support for the Banana Pi M2-Magic sunxi: Enable THUMB build for the U-Boot binary sunxi: binman: Add U-Boot binary size check Quentin Schulz (1): sunxi: clk: fix N formula for CPUX clocks arch/arm/Kconfig | 1 + arch/arm/dts/Makefile | 1 + arch/arm/dts/sun8i-r16-bananapi-m2m.dts | 321 +++++++++++++++++++++ arch/arm/dts/sunxi-u-boot.dtsi | 12 + arch/arm/include/asm/arch-sunxi/clock_sun8i_a83t.h | 2 +- cmd/fastboot/Kconfig | 10 + configs/Bananapi_m2m_defconfig | 21 ++ configs/orangepi_pc2_defconfig | 1 - configs/orangepi_zero_defconfig | 1 - drivers/mtd/spi/Kconfig | 1 + 10 files changed, 368 insertions(+), 3 deletions(-) create mode 100644 arch/arm/dts/sun8i-r16-bananapi-m2m.dts create mode 100644 configs/Bananapi_m2m_defconfig