All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bin Meng <bmeng.cn@gmail.com>
To: Atish Patra <atish.patra@wdc.com>
Cc: linux-kernel <linux-kernel@vger.kernel.org>,
	Anup Patel <anup@brainfault.org>,
	Albert Ou <aou@eecs.berkeley.edu>, Gary Guo <gary@garyguo.net>,
	Greentime Hu <greentime.hu@sifive.com>,
	linux-riscv <linux-riscv@lists.infradead.org>,
	Mao Han <han_mao@c-sky.com>, Mike Rapoport <rppt@linux.ibm.com>,
	Nick Hu <nickhu@andestech.com>,
	Palmer Dabbelt <palmer@dabbelt.com>,
	Paul Walmsley <paul.walmsley@sifive.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Vincent Chen <vincent.chen@sifive.com>,
	Zong Li <zong.li@sifive.com>
Subject: Re: [PATCH v11 05/11] RISC-V: Implement new SBI v0.2 extensions
Date: Sun, 5 Apr 2020 22:37:06 +0800	[thread overview]
Message-ID: <CAEUhbmXa9xuszy-h0xSwn9SYOdCNwGSh15pAQDYkvs6+7H9=NQ@mail.gmail.com> (raw)
In-Reply-To: <20200318011144.91532-6-atish.patra@wdc.com>

On Wed, Mar 18, 2020 at 9:11 AM Atish Patra <atish.patra@wdc.com> wrote:
>
> Few v0.1 SBI calls are being replaced by new SBI calls that follows v0.2
> calling convention.
>
> Implement the replacement extensions and few additional new SBI function calls
> that makes way for a better SBI interface in future.
>
> Signed-off-by: Atish Patra <atish.patra@wdc.com>
> Reviewed-by: Anup Patel <anup@brainfault.org>
> ---
>  arch/riscv/include/asm/sbi.h |  14 ++
>  arch/riscv/include/asm/smp.h |   7 +
>  arch/riscv/kernel/sbi.c      | 253 ++++++++++++++++++++++++++++++++++-
>  3 files changed, 270 insertions(+), 4 deletions(-)
>

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

WARNING: multiple messages have this Message-ID (diff)
From: Bin Meng <bmeng.cn@gmail.com>
To: Atish Patra <atish.patra@wdc.com>
Cc: Albert Ou <aou@eecs.berkeley.edu>, Zong Li <zong.li@sifive.com>,
	Nick Hu <nickhu@andestech.com>, Anup Patel <anup@brainfault.org>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	Mike Rapoport <rppt@linux.ibm.com>,
	Vincent Chen <vincent.chen@sifive.com>,
	Palmer Dabbelt <palmer@dabbelt.com>, Gary Guo <gary@garyguo.net>,
	Paul Walmsley <paul.walmsley@sifive.com>,
	Greentime Hu <greentime.hu@sifive.com>,
	linux-riscv <linux-riscv@lists.infradead.org>,
	Thomas Gleixner <tglx@linutronix.de>, Mao Han <han_mao@c-sky.com>
Subject: Re: [PATCH v11 05/11] RISC-V: Implement new SBI v0.2 extensions
Date: Sun, 5 Apr 2020 22:37:06 +0800	[thread overview]
Message-ID: <CAEUhbmXa9xuszy-h0xSwn9SYOdCNwGSh15pAQDYkvs6+7H9=NQ@mail.gmail.com> (raw)
In-Reply-To: <20200318011144.91532-6-atish.patra@wdc.com>

