• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision3567266d318633853aae42fadcd264e38956f3c7 (tree)
Time2020-01-23 22:13:31
AuthorYoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Log Message

qemu-doc.texi: Add RX section.

Describe emulated target specification. And two examples.

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>

Change Summary

Incremental Difference

--- a/qemu-doc.texi
+++ b/qemu-doc.texi
@@ -1741,6 +1741,7 @@ differences are mentioned in the following sections.
17411741 * Microblaze System emulator::
17421742 * SH4 System emulator::
17431743 * Xtensa System emulator::
1744+* RX System emulator::
17441745 @end menu
17451746
17461747 @node PowerPC System emulator
@@ -2514,6 +2515,49 @@ so should only be used with trusted guest OS.
25142515
25152516 @c man end
25162517
2518+@node RX System emulator
2519+@section RX System emulator
2520+@cindex system emulation (RX)
2521+
2522+Use the executable @file{qemu-system-rx} to simulate a Virtual RX target.
2523+This target emulated following devices.
2524+
2525+@itemize @minus
2526+@item
2527+R5F562N8 MCU
2528+@item
2529+On-chip memory (ROM 512KB, RAM 96KB)
2530+@item
2531+Interrupt Control Unit (ICUa)
2532+@item
2533+8Bit Timer x 1CH (TMR0,1)
2534+@item
2535+Compare Match Timer x 2CH (CMT0,1)
2536+@item
2537+Serial Communication Interface x 1CH (SCI0)
2538+@item
2539+External memory 16MByte
2540+@end itemize
2541+
2542+Example of @file{qemu-system-rx} usage for rx is shown below:
2543+
2544+Download @code{u-boot_image} from @url{https://osdn.net/users/ysato/pf/qemu/dl/u-boot.bin.gz}
2545+
2546+Start emulation of rx-virt:
2547+@example
2548+qemu-system-rx -bios @code{u-boot_image}
2549+@end example
2550+
2551+Download @code{kernel_image} from @url{https://osdn.net/users/ysato/pf/qemu/dl/zImage}
2552+
2553+Download @code{device_tree_blob} from @url{https://osdn.net/users/ysato/pf/qemu/dl/rx-virt.dtb}
2554+
2555+Start emulation of rx-virt:
2556+@example
2557+qemu-system-rx -kernel @code{kernel_image} -dtb @code{device_tree_blob} \
2558+ -append "earlycon"
2559+@end example
2560+
25172561 @node QEMU User space emulator
25182562 @chapter QEMU User space emulator
25192563