The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Aleksa Paunovic <aleksa.paunovic@htecgroup.com>
To: "alex@ghiti.fr" <alex@ghiti.fr>
Cc: Aleksa Paunovic <aleksa.paunovic@htecgroup.com>,
	"alexghiti@rivosinc.com" <alexghiti@rivosinc.com>,
	"aou@eecs.berkeley.edu" <aou@eecs.berkeley.edu>,
	"arikalo@gmail.com" <arikalo@gmail.com>,
	"conor+dt@kernel.org" <conor+dt@kernel.org>,
	"conor.dooley@microchip.com" <conor.dooley@microchip.com>,
	"conor@kernel.org" <conor@kernel.org>,
	"corbet@lwn.net" <corbet@lwn.net>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	Djordje Todorovic <Djordje.Todorovic@htecgroup.com>,
	"krzk+dt@kernel.org" <krzk+dt@kernel.org>,
	"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-riscv@lists.infradead.org"
	<linux-riscv@lists.infradead.org>,
	"palmer@dabbelt.com" <palmer@dabbelt.com>,
	"palmer@sifive.com" <palmer@sifive.com>,
	"paul.walmsley@sifive.com" <paul.walmsley@sifive.com>,
	"robh@kernel.org" <robh@kernel.org>,
	"rvishwanathan@mips.com" <rvishwanathan@mips.com>
Subject: Re: [PATCH v5 0/7] riscv: Add support for xmipsexectl
Date: Fri, 1 Aug 2025 16:40:20 +0000	[thread overview]
Message-ID: <5b200571-7a91-4e01-95c9-dc50ebc40d58@htecgroup.com> (raw)
In-Reply-To: <cf49b59f-d39c-4757-a453-6d3c8a09d1ce@ghiti.fr>

On 7/31/25 15:36, Alexandre Ghiti wrote:

> Hi Aleksa,
>
> On 7/24/25 17:23, Aleksa Paunovic via B4 Relay wrote:
>> This patch series adds support for the xmipsexectl vendor extension.
>> A new hardware probe key has also been added to allow userspace to probe for MIPS vendor extensions.
>>
>> Additionally, since the standard Zihintpause PAUSE instruction encoding is not supported on some MIPS CPUs,
>> an errata was implemented for replacing this instruction with the xmipsexectl MIPS.PAUSE alternative encoding.
>>
>> Signed-off-by: Aleksa Paunovic <aleksa.paunovic@htecgroup.com>
>> ---
>> Changes in v5:
>> - Add MIPS.IHB and MIPS.EHB instructions
>> - Rebase on alex-for-next
>> - Address other smaller comments pointed out by Alexandre
>> - Link to v4: https://lore.kernel.org/r/20250625-p8700-pause-v4-0-6c7dd7f85756@htecgroup.com
>>
>> This is a continuation of a previous series, which did not implement the full
>> xmipsexectl vendor extension. The title was updated accordingly.
>>
>> Changes in v4:
>> - Add support for the xmipsexectl vendor extension
>> - Remove the ifdef/else from errata_list.h
>> - Replace the ifdef/else with a hwprobe call in the userspace code.
>>
>> Link to v3:
>> https://lore.kernel.org/linux-riscv/20250129131703.733098-1-arikalo@gmail.com/
>>
>> ---
>> Aleksa Paunovic (6):
>>        dt-bindings: riscv: Add xmipsexectl ISA extension description
>>        riscv: Add xmipsexectl as a vendor extension
>>        riscv: Add xmipsexectl instructions
>>        riscv: hwprobe: Add MIPS vendor extension probing
>>        riscv: hwprobe: Document MIPS xmipsexectl vendor extension
>>        riscv: Add tools support for xmipsexectl
>>
>> Djordje Todorovic (1):
>>        riscv: errata: Fix the PAUSE Opcode for MIPS P8700
>>
>>   Documentation/arch/riscv/hwprobe.rst               |  9 +++
>>   .../devicetree/bindings/riscv/extensions.yaml      |  6 ++
>>   arch/riscv/Kconfig.errata                          | 23 ++++++++
>>   arch/riscv/Kconfig.vendor                          | 13 +++++
>>   arch/riscv/errata/Makefile                         |  1 +
>>   arch/riscv/errata/mips/Makefile                    |  5 ++
>>   arch/riscv/errata/mips/errata.c                    | 67 ++++++++++++++++++++++
>>   arch/riscv/include/asm/alternative.h               |  3 +
>>   arch/riscv/include/asm/cmpxchg.h                   |  3 +-
>>   arch/riscv/include/asm/errata_list.h               | 13 ++++-
>>   arch/riscv/include/asm/errata_list_vendors.h       |  5 ++
>>   arch/riscv/include/asm/hwprobe.h                   |  3 +-
>>   arch/riscv/include/asm/vdso/processor.h            |  3 +-
>>   arch/riscv/include/asm/vendor_extensions/mips.h    | 37 ++++++++++++
>>   .../include/asm/vendor_extensions/mips_hwprobe.h   | 22 +++++++
>>   arch/riscv/include/asm/vendorid_list.h             |  1 +
>>   arch/riscv/include/uapi/asm/hwprobe.h              |  1 +
>>   arch/riscv/include/uapi/asm/vendor/mips.h          |  3 +
>>   arch/riscv/kernel/alternative.c                    |  5 ++
>>   arch/riscv/kernel/sys_hwprobe.c                    |  4 ++
>>   arch/riscv/kernel/vendor_extensions.c              | 10 ++++
>>   arch/riscv/kernel/vendor_extensions/Makefile       |  2 +
>>   arch/riscv/kernel/vendor_extensions/mips.c         | 22 +++++++
>>   arch/riscv/kernel/vendor_extensions/mips_hwprobe.c | 23 ++++++++
>>   arch/riscv/mm/init.c                               |  1 +
>>   tools/arch/riscv/include/asm/vdso/processor.h      | 27 +++++----
>>   26 files changed, 298 insertions(+), 14 deletions(-)
>> ---
>> base-commit: b6a4bae2f16162876842127d7507dad84e404f8f
>> change-id: 20250424-p8700-pause-dcb649968e24
>>
>> Best regards,
>
>
> Thanks for the v5, I'll take that for 6.17.

