[Qemu-devel] [PATCH v18 00/29] Add RX archtecture support

Philippe Mathieu-Daudé posted 29 patches 4 years, 11 months ago
Test s390x passed
Test checkpatch failed
Test asan passed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test FreeBSD passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190607153725.18055-1-philmd@redhat.com
Maintainers: Alistair Francis <alistair@alistair23.me>, "Marc-André Lureau" <marcandre.lureau@redhat.com>, Markus Armbruster <armbru@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, Yoshinori Sato <ysato@users.sourceforge.jp>, Thomas Huth <thuth@redhat.com>, Eric Blake <eblake@redhat.com>, Laurent Vivier <lvivier@redhat.com>
There is a newer version of this series
MAINTAINERS                            |   19 +
arch_init.c                            |    2 +
configure                              |    8 +
default-configs/rx-softmmu.mak         |    3 +
hw/Kconfig                             |    1 +
hw/char/Kconfig                        |    3 +
hw/char/Makefile.objs                  |    1 +
hw/char/renesas_sci.c                  |  340 ++++
hw/intc/Kconfig                        |    3 +
hw/intc/Makefile.objs                  |    1 +
hw/intc/rx_icu.c                       |  376 ++++
hw/rx/Kconfig                          |   14 +
hw/rx/Makefile.objs                    |    2 +
hw/rx/rx-virt.c                        |  113 ++
hw/rx/rx62n.c                          |  247 +++
hw/timer/Kconfig                       |    6 +
hw/timer/Makefile.objs                 |    3 +
hw/timer/renesas_cmt.c                 |  275 +++
hw/timer/renesas_tmr.c                 |  455 +++++
include/disas/dis-asm.h                |    5 +
include/exec/poison.h                  |    1 +
include/hw/char/renesas_sci.h          |   45 +
include/hw/intc/rx_icu.h               |   56 +
include/hw/registerfields.h            |   32 +-
include/hw/rx/rx.h                     |    7 +
include/hw/rx/rx62n.h                  |   94 +
include/hw/timer/renesas_cmt.h         |   38 +
include/hw/timer/renesas_tmr.h         |   53 +
include/qemu/bitops.h                  |   38 +
include/sysemu/arch_init.h             |    1 +
qapi/common.json                       |    3 +-
target/rx/Makefile.objs                |   12 +
target/rx/cpu.c                        |  252 +++
target/rx/cpu.h                        |  227 +++
target/rx/disas.c                      | 1446 ++++++++++++++
target/rx/gdbstub.c                    |  112 ++
target/rx/helper.c                     |  148 ++
target/rx/helper.h                     |   31 +
target/rx/insns.decode                 |  621 ++++++
target/rx/monitor.c                    |   38 +
target/rx/op_helper.c                  |  470 +++++
target/rx/translate.c                  | 2432 ++++++++++++++++++++++++
tests/acceptance/boot_linux_console.py |   51 +
tests/machine-none-test.c              |    1 +
44 files changed, 8084 insertions(+), 2 deletions(-)
create mode 100644 default-configs/rx-softmmu.mak
create mode 100644 hw/char/renesas_sci.c
create mode 100644 hw/intc/rx_icu.c
create mode 100644 hw/rx/Kconfig
create mode 100644 hw/rx/Makefile.objs
create mode 100644 hw/rx/rx-virt.c
create mode 100644 hw/rx/rx62n.c
create mode 100644 hw/timer/renesas_cmt.c
create mode 100644 hw/timer/renesas_tmr.c
create mode 100644 include/hw/char/renesas_sci.h
create mode 100644 include/hw/intc/rx_icu.h
create mode 100644 include/hw/rx/rx.h
create mode 100644 include/hw/rx/rx62n.h
create mode 100644 include/hw/timer/renesas_cmt.h
create mode 100644 include/hw/timer/renesas_tmr.h
create mode 100644 target/rx/Makefile.objs
create mode 100644 target/rx/cpu.c
create mode 100644 target/rx/cpu.h
create mode 100644 target/rx/disas.c
create mode 100644 target/rx/gdbstub.c
create mode 100644 target/rx/helper.c
create mode 100644 target/rx/helper.h
create mode 100644 target/rx/insns.decode
create mode 100644 target/rx/monitor.c
create mode 100644 target/rx/op_helper.c
create mode 100644 target/rx/translate.c
[Qemu-devel] [PATCH v18 00/29] Add RX archtecture support
Posted by Philippe Mathieu-Daudé 4 years, 11 months ago
Hi Yoshinori, Richard, Igor.

This series an iteration of the previous v17 from Yoshinori with
the fixups requested by Igor here:
https://lists.gnu.org/archive/html/qemu-devel/2019-05/msg07260.html
and
https://lists.gnu.org/archive/html/qemu-devel/2019-06/msg01547.html
plus trivial cleanups.

We have:

$ qemu-system-rx -cpu help
rx62n

(qemu) info qom-tree
/machine (rx-virt-machine)
  /peripheral (container)
  /mcu (rx62n)
    /sci[0] (renesas-sci)
      /renesas-sci[0] (qemu:memory-region)
    /icu (rx-icu)
      ...
    /cpu (rx62n-rx-cpu)
      /unnamed-gpio-in[0] (irq)
      /unnamed-gpio-in[1] (irq)
    ...

If Igor aggrees with the fixup patches, Richard, can you squash
them and send a pull request?  (without the last patch, which is
expected to go via Eduardo's tree, but since it is helpful for
testing this series, I included it).

Thanks,

Phil.

Philippe Mathieu-Daudé (8):
  !fixup target/rx: CPU definition
  !fixup target/rx: CPU definition
  !fixup hw/rx: RX Target hardware definition
  hw/registerfields.h: Add 8bit and 16bit register macros
  target/rx: Restrict access to extable[]
  hw/rx: Restrict the RX62N microcontroller to the RX62N CPU core
  hw/rx: Fix comments
  BootLinuxConsoleTest: Test the RX-Virt machine

Richard Henderson (10):
  target/rx: Convert to CPUClass::tlb_fill
  target/rx: Add RX to SysEmuTarget
  tests: Add rx to machine-none-test.c
  hw/rx: Honor -accel qtest
  target/rx: Disassemble rx_index_addr into a string
  target/rx: Replace operand with prt_ldmi in disassembler
  target/rx: Use prt_ldmi for XCHG_mr disassembly
  target/rx: Emit all disassembly in one prt()
  target/rx: Collect all bytes during disassembly
  target/rx: Dump bytes for each insn during disassembly

Yoshinori Sato (11):
  target/rx: TCG translation
  target/rx: TCG helper
  target/rx: CPU definition
  target/rx: RX disassembler
  hw/intc: RX62N interrupt controller (ICUa)
  hw/timer: RX62N internal timer modules
  hw/char: RX62N serial communication interface (SCI)
  hw/rx: RX Target hardware definition
  qemu/bitops.h: Add extract8 and extract16
  Add rx-softmmu
  MAINTAINERS: Add RX

 MAINTAINERS                            |   19 +
 arch_init.c                            |    2 +
 configure                              |    8 +
 default-configs/rx-softmmu.mak         |    3 +
 hw/Kconfig                             |    1 +
 hw/char/Kconfig                        |    3 +
 hw/char/Makefile.objs                  |    1 +
 hw/char/renesas_sci.c                  |  340 ++++
 hw/intc/Kconfig                        |    3 +
 hw/intc/Makefile.objs                  |    1 +
 hw/intc/rx_icu.c                       |  376 ++++
 hw/rx/Kconfig                          |   14 +
 hw/rx/Makefile.objs                    |    2 +
 hw/rx/rx-virt.c                        |  113 ++
 hw/rx/rx62n.c                          |  247 +++
 hw/timer/Kconfig                       |    6 +
 hw/timer/Makefile.objs                 |    3 +
 hw/timer/renesas_cmt.c                 |  275 +++
 hw/timer/renesas_tmr.c                 |  455 +++++
 include/disas/dis-asm.h                |    5 +
 include/exec/poison.h                  |    1 +
 include/hw/char/renesas_sci.h          |   45 +
 include/hw/intc/rx_icu.h               |   56 +
 include/hw/registerfields.h            |   32 +-
 include/hw/rx/rx.h                     |    7 +
 include/hw/rx/rx62n.h                  |   94 +
 include/hw/timer/renesas_cmt.h         |   38 +
 include/hw/timer/renesas_tmr.h         |   53 +
 include/qemu/bitops.h                  |   38 +
 include/sysemu/arch_init.h             |    1 +
 qapi/common.json                       |    3 +-
 target/rx/Makefile.objs                |   12 +
 target/rx/cpu.c                        |  252 +++
 target/rx/cpu.h                        |  227 +++
 target/rx/disas.c                      | 1446 ++++++++++++++
 target/rx/gdbstub.c                    |  112 ++
 target/rx/helper.c                     |  148 ++
 target/rx/helper.h                     |   31 +
 target/rx/insns.decode                 |  621 ++++++
 target/rx/monitor.c                    |   38 +
 target/rx/op_helper.c                  |  470 +++++
 target/rx/translate.c                  | 2432 ++++++++++++++++++++++++
 tests/acceptance/boot_linux_console.py |   51 +
 tests/machine-none-test.c              |    1 +
 44 files changed, 8084 insertions(+), 2 deletions(-)
 create mode 100644 default-configs/rx-softmmu.mak
 create mode 100644 hw/char/renesas_sci.c
 create mode 100644 hw/intc/rx_icu.c
 create mode 100644 hw/rx/Kconfig
 create mode 100644 hw/rx/Makefile.objs
 create mode 100644 hw/rx/rx-virt.c
 create mode 100644 hw/rx/rx62n.c
 create mode 100644 hw/timer/renesas_cmt.c
 create mode 100644 hw/timer/renesas_tmr.c
 create mode 100644 include/hw/char/renesas_sci.h
 create mode 100644 include/hw/intc/rx_icu.h
 create mode 100644 include/hw/rx/rx.h
 create mode 100644 include/hw/rx/rx62n.h
 create mode 100644 include/hw/timer/renesas_cmt.h
 create mode 100644 include/hw/timer/renesas_tmr.h
 create mode 100644 target/rx/Makefile.objs
 create mode 100644 target/rx/cpu.c
 create mode 100644 target/rx/cpu.h
 create mode 100644 target/rx/disas.c
 create mode 100644 target/rx/gdbstub.c
 create mode 100644 target/rx/helper.c
 create mode 100644 target/rx/helper.h
 create mode 100644 target/rx/insns.decode
 create mode 100644 target/rx/monitor.c
 create mode 100644 target/rx/op_helper.c
 create mode 100644 target/rx/translate.c

-- 
2.20.1


Re: [Qemu-devel] [PATCH v18 00/29] Add RX archtecture support
Posted by Yoshinori Sato 4 years, 11 months ago
On Sat, 08 Jun 2019 00:36:56 +0900,
Philippe Mathieu-Daudé wrote:
> 
> Hi Yoshinori, Richard, Igor.
> 
> This series an iteration of the previous v17 from Yoshinori with
> the fixups requested by Igor here:
> https://lists.gnu.org/archive/html/qemu-devel/2019-05/msg07260.html
> and
> https://lists.gnu.org/archive/html/qemu-devel/2019-06/msg01547.html
> plus trivial cleanups.
> 
> We have:
> 
> $ qemu-system-rx -cpu help
> rx62n
> 
> (qemu) info qom-tree
> /machine (rx-virt-machine)
>   /peripheral (container)
>   /mcu (rx62n)
>     /sci[0] (renesas-sci)
>       /renesas-sci[0] (qemu:memory-region)
>     /icu (rx-icu)
>       ...
>     /cpu (rx62n-rx-cpu)
>       /unnamed-gpio-in[0] (irq)
>       /unnamed-gpio-in[1] (irq)
>     ...
> 
> If Igor aggrees with the fixup patches, Richard, can you squash
> them and send a pull request?  (without the last patch, which is
> expected to go via Eduardo's tree, but since it is helpful for
> testing this series, I included it).
> 
> Thanks,

OK.
I looks all fixup patches. It have no problem.

Thanks.

> Phil.
> 
> Philippe Mathieu-Daudé (8):
>   !fixup target/rx: CPU definition
>   !fixup target/rx: CPU definition
>   !fixup hw/rx: RX Target hardware definition
>   hw/registerfields.h: Add 8bit and 16bit register macros
>   target/rx: Restrict access to extable[]
>   hw/rx: Restrict the RX62N microcontroller to the RX62N CPU core
>   hw/rx: Fix comments
>   BootLinuxConsoleTest: Test the RX-Virt machine
> 
> Richard Henderson (10):
>   target/rx: Convert to CPUClass::tlb_fill
>   target/rx: Add RX to SysEmuTarget
>   tests: Add rx to machine-none-test.c
>   hw/rx: Honor -accel qtest
>   target/rx: Disassemble rx_index_addr into a string
>   target/rx: Replace operand with prt_ldmi in disassembler
>   target/rx: Use prt_ldmi for XCHG_mr disassembly
>   target/rx: Emit all disassembly in one prt()
>   target/rx: Collect all bytes during disassembly
>   target/rx: Dump bytes for each insn during disassembly
> 
> Yoshinori Sato (11):
>   target/rx: TCG translation
>   target/rx: TCG helper
>   target/rx: CPU definition
>   target/rx: RX disassembler
>   hw/intc: RX62N interrupt controller (ICUa)
>   hw/timer: RX62N internal timer modules
>   hw/char: RX62N serial communication interface (SCI)
>   hw/rx: RX Target hardware definition
>   qemu/bitops.h: Add extract8 and extract16
>   Add rx-softmmu
>   MAINTAINERS: Add RX
> 
>  MAINTAINERS                            |   19 +
>  arch_init.c                            |    2 +
>  configure                              |    8 +
>  default-configs/rx-softmmu.mak         |    3 +
>  hw/Kconfig                             |    1 +
>  hw/char/Kconfig                        |    3 +
>  hw/char/Makefile.objs                  |    1 +
>  hw/char/renesas_sci.c                  |  340 ++++
>  hw/intc/Kconfig                        |    3 +
>  hw/intc/Makefile.objs                  |    1 +
>  hw/intc/rx_icu.c                       |  376 ++++
>  hw/rx/Kconfig                          |   14 +
>  hw/rx/Makefile.objs                    |    2 +
>  hw/rx/rx-virt.c                        |  113 ++
>  hw/rx/rx62n.c                          |  247 +++
>  hw/timer/Kconfig                       |    6 +
>  hw/timer/Makefile.objs                 |    3 +
>  hw/timer/renesas_cmt.c                 |  275 +++
>  hw/timer/renesas_tmr.c                 |  455 +++++
>  include/disas/dis-asm.h                |    5 +
>  include/exec/poison.h                  |    1 +
>  include/hw/char/renesas_sci.h          |   45 +
>  include/hw/intc/rx_icu.h               |   56 +
>  include/hw/registerfields.h            |   32 +-
>  include/hw/rx/rx.h                     |    7 +
>  include/hw/rx/rx62n.h                  |   94 +
>  include/hw/timer/renesas_cmt.h         |   38 +
>  include/hw/timer/renesas_tmr.h         |   53 +
>  include/qemu/bitops.h                  |   38 +
>  include/sysemu/arch_init.h             |    1 +
>  qapi/common.json                       |    3 +-
>  target/rx/Makefile.objs                |   12 +
>  target/rx/cpu.c                        |  252 +++
>  target/rx/cpu.h                        |  227 +++
>  target/rx/disas.c                      | 1446 ++++++++++++++
>  target/rx/gdbstub.c                    |  112 ++
>  target/rx/helper.c                     |  148 ++
>  target/rx/helper.h                     |   31 +
>  target/rx/insns.decode                 |  621 ++++++
>  target/rx/monitor.c                    |   38 +
>  target/rx/op_helper.c                  |  470 +++++
>  target/rx/translate.c                  | 2432 ++++++++++++++++++++++++
>  tests/acceptance/boot_linux_console.py |   51 +
>  tests/machine-none-test.c              |    1 +
>  44 files changed, 8084 insertions(+), 2 deletions(-)
>  create mode 100644 default-configs/rx-softmmu.mak
>  create mode 100644 hw/char/renesas_sci.c
>  create mode 100644 hw/intc/rx_icu.c
>  create mode 100644 hw/rx/Kconfig
>  create mode 100644 hw/rx/Makefile.objs
>  create mode 100644 hw/rx/rx-virt.c
>  create mode 100644 hw/rx/rx62n.c
>  create mode 100644 hw/timer/renesas_cmt.c
>  create mode 100644 hw/timer/renesas_tmr.c
>  create mode 100644 include/hw/char/renesas_sci.h
>  create mode 100644 include/hw/intc/rx_icu.h
>  create mode 100644 include/hw/rx/rx.h
>  create mode 100644 include/hw/rx/rx62n.h
>  create mode 100644 include/hw/timer/renesas_cmt.h
>  create mode 100644 include/hw/timer/renesas_tmr.h
>  create mode 100644 target/rx/Makefile.objs
>  create mode 100644 target/rx/cpu.c
>  create mode 100644 target/rx/cpu.h
>  create mode 100644 target/rx/disas.c
>  create mode 100644 target/rx/gdbstub.c
>  create mode 100644 target/rx/helper.c
>  create mode 100644 target/rx/helper.h
>  create mode 100644 target/rx/insns.decode
>  create mode 100644 target/rx/monitor.c
>  create mode 100644 target/rx/op_helper.c
>  create mode 100644 target/rx/translate.c
> 
> -- 
> 2.20.1
> 
> 

