[Qemu-devel] [PATCH v13 07/12] hw/char: RX62N serial communication interface (SCI)

2019-05-15 Thread Yoshinori Sato
This module supported only non FIFO type. Hardware manual. https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01uh0033ej0140_rx62n.pdf Signed-off-by: Yoshinori Sato Reviewed-by: Alex Bennée --- include/hw/char/renesas_sci.h | 45 ++ hw/char/renesas_sci.c | 340

[Qemu-devel] [PATCH v13 01/12] target/rx: TCG translation

2019-05-15 Thread Yoshinori Sato
This part only supported RXv1 instructions. Instruction manual. https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01us0032ej0120_rxsm.pdf Signed-off-by: Yoshinori Sato Reviewed-by: Richard Henderson Tested-by: Philippe Mathieu-Daudé --- target/rx/translate.c | 2432

Re: [Qemu-devel] [PATCH v12 00/12] Add RX archtecture support

2019-05-16 Thread Yoshinori Sato
On Thu, 16 May 2019 19:44:52 +0900, Philippe Mathieu-Daudé wrote: > > Hi Yoshinori, > > On 5/16/19 6:13 AM, Yoshinori Sato wrote: > > On Thu, 16 May 2019 01:48:29 +0900, > > Richard Henderson wrote: > [...]>> Rather than having you send out a v13 with o

[Qemu-devel] [PATCH v15 00/12] Add RX archtecture support

2019-05-22 Thread Yoshinori Sato
"earlycon" Yoshinori Sato (12): qemu/bitops.h: Add extract8 and extract16 hw/registerfields.h: Add 8bit and 16bit register macros. target/rx: TCG translation target/rx: TCG helper target/rx: CPU definition target/rx: RX disassembler hw/intc: RX62N interrupt controller (ICUa)

[Qemu-devel] [PATCH v15 12/12] MAINTAINERS: Add RX

2019-05-22 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- MAINTAINERS | 21 + 1 file changed, 21 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index a6948ebc63..36c4577d6c 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -272,6 +272,13 @@ F: include/hw/riscv/ F: linux-user/host/riscv32/ F

[Qemu-devel] [PATCH v15 01/12] qemu/bitops.h: Add extract8 and extract16

2019-05-22 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato Reviewed-by: Richard Henderson Reviewed-by: Philippe Mathieu-Daudé --- include/qemu/bitops.h | 38 ++ 1 file changed, 38 insertions(+) diff --git a/include/qemu/bitops.h b/include/qemu/bitops.h index 3f0926cf40..764f9d1ea0

[Qemu-devel] [PATCH v15 02/12] hw/registerfields.h: Add 8bit and 16bit register macros.

2019-05-22 Thread Yoshinori Sato
Some RX peripheral using 8bit and 16bit registers. Added 8bit and 16bit APIs. Signed-off-by: Yoshinori Sato --- include/hw/registerfields.h | 30 +- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/include/hw/registerfields.h b/include/hw

[Qemu-devel] [PATCH v15 09/12] hw/char: RX62N serial communication interface (SCI)

2019-05-22 Thread Yoshinori Sato
This module supported only non FIFO type. Hardware manual. https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01uh0033ej0140_rx62n.pdf Signed-off-by: Yoshinori Sato Reviewed-by: Alex Bennée Reviewed-by: Philippe Mathieu-Daudé --- include/hw/char/renesas_sci.h | 45 ++ hw

[Qemu-devel] [PATCH v15 07/12] hw/intc: RX62N interrupt controller (ICUa)

2019-05-22 Thread Yoshinori Sato
This implementation supported only ICUa. Hardware manual. https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01uh0033ej0140_rx62n.pdf Signed-off-by: Yoshinori Sato --- include/hw/intc/rx_icu.h | 55 +++ hw/intc/rx_icu.c | 376

[Qemu-devel] [PATCH v15 11/12] Add rx-softmmu

2019-05-22 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato Tested-by: Philippe Mathieu-Daudé Reviewed-by: Philippe Mathieu-Daudé --- configure | 8 default-configs/rx-softmmu.mak | 3 +++ include/sysemu/arch_init.h | 1 + arch_init.c| 2 ++ hw/Kconfig

