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 X-Spam-Level: X-Spam-Status: No, score=-10.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6D12CC4338F for ; Tue, 27 Jul 2021 03:20:12 +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 4E87860F11 for ; Tue, 27 Jul 2021 03:20:11 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 4E87860F11 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 142A783358; Tue, 27 Jul 2021 05:20:09 +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 892728335B; Tue, 27 Jul 2021 05:20:07 +0200 (CEST) Received: from ATCSQR.andestech.com (exmail.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 4C68883358 for ; Tue, 27 Jul 2021 05:20:02 +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 16R3JlJZ044469; Tue, 27 Jul 2021 11:19:47 +0800 (GMT-8) (envelope-from ycliang@andestech.com) Received: from andestech.com (10.0.15.65) by ATCPCS16.andestech.com (10.0.1.222) with Microsoft SMTP Server id 14.3.498.0; Tue, 27 Jul 2021 11:19:48 +0800 Date: Tue, 27 Jul 2021 11:19:46 +0800 From: Leo Liang To: Heinrich Schuchardt CC: Rick Jian-Zhi =?utf-8?B?Q2hlbijpmbPlu7rlv5cp?= , Heinrich Schuchardt , Bin Meng , Pragnesh Patel , "Atish Patra" , "u-boot@lists.denx.de" , Sean Anderson Subject: Re: [PATCH v2 0/2] cmd/sbi: add missing SBI information Message-ID: <20210727031946.GA20187@andestech.com> References: <20210726125904.90305-1-xypron.glpk@gmx.de> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20210726125904.90305-1-xypron.glpk@gmx.de> User-Agent: Mutt/1.5.24 (2015-08-30) X-Originating-IP: [10.0.15.65] X-DNSRBL: X-MAIL: ATCSQR.andestech.com 16R3JlJZ044469 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 On Mon, Jul 26, 2021 at 08:59:02PM +0800, Heinrich Schuchardt wrote: > The series provides library functions to read > > * SBI implementation version > * machine vendor ID > * machine architecture ID > * machine implementation ID > > and enhances the sbi command to display this information. > > v2: > Add constants for hart suspend and resume. > > Heinrich Schuchardt (2): > riscv: add missing SBI extension definitions > cmd/sbi: add missing SBI information > > arch/riscv/include/asm/sbi.h | 39 ++++++++++++++++++++++++++++++++++-- > cmd/riscv/sbi.c | 19 +++++++++++++++++- > 2 files changed, 55 insertions(+), 3 deletions(-) > > -- > 2.30.2 Hi Heinrich, I think you mixed these two patchset together ("riscv: enable SBI system reset" and "cmd/sbi: add missing SBI information"). This patchset does not include the implementation of "sbi_get_mvendorid", "sbi_get_marchid", "sbi_get_mimpid", "sbi_get_impl_version". Could you please re-send the patch again? Best regards, Leo