-- 
Yosinori Sato

Re: [Qemu-devel] [PATCH v18 00/29] Add RX archtecture support
Posted by no-reply@patchew.org 4 years, 11 months ago
Patchew URL: https://patchew.org/QEMU/20190607153725.18055-1-philmd@redhat.com/



Hi,

This series seems to have some coding style problems. See output below for
more information:

Type: series
Subject: [Qemu-devel] [PATCH v18 00/29] Add RX archtecture support
Message-id: 20190607153725.18055-1-philmd@redhat.com

=== TEST SCRIPT BEGIN ===
#!/bin/bash
git rev-parse base > /dev/null || exit 0
git config --local diff.renamelimit 0
git config --local diff.renames True
git config --local diff.algorithm histogram
./scripts/checkpatch.pl --mailback base..
=== TEST SCRIPT END ===

Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
Switched to a new branch 'test'
5445e98 BootLinuxConsoleTest: Test the RX-Virt machine
6f2b0e9 hw/rx: Fix comments
ead645d hw/rx: Restrict the RX62N microcontroller to the RX62N CPU core
7efa4b5 target/rx: Restrict access to extable[]
1a65517 target/rx: Dump bytes for each insn during disassembly
de8c702 target/rx: Collect all bytes during disassembly
4cb3b68 target/rx: Emit all disassembly in one prt()
0ab246d target/rx: Use prt_ldmi for XCHG_mr disassembly
8a49552 target/rx: Replace operand with prt_ldmi in disassembler
c5873c5 target/rx: Disassemble rx_index_addr into a string
1b7300b MAINTAINERS: Add RX
ab21faa Add rx-softmmu
2ee6b02 hw/rx: Honor -accel qtest
24cc3fd tests: Add rx to machine-none-test.c
c61e90f target/rx: Add RX to SysEmuTarget
b91b31c target/rx: Convert to CPUClass::tlb_fill
0dfd9a4 hw/registerfields.h: Add 8bit and 16bit register macros
63b30a3 qemu/bitops.h: Add extract8 and extract16
2e4764c !fixup hw/rx: RX Target hardware definition
917e62d hw/rx: RX Target hardware definition
5c1587e hw/char: RX62N serial communication interface (SCI)
6ac20f4 hw/timer: RX62N internal timer modules
cb2f94c hw/intc: RX62N interrupt controller (ICUa)
f6512cb target/rx: RX disassembler
82b16cc !fixup target/rx: CPU definition
da582b7 !fixup target/rx: CPU definition
3ebcbeb target/rx: CPU definition
3f3ac5e target/rx: TCG helper
b5145b1 target/rx: TCG translation

=== OUTPUT BEGIN ===
1/29 Checking commit b5145b12c648 (target/rx: TCG translation)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#20: 
new file mode 100644

total: 0 errors, 1 warnings, 3065 lines checked

Patch 1/29 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
2/29 Checking commit 3f3ac5e47497 (target/rx: TCG helper)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#15: 
new file mode 100644

total: 0 errors, 1 warnings, 660 lines checked

Patch 2/29 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
3/29 Checking commit 3ebcbeb128d3 (target/rx: CPU definition)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#15: 
new file mode 100644

total: 0 errors, 1 warnings, 599 lines checked