[Qemu-devel] [PATCH v15 08/12] hw/timer: RX62N internal timer modules

2019-05-22 Thread Yoshinori Sato
renesas_tmr: 8bit timer modules. renesas_cmt: 16bit compare match timer modules. This part use many renesas's CPU. Hardware manual. https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01uh0033ej0140_rx62n.pdf Signed-off-by: Yoshinori Sato --- include/hw/timer/renesas_cmt.h

[Qemu-devel] [PATCH v15 04/12] target/rx: TCG helper

2019-05-22 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato Reviewed-by: Richard Henderson --- target/rx/helper.h| 31 target/rx/helper.c| 148 target/rx/op_helper.c | 481 ++ 3 files changed, 660 insertions(+) create mode 100644 target/rx

[Qemu-devel] [PATCH v15 10/12] hw/rx: RX Target hardware definition

2019-05-22 Thread Yoshinori Sato
rx62n - RX62N cpu. rx-virt - RX QEMU virtual target. Signed-off-by: Yoshinori Sato --- include/hw/rx/rx.h| 7 ++ include/hw/rx/rx62n.h | 94 hw/rx/rx-virt.c | 105 ++ hw/rx/rx62n.c | 238

[Qemu-devel] [PATCH v15 03/12] target/rx: TCG translation

2019-05-22 Thread Yoshinori Sato
This part only supported RXv1 instructions. Instruction manual. https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01us0032ej0120_rxsm.pdf Signed-off-by: Yoshinori Sato --- target/rx/translate.c | 2420 +++ target/rx/Makefile.objs

[Qemu-devel] [PATCH v15 05/12] target/rx: CPU definition

2019-05-22 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- target/rx/cpu.h | 227 +++ target/rx/cpu.c | 239 ++ target/rx/gdbstub.c | 112 +++ target/rx/monitor.c | 38 target/rx

[Qemu-devel] [PATCH v15 06/12] target/rx: RX disassembler

2019-05-22 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato Reviewed-by: Richard Henderson Tested-by: Philippe Mathieu-Daudé --- include/disas/dis-asm.h |5 + target/rx/disas.c | 1480 +++ 2 files changed, 1485 insertions(+) create mode 100644 target/rx/disas.c diff

Re: [Qemu-devel] [PATCH v15 00/12] Add RX archtecture support

2019-05-23 Thread Yoshinori Sato
On Wed, 22 May 2019 23:50:41 +0900, Philippe Mathieu-Daudé wrote: > > Hi Yoshinori, > > On 5/22/19 4:29 PM, Yoshinori Sato wrote: > > Hello. > > This patch series is added Renesas RX target emulation. > > > > Fix is bellow. > > - Reorder patches. &

[Qemu-devel] [PATCH RFC 05/11] RX disassembler

2019-01-21 Thread Yoshinori Sato
It only supported RXv1 instructions. Signed-off-by: Yoshinori Sato --- disas/Makefile.objs |1 + disas/rx.c | 1277 +++ include/disas/bfd.h |5 + 3 files changed, 1283 insertions(+) create mode 100644 disas/rx.c diff --git a

[Qemu-devel] [PATCH RFC 00/11] Add Renesas RX archtecture

2019-01-21 Thread Yoshinori Sato
Hello. This patch series is added Renesas RX target emulation. My git repository is bellow. git://git.pf.osdn.net/gitroot/y/ys/ysato/qemu.git Since my understanding is not enough, I want many comments to make this a good one. Thanks. Yoshinori Sato (11): TCG translation RX CPU definition

[Qemu-devel] [PATCH RFC 03/11] TCG helper functions

2019-01-21 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- target/rx/helper.c | 143 + 1 file changed, 143 insertions(+) create mode 100644 target/rx/helper.c diff --git a/target/rx/helper.c b/target/rx/helper.c new file mode 100644 index 00..1d00732c0c

[Qemu-devel] [PATCH RFC 08/11] RX62N internal serical communication interface.

2019-01-21 Thread Yoshinori Sato
This module supported only non FIFO type. Hardware manual. https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01uh0033ej0140_rx62n.pdf?key=086621e01bd70347c18ea7f794aa9cc3 Signed-off-by: Yoshinori Sato --- hw/char/Makefile.objs | 2 +- hw/char/renesas_sci.c | 279

[Qemu-devel] [PATCH RFC 11/11] MAINTAINERS: Add RX entry.

2019-01-21 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- MAINTAINERS | 20 1 file changed, 20 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index af339b86db..c2aae46ffa 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -272,6 +272,14 @@ F: include/hw/riscv/ F: linux-user/host/riscv32/ F

[Qemu-devel] [PATCH RFC 09/11] RX Target hardware definition.

2019-01-21 Thread Yoshinori Sato
rx62n - RX62N cpu. rxqemu - QEMU virtual target. Signed-off-by: Yoshinori Sato --- hw/rx/Makefile.objs | 1 + hw/rx/rx62n.c | 233 ++ hw/rx/rxqemu.c| 106 +++ include/hw/rx/rx.h| 7 ++ include/hw/rx

[Qemu-devel] [PATCH RFC 10/11] Add rx-softmmu.

2019-01-21 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- arch_init.c| 2 ++ configure | 8 default-configs/rx-softmmu.mak | 7 +++ include/sysemu/arch_init.h | 1 + target/rx/Makefile.objs| 2 ++ 5 files changed, 20 insertions(+) create mode 100644

[Qemu-devel] [PATCH RFC 04/11] Target miscellaneous functions.

2019-01-21 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- target/rx/gdbstub.c | 114 target/rx/monitor.c | 38 ++ 2 files changed, 152 insertions(+) create mode 100644 target/rx/gdbstub.c create mode 100644 target/rx/monitor.c diff --git a/target

[Qemu-devel] [PATCH RFC 02/11] RX CPU definition

2019-01-21 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- target/rx/cpu-qom.h | 54 + target/rx/cpu.c | 226 target/rx/cpu.h | 212 3 files changed, 492 insertions(+) create mode 100644 target/rx

[Qemu-devel] [PATCH RFC 06/11] RX62N interrupt contoller.

2019-01-21 Thread Yoshinori Sato
This implementation supported only ICUa. Hardware manual. https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01uh0033ej0140_rx62n.pdf?key=086621e01bd70347c18ea7f794aa9cc3 Signed-off-by: Yoshinori Sato --- hw/intc/Makefile.objs| 1 + hw/intc/rx_icu.c | 313

[Qemu-devel] [PATCH RFC 01/11] TCG translation

2019-01-21 Thread Yoshinori Sato
This part only supported RXv1 instructions. Instruction manual. https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01us0032ej0120_rxsm.pdf Signed-off-by: Yoshinori Sato --- target/rx/helper.h| 22 + target/rx/op_helper.c | 548 + target/rx/translate.c | 3003

[Qemu-devel] [PATCH RFC 07/11] RX62N internal timer unit.

2019-01-21 Thread Yoshinori Sato
renesas_tmr: 8bit timer modules. renesas_cmt: 16bit compare match timer modules. This part use many renesas's CPU. Hardware manual. https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01uh0033ej0140_rx62n.pdf?key=086621e01bd70347c18ea7f794aa9cc3 Signed-off-by: Yoshinori Sato --

Re: [Qemu-devel] [PATCH RFC 01/11] TCG translation

2019-01-22 Thread Yoshinori Sato
On Mon, 21 Jan 2019 22:35:43 +0900, Thomas Huth wrote: > > On 2019-01-21 14:15, Yoshinori Sato wrote: > > This part only supported RXv1 instructions. > > Instruction manual. > > https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01us0032ej0120_rxsm.pd

Re: [Qemu-devel] [PATCH RFC 01/11] TCG translation

2019-01-23 Thread Yoshinori Sato
On Wed, 23 Jan 2019 12:17:46 +0900, Richard Henderson wrote: > > On 1/21/19 5:15 AM, Yoshinori Sato wrote: > > +/* PSW condition operation */ > > +typedef struct { > > +TCGv op_mode; > > +TCGv op_a1[13]; > > +TCGv op_a2[13]; > > +

Re: [PATCH 00/20] RX target update

2020-09-10 Thread Yoshinori Sato
On Tue, 01 Sep 2020 05:38:37 +0900, Philippe Mathieu-Daudé wrote: > > [1 ] > [2 ] > Hello Yoshinori, > > Le jeu. 27 août 2020 14:43, Yoshinori Sato a > écrit : > > Hello. > This series Renesas RX updates. > > It consists of the followi

[PATCH 07/20] hw/rx: RX62N convert new 8bit timer.

2020-08-27 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- include/hw/rx/rx62n.h | 4 ++-- hw/rx/rx62n.c | 2 +- hw/rx/Kconfig | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/hw/rx/rx62n.h b/include/hw/rx/rx62n.h index e0ca1cfc33..75945bae50 100644 --- a/include/hw/rx

[PATCH 02/20] include/elf.h: Add EM_RX.

2020-08-27 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- include/elf.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/elf.h b/include/elf.h index c117a4d1ab..d9bf4a95d8 100644 --- a/include/elf.h +++ b/include/elf.h @@ -172,6 +172,8 @@ typedef struct mips_elf_abiflags_v0 { #define EM_UNICORE32110

[PATCH 03/20] hw/rx: Firmware and kernel loader.

2020-08-27 Thread Yoshinori Sato
Suppoerted format. ELF, HEX, SREC and Raw firmware. fit and Raw kernel image. Signed-off-by: Yoshinori Sato --- include/hw/rx/loader.h | 35 hw/rx/loader.c | 182 + hw/rx/Kconfig | 1 + hw/rx/meson.build | 1 + 4 files

[PATCH 01/20] loader.c: Add support Motrola S-record format.

2020-08-27 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- include/hw/loader.h | 14 +++ hw/core/loader.c| 208 2 files changed, 222 insertions(+) diff --git a/include/hw/loader.h b/include/hw/loader.h index a9eeea3952..6f1fb62ded 100644 --- a/include/hw/loader.h +++ b

[PATCH 09/20] hw/timer: Remove renesas_cmt.

2020-08-27 Thread Yoshinori Sato
This module replaced to unified renesas_timer. Signed-off-by: Yoshinori Sato --- include/hw/timer/renesas_cmt.h | 40 - hw/timer/renesas_cmt.c | 283 - 2 files changed, 323 deletions(-) delete mode 100644 include/hw/timer/renesas_cmt.h delete mode

[PATCH 08/20] hw/timer: Renesas TMU/CMT module.

2020-08-27 Thread Yoshinori Sato
TMU - SH4 Timer module. CMT - Compare and match timer used by some Renesas MCUs. The two modules have similar interfaces and have been merged. Signed-off-by: Yoshinori Sato --- include/hw/timer/renesas_timer.h | 103 + hw/timer/renesas_timer.c | 639

[PATCH 04/20] hw/rx: New firmware loader.

2020-08-27 Thread Yoshinori Sato
Separate the loading of the firmware from the target definition as it is an obstacle to adding more targets. Signed-off-by: Yoshinori Sato --- include/hw/rx/rx62n.h | 15 +++ hw/rx/rx-gdbsim.c | 98 +-- hw/rx/rx62n.c | 25 --- 3

[PATCH 17/20] hw/rx/rx62n: Add Ethernet support.

2020-08-27 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- include/hw/rx/rx62n.h | 3 +++ hw/rx/rx62n.c | 26 ++ hw/rx/Kconfig | 3 ++- 3 files changed, 31 insertions(+), 1 deletion(-) diff --git a/include/hw/rx/rx62n.h b/include/hw/rx/rx62n.h index 170c8cb6fc..4f11ca3fd9

[PATCH 19/20] hw/rx: Add CQ-FRK-RX62N target

2020-08-27 Thread Yoshinori Sato
It most popular RX target board in Japan. Signed-off-by: Yoshinori Sato --- default-configs/rx-softmmu.mak | 1 + hw/rx/cq-frk-rx62n.c | 94 ++ hw/rx/Kconfig | 3 ++ hw/rx/meson.build | 1 + 4 files changed, 99

[PATCH 00/20] RX target update

2020-08-27 Thread Yoshinori Sato
real hardware target. - TokushudenshiKairo TKDN-RX62N-BRD. - CQ publishing CQ-FRK-RX62N Yoshinori Sato (20): loader.c: Add support Motrola S-record format. include/elf.h: Add EM_RX. hw/rx: Firmware and kernel loader. hw/rx: New firmware loader. hw/rx: Add RX62N Clock generator hw

[PATCH 11/20] hw/char: Renesas SCI module.

2020-08-27 Thread Yoshinori Sato
This module supported SCI / SCIa / SCIF. Hardware manual. SCI / SCIF https://www.renesas.com/us/en/doc/products/mpumcu/001/r01uh0457ej0401_sh7751.pdf SCIa https://www.renesas.com/us/en/doc/products/mpumcu/doc/rx_family/r01uh0033ej0140_rx62n.pdf Signed-off-by: Yoshinori Sato --- include/hw/char

[PATCH 05/20] hw/rx: Add RX62N Clock generator

2020-08-27 Thread Yoshinori Sato
This module generated core and peripheral clock. Signed-off-by: Yoshinori Sato --- include/hw/rx/rx62n-cpg.h | 72 include/hw/rx/rx62n.h | 5 +- hw/rx/rx62n-cpg.c | 344 ++ hw/rx/rx62n.c | 52 +++--- hw/rx/meson.build

[PATCH 12/20] hw/rx/rx62n: Use New SCI module.

2020-08-27 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- include/hw/rx/rx62n.h | 2 +- hw/rx/rx62n.c | 7 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/include/hw/rx/rx62n.h b/include/hw/rx/rx62n.h index 1182ca24de..f463148799 100644 --- a/include/hw/rx/rx62n.h +++ b/include/hw/rx

[PATCH 10/20] hw/rx: Convert to renesas_timer

2020-08-27 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- include/hw/rx/rx62n.h | 4 ++-- hw/rx/Kconfig | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/hw/rx/rx62n.h b/include/hw/rx/rx62n.h index 75945bae50..1182ca24de 100644 --- a/include/hw/rx/rx62n.h +++ b/include/hw/rx/rx62n.h

[PATCH 18/20] hw/rx: Add Tokudenkairo TKDN-RX62N-BRD

2020-08-27 Thread Yoshinori Sato
Hardware information. http://www.tokudenkairo.co.jp/rx62n/ (Japanese) Signed-off-by: Yoshinori Sato --- default-configs/rx-softmmu.mak | 1 + hw/rx/tkdn-rx62n.c | 192 + hw/rx/Kconfig | 6 ++ hw/rx/meson.build | 1

[PATCH 20/20] MAINTAINERS: Update RX entry

2020-08-27 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- MAINTAINERS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 5a22c8be42..cee8448a73 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -2054,9 +2054,11 @@ F: hw/char/renesas_sci.c F: hw/char/sh_serial.c F: hw/timer/renesas_*.c

[PATCH 06/20] hw/timer: Renesas 8bit timer emulation.

2020-08-27 Thread Yoshinori Sato
Rewrite for clock API. Signed-off-by: Yoshinori Sato --- include/hw/timer/renesas_tmr.h | 55 include/hw/timer/renesas_tmr8.h | 67 hw/timer/renesas_tmr.c | 477 hw/timer/renesas_tmr8.c | 540 hw/timer

[PATCH 14/20] hw/rx/rx62n: RX62N Add MTU module

2020-08-27 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- include/hw/rx/rx62n.h | 3 +++ hw/rx/rx62n.c | 28 hw/rx/Kconfig | 1 + 3 files changed, 32 insertions(+) diff --git a/include/hw/rx/rx62n.h b/include/hw/rx/rx62n.h index f463148799..170c8cb6fc 100644 --- a/include

[PATCH 16/20] hw/net: Add Renesas On-chip Ethernet MAC

2020-08-27 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- include/hw/net/renesas_eth.h | 57 +++ hw/net/renesas_eth.c | 875 +++ hw/net/Kconfig | 5 + hw/net/meson.build | 1 + 4 files changed, 938 insertions(+) create mode 100644 include/hw/net

[PATCH 15/20] hw/net: Add generic Bit-bang MDIO PHY.

2020-08-27 Thread Yoshinori Sato
Only supported link status. Signed-off-by: Yoshinori Sato --- include/hw/net/mdio.h | 126 hw/net/mdio.c | 264 ++ hw/net/Kconfig| 3 + hw/net/meson.build| 2 + 4 files changed, 395 insertions(+) create mode

[PATCH 13/20] hw/timer: Add Renesas MTU2

2020-08-27 Thread Yoshinori Sato
Signed-off-by: Yoshinori Sato --- include/hw/timer/renesas_mtu.h | 90 +++ hw/timer/renesas_mtu.c | 1312 hw/timer/Kconfig |2 + hw/timer/meson.build |1 + 4 files changed, 1405 insertions(+) create mode 100644 include

Re: [PULL 07/15] hw/timer: RX62N 8-Bit timer (TMR)

2020-07-07 Thread Yoshinori Sato
On Mon, 29 Jun 2020 18:58:56 +0900, Philippe Mathieu-Daudé wrote: > > Hi Yoshinori, > > On 6/25/20 11:25 AM, Peter Maydell wrote: > > On Sun, 21 Jun 2020 at 13:54, Philippe Mathieu-Daudé > > wrote: > >> > >> From: Yoshinori Sato > >> >

Re: [PATCH] configs: Fix typo in the sh4-softmmu devices config file

2024-09-25 Thread Yoshinori Sato
,4 +1,4 @@ > -# Default configuration for sh4eb-softmmu > +# Default configuration for sh4-softmmu > > # Uncomment the following lines to disable these optional devices: > # > -- > 2.46.0 > Reviewed-by: Yoshinori Sato -- Yosinori Sato

Re: [PATCH] tests/qemu-iotests/testenv: Use the "r2d" machine for sh4/sh4eb

2024-09-25 Thread Yoshinori Sato
On Fri, 20 Sep 2024 17:12:47 +0900, Thomas Huth wrote: > > On 20/09/2024 10.06, Yoshinori Sato wrote: > > On Wed, 18 Sep 2024 04:43:50 +0900, > > Thomas Huth wrote: > >> > >> Commit 0ea0538fae516f9b4 removed the default machine of the sh4 > >>

Re: [PATCH] tests/qemu-iotests/testenv: Use the "r2d" machine for sh4/sh4eb

2024-09-20 Thread Yoshinori Sato
On Wed, 18 Sep 2024 04:43:50 +0900, Thomas Huth wrote: > > Commit 0ea0538fae516f9b4 removed the default machine of the sh4 > binaries, so a lot of iotests are failing now without such a default > machine. Teach the iotest harness to use the "r2d" machine instead > to fix this problem. > > Signed-

Re: [PATCH] tests/functional/test_rx_gdbsim: Use stable URL for test_linux_sash

2024-12-31 Thread Yoshinori Sato
vice seems to have been unstable for a while now. I can't provide a replacement right away. Please use a mirror. > [*] https://www.mail-archive.com/qemu-devel@nongnu.org/msg686487.html > > Cc: Yoshinori Sato > Reported-by: Alex Bennée > Signed-off-by: Philippe Mathieu-Dau

Re: [PATCH] MAINTAINERS: Drop the defunct mail address from Yoshinori Sato

2025-06-10 Thread Yoshinori Sato
d, 2 insertions(+), 7 deletions(-) > > diff --git a/MAINTAINERS b/MAINTAINERS > index eb2b338fb11..d6d5f47c9a5 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -367,7 +367,6 @@ F: tests/tcg/s390x/ > L: qemu-s3...@nongnu.org > > SH4 TCG CPUs > -R: Yoshinori Sato >

[PATCH] MAINTAINERS: Yoshinori Sato email address has been updated

2025-06-12 Thread Yoshinori Sato
The email address has been suspended. I have prepared a new email address. Signed-off-by: Yoshinori Sato --- MAINTAINERS | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index aa6763077e..f28b908e62 100644 --- a/MAINTAINERS +++ b

<    3   4   5   6   7   8