From patchwork Thu May 24 13:09:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexey Brodkin X-Patchwork-Id: 919840 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=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=synopsys.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 40s8q21y6pz9s1w for ; Thu, 24 May 2018 23:09:18 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id DDDD7C21EC5; Thu, 24 May 2018 13:09:15 +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 45DDEC21C2F; Thu, 24 May 2018 13:09:13 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 51672C21C2F; Thu, 24 May 2018 13:09:12 +0000 (UTC) Received: from smtprelay.synopsys.com (smtprelay4.synopsys.com [198.182.47.9]) by lists.denx.de (Postfix) with ESMTPS id BF337C21BE5 for ; Thu, 24 May 2018 13:09:11 +0000 (UTC) Received: from mailhost.synopsys.com (mailhost2.synopsys.com [10.13.184.66]) by smtprelay.synopsys.com (Postfix) with ESMTP id 767C824E1400; Thu, 24 May 2018 06:09:10 -0700 (PDT) Received: from US01WXQAHTC1.internal.synopsys.com (us01wxqahtc1.internal.synopsys.com [10.12.238.230]) by mailhost.synopsys.com (Postfix) with ESMTP id 1871F4A11; Thu, 24 May 2018 06:09:10 -0700 (PDT) Received: from DE02WEHTCA.internal.synopsys.com (10.225.19.92) by US01WXQAHTC1.internal.synopsys.com (10.12.238.230) with Microsoft SMTP Server (TLS) id 14.3.361.1; Thu, 24 May 2018 06:09:09 -0700 Received: from DE02WEMBXB.internal.synopsys.com ([fe80::95ce:118a:8321:a099]) by DE02WEHTCA.internal.synopsys.com ([::1]) with mapi id 14.03.0361.001; Thu, 24 May 2018 15:09:07 +0200 From: Alexey Brodkin To: "trini@konsulko.com" Thread-Topic: [U-Boot] Please pull ARC changes Thread-Index: AQHT82BlsuK4bJoDXUGUfxmKvsnVZg== Date: Thu, 24 May 2018 13:09:07 +0000 Message-ID: <933ccc6af69b68667331c65d3b7e187965d191d0.camel@synopsys.com> Accept-Language: en-US, ru-RU Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.225.15.87] Content-ID: MIME-Version: 1.0 Cc: "u-boot@lists.denx.de" , "uboot-snps-arc@synopsys.com" Subject: [U-Boot] Please pull ARC changes 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, The following changes since commit 8a9dc16e4d07d29fff08b7caca36f0865065f7f7: spl: Add full fitImage support (2018-05-23 22:06:42 -0400) are available in the Git repository at: git://git.denx.de/u-boot-arc.git tags/arc-uart-updates-for-2018.07-rc1 for you to fetch changes up to 0556b569e52caf3ab519c340435236e4940cc1cd: ARC: Enable debug UART on nSIM boards (2018-05-24 15:59:17 +0300) ---------------------------------------------------------------- Add support for DEBUG_UART on ARC devboards This required us to do 2 things: 1) Insert a call to debug_uart_init() in early boot code 2) Convert serial_arc to Kconfig Once both items above are done we just patched defconfigs. ---------------------------------------------------------------- Alexey Brodkin (3): serial: Convert ARC_SERIAL to Kconfig serial/serial_arc: Implement debug serial ARC: Enable debug UART on nSIM boards Eugeniy Paltsev (2): ARC: init debug uart in early common arc code ARC: enable debug uart for HSDK and AXS10x boards arch/arc/lib/start.S | 5 +++++ configs/axs101_defconfig | 5 +++++ configs/axs103_defconfig | 5 +++++ configs/hsdk_defconfig | 5 +++++ configs/nsim_700_defconfig | 5 +++++ configs/nsim_700be_defconfig | 5 +++++ configs/nsim_hs38_defconfig | 5 +++++ configs/nsim_hs38be_defconfig | 5 +++++ drivers/serial/Kconfig | 16 ++++++++++++++++ drivers/serial/serial_arc.c | 26 ++++++++++++++++++++++++++ include/configs/nsim.h | 10 ---------- scripts/config_whitelist.txt | 1 - 12 files changed, 82 insertions(+), 11 deletions(-) -Alexey