Patch 3/29 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
4/29 Checking commit da582b7342c7 (!fixup target/rx: CPU definition)
5/29 Checking commit 82b16cce53f5 (!fixup target/rx: CPU definition)
6/29 Checking commit f6512cb74875 (target/rx: RX disassembler)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#38: 
new file mode 100644

total: 0 errors, 1 warnings, 1497 lines checked

Patch 6/29 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
7/29 Checking commit cb2f94cc7527 (hw/intc: RX62N interrupt controller (ICUa))
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#40: 
new file mode 100644

total: 0 errors, 1 warnings, 442 lines checked

Patch 7/29 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
8/29 Checking commit 6ac20f498fb3 (hw/timer: RX62N internal timer modules)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#50: 
new file mode 100644

total: 0 errors, 1 warnings, 839 lines checked

Patch 8/29 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
9/29 Checking commit 5c1587e1b36f (hw/char: RX62N serial communication interface (SCI))
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#43: 
new file mode 100644

total: 0 errors, 1 warnings, 398 lines checked

Patch 9/29 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
10/29 Checking commit 917e62dcdb9a (hw/rx: RX Target hardware definition)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#18: 
new file mode 100644

total: 0 errors, 1 warnings, 460 lines checked

Patch 10/29 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
11/29 Checking commit 2e4764c0f04a (!fixup hw/rx: RX Target hardware definition)
12/29 Checking commit 63b30a362289 (qemu/bitops.h: Add extract8 and extract16)
13/29 Checking commit 0dfd9a40f5f1 (hw/registerfields.h: Add 8bit and 16bit register macros)
Use of uninitialized value in concatenation (.) or string at ./scripts/checkpatch.pl line 2467.
ERROR: Macros with multiple statements should be enclosed in a do - while loop
#26: FILE: include/hw/registerfields.h:25:
+#define REG8(reg, addr)                                                  \
+    enum { A_ ## reg = (addr) };                                          \
+    enum { R_ ## reg = (addr) };

ERROR: Macros with multiple statements should be enclosed in a do - while loop
#30: FILE: include/hw/registerfields.h:29:
+#define REG16(reg, addr)                                                  \
+    enum { A_ ## reg = (addr) };                                          \
+    enum { R_ ## reg = (addr) / 2 };

total: 2 errors, 0 warnings, 56 lines checked

Patch 13/29 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

14/29 Checking commit b91b31c9b700 (target/rx: Convert to CPUClass::tlb_fill)
15/29 Checking commit c61e90fdd59b (target/rx: Add RX to SysEmuTarget)
16/29 Checking commit 24cc3fda7c07 (tests: Add rx to machine-none-test.c)
17/29 Checking commit 2ee6b02ab486 (hw/rx: Honor -accel qtest)
18/29 Checking commit ab21faaf4a3c (Add rx-softmmu)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#54: 
new file mode 100644

total: 0 errors, 1 warnings, 52 lines checked

Patch 18/29 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
19/29 Checking commit 1b7300bdbeaf (MAINTAINERS: Add RX)
20/29 Checking commit c5873c58bcf0 (target/rx: Disassemble rx_index_addr into a string)
21/29 Checking commit 8a495529ced5 (target/rx: Replace operand with prt_ldmi in disassembler)
22/29 Checking commit 0ab246d9618d (target/rx: Use prt_ldmi for XCHG_mr disassembly)
23/29 Checking commit 4cb3b6873725 (target/rx: Emit all disassembly in one prt())
24/29 Checking commit de8c702c5aa1 (target/rx: Collect all bytes during disassembly)
25/29 Checking commit 1a65517788a5 (target/rx: Dump bytes for each insn during disassembly)
26/29 Checking commit 7efa4b5c53db (target/rx: Restrict access to extable[])
27/29 Checking commit ead645d4038c (hw/rx: Restrict the RX62N microcontroller to the RX62N CPU core)
28/29 Checking commit 6f2b0e95d5b9 (hw/rx: Fix comments)
29/29 Checking commit 5445e980600a (BootLinuxConsoleTest: Test the RX-Virt machine)
=== OUTPUT END ===

Test command exited with code: 1


The full log is available at
http://patchew.org/logs/20190607153725.18055-1-philmd@redhat.com/testing.checkpatch/?type=message.
---
Email generated automatically by Patchew [https://patchew.org/].
Please send your feedback to patchew-devel@redhat.com