* [PATCH v1 0/1] riscv: Update MIPS vendor id
@ 2025-11-04 15:07 Djordje Todorovic
2025-11-04 15:07 ` [PATCH v1 1/1] " Djordje Todorovic
2025-11-04 23:08 ` [PATCH v1 0/1] " Alistair Francis
0 siblings, 2 replies; 6+ messages in thread
From: Djordje Todorovic @ 2025-11-04 15:07 UTC (permalink / raw)
To: qemu-devel@nongnu.org
Cc: qemu-riscv@nongnu.org, cfu@mips.com, mst@redhat.com,
marcel.apfelbaum@gmail.com, dbarboza@ventanamicro.com,
philmd@linaro.org, alistair23@gmail.com, thuth@redhat.com,
Djordje Todorovic
We have already sent patch set for introducing MIPS's
p8700 CPU in qemu at:
https://patchew.org/QEMU/20251018154522.745788-1-djordje.todorovic@htecgroup.com/
So, this is a bugfix that should go on top of it.
Djordje Todorovic (1):
riscv: Update MIPS vendor id
target/riscv/cpu_vendorid.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v1 1/1] riscv: Update MIPS vendor id
2025-11-04 15:07 [PATCH v1 0/1] riscv: Update MIPS vendor id Djordje Todorovic
@ 2025-11-04 15:07 ` Djordje Todorovic
2025-11-04 15:12 ` Daniel Henrique Barboza
2025-11-04 23:08 ` [PATCH v1 0/1] " Alistair Francis
1 sibling, 1 reply; 6+ messages in thread
From: Djordje Todorovic @ 2025-11-04 15:07 UTC (permalink / raw)
To: qemu-devel@nongnu.org
Cc: qemu-riscv@nongnu.org, cfu@mips.com, mst@redhat.com,
marcel.apfelbaum@gmail.com, dbarboza@ventanamicro.com,
philmd@linaro.org, alistair23@gmail.com, thuth@redhat.com,
Djordje Todorovic
According to MIPS programming guide, the id is 0x127.
A patch for this has been sent on Linux mailing list as well.
Signed-off-by: Djordje Todorovic <djordje.todorovic@htecgroup.com>
---
target/riscv/cpu_vendorid.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/riscv/cpu_vendorid.h b/target/riscv/cpu_vendorid.h
index 28f0ce9370..f1ffc66542 100644
--- a/target/riscv/cpu_vendorid.h
+++ b/target/riscv/cpu_vendorid.h
@@ -2,7 +2,7 @@
#define TARGET_RISCV_CPU_VENDORID_H
#define THEAD_VENDOR_ID 0x5b7
-#define MIPS_VENDOR_ID 0x722
+#define MIPS_VENDOR_ID 0x127
#define VEYRON_V1_MARCHID 0x8000000000010000
#define VEYRON_V1_MIMPID 0x111
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/1] riscv: Update MIPS vendor id
2025-11-04 15:07 ` [PATCH v1 1/1] " Djordje Todorovic
@ 2025-11-04 15:12 ` Daniel Henrique Barboza
0 siblings, 0 replies; 6+ messages in thread
From: Daniel Henrique Barboza @ 2025-11-04 15:12 UTC (permalink / raw)
To: Djordje Todorovic, qemu-devel@nongnu.org
Cc: qemu-riscv@nongnu.org, cfu@mips.com, mst@redhat.com,
marcel.apfelbaum@gmail.com, philmd@linaro.org,
alistair23@gmail.com, thuth@redhat.com
On 11/4/25 12:07 PM, Djordje Todorovic wrote:
> According to MIPS programming guide, the id is 0x127.
> A patch for this has been sent on Linux mailing list as well.
>
> Signed-off-by: Djordje Todorovic <djordje.todorovic@htecgroup.com>
> ---
> target/riscv/cpu_vendorid.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/target/riscv/cpu_vendorid.h b/target/riscv/cpu_vendorid.h
> index 28f0ce9370..f1ffc66542 100644
> --- a/target/riscv/cpu_vendorid.h
> +++ b/target/riscv/cpu_vendorid.h
> @@ -2,7 +2,7 @@
> #define TARGET_RISCV_CPU_VENDORID_H
>
> #define THEAD_VENDOR_ID 0x5b7
> -#define MIPS_VENDOR_ID 0x722
> +#define MIPS_VENDOR_ID 0x127
Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
>
> #define VEYRON_V1_MARCHID 0x8000000000010000
> #define VEYRON_V1_MIMPID 0x111
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 0/1] riscv: Update MIPS vendor id
2025-11-04 15:07 [PATCH v1 0/1] riscv: Update MIPS vendor id Djordje Todorovic
2025-11-04 15:07 ` [PATCH v1 1/1] " Djordje Todorovic
@ 2025-11-04 23:08 ` Alistair Francis
2025-11-06 10:16 ` Djordje Todorovic
1 sibling, 1 reply; 6+ messages in thread
From: Alistair Francis @ 2025-11-04 23:08 UTC (permalink / raw)
To: Djordje Todorovic
Cc: qemu-devel@nongnu.org, qemu-riscv@nongnu.org, cfu@mips.com,
mst@redhat.com, marcel.apfelbaum@gmail.com,
dbarboza@ventanamicro.com, philmd@linaro.org, thuth@redhat.com
On Wed, Nov 5, 2025 at 1:07 AM Djordje Todorovic
<Djordje.Todorovic@htecgroup.com> wrote:
>
> We have already sent patch set for introducing MIPS's
> p8700 CPU in qemu at:
>
> https://patchew.org/QEMU/20251018154522.745788-1-djordje.todorovic@htecgroup.com/
That series was dropped as it failed to pass the CI tests:
https://patchew.org/QEMU/20251023041435.1775208-1-alistair.francis@wdc.com/
You can just include this change in a new patchset
Alistair
>
> So, this is a bugfix that should go on top of it.
>
> Djordje Todorovic (1):
> riscv: Update MIPS vendor id
>
> target/riscv/cpu_vendorid.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --
> 2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 0/1] riscv: Update MIPS vendor id
2025-11-04 23:08 ` [PATCH v1 0/1] " Alistair Francis
@ 2025-11-06 10:16 ` Djordje Todorovic
2025-11-06 10:46 ` Thomas Huth
0 siblings, 1 reply; 6+ messages in thread
From: Djordje Todorovic @ 2025-11-06 10:16 UTC (permalink / raw)
To: Alistair Francis
Cc: qemu-devel@nongnu.org, qemu-riscv@nongnu.org, cfu@mips.com,
mst@redhat.com, marcel.apfelbaum@gmail.com,
dbarboza@ventanamicro.com, philmd@linaro.org, thuth@redhat.com
On 5. 11. 25. 00:08, Alistair Francis wrote:
> CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
>
>
> On Wed, Nov 5, 2025 at 1:07 AM Djordje Todorovic
> <Djordje.Todorovic@htecgroup.com> wrote:
>> We have already sent patch set for introducing MIPS's
>> p8700 CPU in qemu at:
>>
>> https://patchew.org/QEMU/20251018154522.745788-1-djordje.todorovic@htecgroup.com/
> That series was dropped as it failed to pass the CI tests:
> https://patchew.org/QEMU/20251023041435.1775208-1-alistair.francis@wdc.com/
>
> You can just include this change in a new patchset
>
> Alistair
>
Hi Alistair,
I am looking into the
https://gitlab.com/qemu-project/qemu/-/jobs/11827080939#L5859
and it seems that it did not get the binaries from:
https://github.com/MIPS/linux-test-downloads/raw/main/p8700/fw_payload.bin
The test for Boston board should try to download that, but there is
TIMEOUT set for it.
Any advice on how to check this on the s390x machine?
Is there a way to run the CI from a fork?
Thanks a lot,
Djordje
>> So, this is a bugfix that should go on top of it.
>>
>> Djordje Todorovic (1):
>> riscv: Update MIPS vendor id
>>
>> target/riscv/cpu_vendorid.h | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> --
>> 2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 0/1] riscv: Update MIPS vendor id
2025-11-06 10:16 ` Djordje Todorovic
@ 2025-11-06 10:46 ` Thomas Huth
0 siblings, 0 replies; 6+ messages in thread
From: Thomas Huth @ 2025-11-06 10:46 UTC (permalink / raw)
To: Djordje Todorovic, Alistair Francis
Cc: qemu-devel@nongnu.org, qemu-riscv@nongnu.org, cfu@mips.com,
mst@redhat.com, marcel.apfelbaum@gmail.com,
dbarboza@ventanamicro.com, philmd@linaro.org
On 06/11/2025 11.16, Djordje Todorovic wrote:
>
> On 5. 11. 25. 00:08, Alistair Francis wrote:
>> CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
>>
>>
>> On Wed, Nov 5, 2025 at 1:07 AM Djordje Todorovic
>> <Djordje.Todorovic@htecgroup.com> wrote:
>>> We have already sent patch set for introducing MIPS's
>>> p8700 CPU in qemu at:
>>>
>>> https://patchew.org/QEMU/20251018154522.745788-1-djordje.todorovic@htecgroup.com/
>> That series was dropped as it failed to pass the CI tests:
>> https://patchew.org/QEMU/20251023041435.1775208-1-alistair.francis@wdc.com/
>>
>> You can just include this change in a new patchset
>>
>> Alistair
>>
> Hi Alistair,
>
>
> I am looking into the
> https://gitlab.com/qemu-project/qemu/-/jobs/11827080939#L5859
>
> and it seems that it did not get the binaries from:
>
> https://github.com/MIPS/linux-test-downloads/raw/main/p8700/fw_payload.bin
>
> The test for Boston board should try to download that, but there is
> TIMEOUT set for it.
According to the job log, the test has been added to the "quick" category.
If the test downloads assets, it has to be in the "thorough" category
instead, otherwise you might run into timeouts when the download takes to
long. (See also the "Asset handling" section in
docs/devel/testing/functional.rst)
HTH,
Thomas
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-11-06 10:46 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-04 15:07 [PATCH v1 0/1] riscv: Update MIPS vendor id Djordje Todorovic
2025-11-04 15:07 ` [PATCH v1 1/1] " Djordje Todorovic
2025-11-04 15:12 ` Daniel Henrique Barboza
2025-11-04 23:08 ` [PATCH v1 0/1] " Alistair Francis
2025-11-06 10:16 ` Djordje Todorovic
2025-11-06 10:46 ` Thomas Huth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).