On Wed, Mar 18, 2020 at 9:11 AM Atish Patra <atish.patra@wdc.com> wrote:
>
> Few v0.1 SBI calls are being replaced by new SBI calls that follows v0.2
> calling convention.
>
> Implement the replacement extensions and few additional new SBI function calls
> that makes way for a better SBI interface in future.
>
> Signed-off-by: Atish Patra <atish.patra@wdc.com>
> Reviewed-by: Anup Patel <anup@brainfault.org>
> ---
>  arch/riscv/include/asm/sbi.h |  14 ++
>  arch/riscv/include/asm/smp.h |   7 +
>  arch/riscv/kernel/sbi.c      | 253 ++++++++++++++++++++++++++++++++++-
>  3 files changed, 270 insertions(+), 4 deletions(-)
>

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>


  reply	other threads:[~2020-04-05 14:37 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-18  1:11 [PATCH v11 00/11] Add support for SBI v0.2 and CPU hotplug Atish Patra
2020-03-18  1:11 ` Atish Patra
2020-03-18  1:11 ` [PATCH v11 01/11] RISC-V: Mark existing SBI as 0.1 SBI Atish Patra
2020-03-18  1:11   ` Atish Patra
2020-04-05 14:36   ` Bin Meng
2020-04-05 14:36     ` Bin Meng
2020-03-18  1:11 ` [PATCH v11 02/11] RISC-V: Add basic support for SBI v0.2 Atish Patra
2020-03-18  1:11   ` Atish Patra
2020-04-05 14:36   ` Bin Meng
2020-04-05 14:36     ` Bin Meng
2020-03-18  1:11 ` [PATCH v11 03/11] RISC-V: Add SBI v0.2 extension definitions Atish Patra
2020-03-18  1:11   ` Atish Patra
2020-04-05 14:37   ` Bin Meng
2020-04-05 14:37     ` Bin Meng
2020-03-18  1:11 ` [PATCH v11 04/11] RISC-V: Introduce a new config for SBI v0.1 Atish Patra
2020-03-18  1:11   ` Atish Patra
2020-04-05 14:37   ` Bin Meng
2020-04-05 14:37     ` Bin Meng
2020-03-18  1:11 ` [PATCH v11 05/11] RISC-V: Implement new SBI v0.2 extensions Atish Patra
2020-03-18  1:11   ` Atish Patra
2020-04-05 14:37   ` Bin Meng [this message]
2020-04-05 14:37     ` Bin Meng
2020-03-18  1:11 ` [PATCH v11 06/11] RISC-V: Move relocate and few other functions out of __init Atish Patra
2020-03-18  1:11   ` Atish Patra
2020-03-18  1:11 ` [PATCH v11 07/11] RISC-V: Add cpu_ops and modify default booting method Atish Patra
2020-03-18  1:11   ` Atish Patra
2020-03-18  1:11 ` [PATCH v11 08/11] RISC-V: Export SBI error to linux error mapping function Atish Patra
2020-03-18  1:11   ` Atish Patra
2020-04-05 14:37   ` Bin Meng
2020-04-05 14:37     ` Bin Meng
2020-03-18  1:11 ` [PATCH v11 09/11] RISC-V: Add SBI HSM extension definitions Atish Patra
2020-03-18  1:11   ` Atish Patra
2020-04-05 14:37   ` Bin Meng
2020-04-05 14:37     ` Bin Meng
2020-03-18  1:11 ` [PATCH v11 10/11] RISC-V: Add supported for ordered booting method using HSM Atish Patra
2020-03-18  1:11   ` Atish Patra
2020-04-05 14:37   ` Bin Meng
2020-04-05 14:37     ` Bin Meng
2020-03-18  1:11 ` [PATCH v11 11/11] RISC-V: Support cpu hotplug Atish Patra
2020-03-18  1:11   ` Atish Patra
2020-03-31 18:35   ` Palmer Dabbelt
2020-03-31 18:35     ` Palmer Dabbelt
2020-03-22 17:49 ` [PATCH v11 00/11] Add support for SBI v0.2 and CPU hotplug Emil Renner Berthing
2020-03-22 17:49   ` Emil Renner Berthing
2020-03-23  3:03   ` Atish Patra
2020-03-23  3:03     ` Atish Patra
2020-03-31 18:35 ` Palmer Dabbelt
2020-03-31 18:35   ` Palmer Dabbelt
2020-04-01  0:43   ` Atish Patra
2020-04-01  0:43     ` Atish Patra

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAEUhbmXa9xuszy-h0xSwn9SYOdCNwGSh15pAQDYkvs6+7H9=NQ@mail.gmail.com' \
    --to=bmeng.cn@gmail.com \
    --cc=anup@brainfault.org \
    --cc=aou@eecs.berkeley.edu \
    --cc=atish.patra@wdc.com \
    --cc=gary@garyguo.net \
    --cc=greentime.hu@sifive.com \
    --cc=han_mao@c-sky.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=nickhu@andestech.com \
    --cc=palmer@dabbelt.com \
    --cc=paul.walmsley@sifive.com \
    --cc=rppt@linux.ibm.com \
    --cc=tglx@linutronix.de \
    --cc=vincent.chen@sifive.com \
    --cc=zong.li@sifive.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.