From: Yoshinori Sato <ysato@users.sourceforge.jp>
To: "Philippe Mathieu-Daudé" <philmd@redhat.com>
Cc: qemu-devel@nongnu.org, peter.maydell@linaro.org,
richard.henderson@linaro.org
Subject: Re: [Qemu-devel] [PATCH RFC v6 00/12] Add RX archtecture support
Date: Fri, 12 Apr 2019 22:27:04 +0900 [thread overview]
Message-ID: <87imvjpd5j.wl-ysato@users.sourceforge.jp> (raw)
In-Reply-To: <655a45ed-cd6b-b8d8-72fa-d4ebca3dcd1a@redhat.com>
On Thu, 11 Apr 2019 19:15:59 +0900,
Philippe Mathieu-Daudé wrote:
>
> Hi Yoshinori,
>
> On 4/1/19 4:03 PM, Yoshinori Sato wrote:
> > Hello.
> > This patch series is added Renesas RX target emulation.
> >
> > Update review comments.
> >
> > My git repository is bellow.
> > git://git.pf.osdn.net/gitroot/y/ys/ysato/qemu.git
> >
> > Testing binaries bellow.
> > u-boot
> > Download - https://osdn.net/users/ysato/pf/qemu/dl/u-boot.bin.gz
> >
> > starting
> > $ gzip -d u-boot.bin.gz
> > $ qemu-system-rx -bios u-boot.bin
> >
> > linux and pico-root (only sash)
> > Download - https://osdn.net/users/ysato/pf/qemu/dl/zImage (kernel)
> > https://osdn.net/users/ysato/pf/qemu/dl/rx-qemu.dtb (DeviceTree)
> >
> > starting
> > $ qemu-system-rx -kernel zImage -dtb rx-qemu.dtb -append "earlycon"
> >
> > Changes v5.
> > Fix undocumented instruction behavior.
> > (PUSHM/POPM/RTSD/MVFC/MVTC)
> > More useful messages for invalid operands.
> [...]
> Please don't post your series iterations are as reply to previous
> series, it makes harder to find them.
>
> FYI I use Thunderbird as email client, with mails grouped by thread.
> Since you sent v4 as reply to v3, and similar v5 -> v4 and this v6 ->
> v5, my client kept all subsequent activity folded under the "v3" cover.
> Then I missed to review it.
Oh. sorry.
Make a new thread when sending next time.
> Regards,
>
> Phil.
>
--
Yosinori Sato
WARNING: multiple messages have this Message-ID (diff)
From: Yoshinori Sato <ysato@users.sourceforge.jp>
To: "Philippe Mathieu-Daudé" <philmd@redhat.com>
Cc: peter.maydell@linaro.org, richard.henderson@linaro.org,
qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH RFC v6 00/12] Add RX archtecture support
Date: Fri, 12 Apr 2019 22:27:04 +0900 [thread overview]
Message-ID: <87imvjpd5j.wl-ysato@users.sourceforge.jp> (raw)
Message-ID: <20190412132704.Dqdi2nI_YhkfZJ5EVIfjZzLhvJYl3xPYAC6zWHL1yHw@z> (raw)
In-Reply-To: <655a45ed-cd6b-b8d8-72fa-d4ebca3dcd1a@redhat.com>
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="UTF-8", Size: 1469 bytes --]
On Thu, 11 Apr 2019 19:15:59 +0900,
Philippe Mathieu-Daudé wrote:
>
> Hi Yoshinori,
>
> On 4/1/19 4:03 PM, Yoshinori Sato wrote:
> > Hello.
> > This patch series is added Renesas RX target emulation.
> >
> > Update review comments.
> >
> > My git repository is bellow.
> > git://git.pf.osdn.net/gitroot/y/ys/ysato/qemu.git
> >
> > Testing binaries bellow.
> > u-boot
> > Download - https://osdn.net/users/ysato/pf/qemu/dl/u-boot.bin.gz
> >
> > starting
> > $ gzip -d u-boot.bin.gz
> > $ qemu-system-rx -bios u-boot.bin
> >
> > linux and pico-root (only sash)
> > Download - https://osdn.net/users/ysato/pf/qemu/dl/zImage (kernel)
> > https://osdn.net/users/ysato/pf/qemu/dl/rx-qemu.dtb (DeviceTree)
> >
> > starting
> > $ qemu-system-rx -kernel zImage -dtb rx-qemu.dtb -append "earlycon"
> >
> > Changes v5.
> > Fix undocumented instruction behavior.
> > (PUSHM/POPM/RTSD/MVFC/MVTC)
> > More useful messages for invalid operands.
> [...]
> Please don't post your series iterations are as reply to previous
> series, it makes harder to find them.
>
> FYI I use Thunderbird as email client, with mails grouped by thread.
> Since you sent v4 as reply to v3, and similar v5 -> v4 and this v6 ->
> v5, my client kept all subsequent activity folded under the "v3" cover.
> Then I missed to review it.
Oh. sorry.
Make a new thread when sending next time.
> Regards,
>
> Phil.
>
--
Yosinori Sato
next prev parent reply other threads:[~2019-04-12 13:27 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20190325090047.122981-1-ysato@users.sourceforge.jp>
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 00/12] Add RX archtecture support Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 01/12] target/rx: TCG translation Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 02/12] target/rx: TCG helper Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 03/12] target/rx: CPU definition Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 04/12] target/rx: RX disassembler Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 05/12] target/rx: Miscellaneous files Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 06/12] hw/intc: RX62N interrupt controller (ICUa) Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 07/12] hw/timer: RX62N internal timer modules Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 08/12] hw/char: RX62N serical communication interface (SCI) Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 09/12] hw/rx: RX Target hardware definition Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 10/12] Add rx-softmmu Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 11/12] MAINTAINERS: Add RX Yoshinori Sato
2019-04-01 14:03 ` [Qemu-devel] [PATCH RFC v6 12/12] include/hw/regiserfields.h: Add 8bit and 16bit registers Yoshinori Sato
2019-04-11 10:09 ` Philippe Mathieu-Daudé
2019-04-14 14:55 ` Yoshinori Sato
2019-04-14 14:55 ` Yoshinori Sato
2019-04-01 15:35 ` [Qemu-devel] [PATCH RFC v6 00/12] Add RX archtecture support no-reply
2019-04-11 10:15 ` Philippe Mathieu-Daudé
2019-04-12 13:27 ` Yoshinori Sato [this message]
2019-04-12 13:27 ` Yoshinori Sato
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=87imvjpd5j.wl-ysato@users.sourceforge.jp \
--to=ysato@users.sourceforge.jp \
--cc=peter.maydell@linaro.org \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
/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.