From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7E0E9C433F5 for ; Thu, 7 Oct 2021 11:51:37 +0000 (UTC) Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 7310661090 for ; Thu, 7 Oct 2021 11:51:35 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 7310661090 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=andestech.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id A9E1283484; Thu, 7 Oct 2021 13:51:32 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=andestech.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 96BE183490; Thu, 7 Oct 2021 13:51:30 +0200 (CEST) Received: from ATCSQR.andestech.com (atcsqr.andestech.com [60.248.187.195]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 25E6B83373 for ; Thu, 7 Oct 2021 13:51:25 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=andestech.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=ycliang@andestech.com Received: from mail.andestech.com (ATCPCS16.andestech.com [10.0.1.222]) by ATCSQR.andestech.com with ESMTP id 197Bp6SX056868; Thu, 7 Oct 2021 19:51:06 +0800 (GMT-8) (envelope-from ycliang@andestech.com) Received: from ubuntu02 (10.0.12.212) by ATCPCS16.andestech.com (10.0.1.222) with Microsoft SMTP Server id 14.3.498.0; Thu, 7 Oct 2021 19:51:04 +0800 Date: Thu, 7 Oct 2021 19:51:00 +0800 From: Leo Liang To: CC: , Subject: [PULL] u-boot-riscv/master Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline User-Agent: Mutt/2.0.5 (2021-01-21) X-Originating-IP: [10.0.12.212] X-DNSRBL: X-MAIL: ATCSQR.andestech.com 197Bp6SX056868 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 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" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean Hi Tom, The following changes since commit ea67f467a43e4c8852bd1ce1bb75f5dc6c3788d1: Merge branch '2021-10-06-assorted-improvements' (2021-10-06 13:46:31 -0400) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-riscv.git for you to fetch changes up to 1b2b52f29402b5aaccccadfe4ba11bd3f29bd414: riscv: ae350: enable Coherence Manager for ae350 (2021-10-07 16:08:23 +0800) CI result shows no issue: https://source.denx.de/u-boot/custodians/u-boot-riscv/-/pipelines/9388 ---------------------------------------------------------------- Heinrich Schuchardt (4): riscv: add missing SBI extension definitions cmd/sbi: use constants instead of numerical values sysreset: provide SBI based sysreset driver configs: enable SYSRESET_SBI on qemu-riscvXX_smode_defconfig Leo Yu-Chi Liang (1): riscv: ae350: enable Coherence Manager for ae350 Samuel Holland (3): serial: Add a debug console using the RISC-V SBI interface riscv: Fix setting no-map in reserved memory nodes riscv: image: Use the first DRAM bank for bootm_low Sean Anderson (4): clk: k210: Fix checking if ulongs are less than 0 k210: clk: Refactor out_of_spec tests test: dm: k210: Reduce duplication in test cases clk: k210: Try harder to get the best config MAINTAINERS | 1 + arch/riscv/cpu/ax25/cpu.c | 42 +++++++++++ arch/riscv/cpu/cpu.c | 13 +++- arch/riscv/include/asm/sbi.h | 40 ++++++++++- arch/riscv/lib/fdt_fixup.c | 5 +- arch/riscv/lib/sbi.c | 12 ++++ cmd/riscv/sbi.c | 30 ++++---- common/image.c | 2 +- configs/qemu-riscv32_smode_defconfig | 1 + configs/qemu-riscv32_spl_defconfig | 1 + configs/qemu-riscv64_smode_defconfig | 1 + configs/qemu-riscv64_spl_defconfig | 1 + drivers/clk/clk_kendryte.c | 134 +++++++++++++++++++++-------------- drivers/serial/Kconfig | 10 +++ drivers/serial/Makefile | 1 + drivers/serial/serial_sbi.c | 16 +++++ drivers/sysreset/Kconfig | 12 ++++ drivers/sysreset/Makefile | 1 + drivers/sysreset/sysreset_sbi.c | 51 +++++++++++++ test/dm/k210_pll.c | 36 +++++----- 20 files changed, 313 insertions(+), 97 deletions(-) create mode 100644 drivers/serial/serial_sbi.c create mode 100644 drivers/sysreset/sysreset_sbi.c Best regards, Leo