Hi Alexandre,

Thank you once again for taking the time to review the series.

Best regards,

Aleksa

>
> Thanks,
>
> Alex
>

  reply	other threads:[~2025-08-01 16:40 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-24 15:23 [PATCH v5 0/7] riscv: Add support for xmipsexectl Aleksa Paunovic via B4 Relay
2025-07-24 15:23 ` [PATCH v5 1/7] dt-bindings: riscv: Add xmipsexectl ISA extension description Aleksa Paunovic via B4 Relay
2025-07-24 15:23 ` [PATCH v5 2/7] riscv: Add xmipsexectl as a vendor extension Aleksa Paunovic via B4 Relay
2025-07-24 15:23 ` [PATCH v5 3/7] riscv: Add xmipsexectl instructions Aleksa Paunovic via B4 Relay
2025-07-24 15:23 ` [PATCH v5 4/7] riscv: hwprobe: Add MIPS vendor extension probing Aleksa Paunovic via B4 Relay
2025-07-24 15:23 ` [PATCH v5 5/7] riscv: hwprobe: Document MIPS xmipsexectl vendor extension Aleksa Paunovic via B4 Relay
2025-07-24 15:23 ` [PATCH v5 6/7] riscv: Add tools support for xmipsexectl Aleksa Paunovic via B4 Relay
2025-07-24 15:23 ` [PATCH v5 7/7] riscv: errata: Fix the PAUSE Opcode for MIPS P8700 Aleksa Paunovic via B4 Relay
2025-07-31 13:36 ` [PATCH v5 0/7] riscv: Add support for xmipsexectl Alexandre Ghiti
2025-08-01 16:40   ` Aleksa Paunovic [this message]
2025-08-06 17:15 ` patchwork-bot+linux-riscv

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=5b200571-7a91-4e01-95c9-dc50ebc40d58@htecgroup.com \
    --to=aleksa.paunovic@htecgroup.com \
    --cc=Djordje.Todorovic@htecgroup.com \
    --cc=alex@ghiti.fr \
    --cc=alexghiti@rivosinc.com \
    --cc=aou@eecs.berkeley.edu \
    --cc=arikalo@gmail.com \
    --cc=conor+dt@kernel.org \
    --cc=conor.dooley@microchip.com \
    --cc=conor@kernel.org \
    --cc=corbet@lwn.net \
    --cc=devicetree@vger.kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=palmer@dabbelt.com \
    --cc=palmer@sifive.com \
    --cc=paul.walmsley@sifive.com \
    --cc=robh@kernel.org \
    --cc=rvishwanathan@mips.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox