Revision | 3567266d318633853aae42fadcd264e38956f3c7 (tree) |
---|---|
Time | 2020-01-23 22:13:31 |
Author | Yoshinori Sato <ysato@user...> |
Commiter | Yoshinori Sato |
qemu-doc.texi: Add RX section.
Describe emulated target specification. And two examples.
Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
@@ -1741,6 +1741,7 @@ differences are mentioned in the following sections. | ||
1741 | 1741 | * Microblaze System emulator:: |
1742 | 1742 | * SH4 System emulator:: |
1743 | 1743 | * Xtensa System emulator:: |
1744 | +* RX System emulator:: | |
1744 | 1745 | @end menu |
1745 | 1746 | |
1746 | 1747 | @node PowerPC System emulator |
@@ -2514,6 +2515,49 @@ so should only be used with trusted guest OS. | ||
2514 | 2515 | |
2515 | 2516 | @c man end |
2516 | 2517 | |
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 | + | |
2517 | 2561 | @node QEMU User space emulator |
2518 | 2562 | @chapter QEMU User space emulator |
2519 | 2563 |