From patchwork Tue Mar 10 13:09:03 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yoshinori Sato X-Patchwork-Id: 1252143 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=nongnu.org (client-ip=209.51.188.17; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=users.sourceforge.jp Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48cFmv4h4fz9sVX for ; Wed, 11 Mar 2020 00:09:44 +1100 (AEDT) Received: from localhost ([::1]:60626 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jBedb-0007i5-Uc for incoming@patchwork.ozlabs.org; Tue, 10 Mar 2020 09:09:35 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:48808) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jBedG-0007gf-Ff for qemu-devel@nongnu.org; Tue, 10 Mar 2020 09:09:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jBedF-00073u-8S for qemu-devel@nongnu.org; Tue, 10 Mar 2020 09:09:14 -0400 Received: from mail02.asahi-net.or.jp ([202.224.55.14]:52658) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jBedF-00070B-0H for qemu-devel@nongnu.org; Tue, 10 Mar 2020 09:09:13 -0400 Received: from sakura.ysato.name (ik1-413-38519.vs.sakura.ne.jp [153.127.30.23]) (Authenticated sender: PQ4Y-STU) by mail02.asahi-net.or.jp (Postfix) with ESMTPA id 2A591E4DFF; Tue, 10 Mar 2020 22:09:10 +0900 (JST) Received: from yo-satoh-debian.localdomain (y245053.dynamic.ppp.asahi-net.or.jp [118.243.245.53]) by sakura.ysato.name (Postfix) with ESMTPSA id 8D9C61C0844; Tue, 10 Mar 2020 22:09:09 +0900 (JST) From: Yoshinori Sato To: qemu-devel@nongnu.org, philmd@redhat.com Subject: [PATCH v2] docs: Add RX target. Date: Tue, 10 Mar 2020 22:09:03 +0900 Message-Id: <20200310130903.2695-1-ysato@users.sourceforge.jp> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 202.224.55.14 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: peter.maydell@linaro.org, richard.henderson@linaro.org, Yoshinori Sato Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Add rx-virt target specification document. Sort the list of targets alphabetically. Signed-off-by: Yoshinori Sato --- docs/system/target-rx.rst | 35 +++++++++++++++++++++++++++++++++++ docs/system/targets.rst | 8 +++++--- 2 files changed, 40 insertions(+), 3 deletions(-) create mode 100644 docs/system/target-rx.rst diff --git a/docs/system/target-rx.rst b/docs/system/target-rx.rst new file mode 100644 index 0000000000..32bfae39cd --- /dev/null +++ b/docs/system/target-rx.rst @@ -0,0 +1,35 @@ +.. _RX-System-emulator: + +RX System emulator +-------------------- + +Use the executable ``qemu-system-rx`` to simulate a Virtual RX target. +This target emulates the following devices. + +- R5F562N8 MCU + + - On-chip memory (ROM 512KB, RAM 96KB) + - Interrupt Control Unit (ICUa) + - 8Bit Timer x 1CH (TMR0,1) + - Compare Match Timer x 2CH (CMT0,1) + - Serial Communication Interface x 1CH (SCI0) + +- External memory 16MByte + +Example of ``qemu-system-rx`` usage for RX is shown below: + +Download ```` from +https://osdn.net/users/ysato/pf/qemu/dl/u-boot.bin.gz + +Start emulation of rx-virt:: + qemu-system-rx -bios + +Download ``kernel_image_file`` from +https://osdn.net/users/ysato/pf/qemu/dl/zImage + +Download ``device_tree_blob`` from +https://osdn.net/users/ysato/pf/qemu/dl/rx-virt.dtb + +Start emulation of rx-virt:: + qemu-system-rx -kernel -dtb \ + -append "earlycon" diff --git a/docs/system/targets.rst b/docs/system/targets.rst index eba3111247..0304095eb3 100644 --- a/docs/system/targets.rst +++ b/docs/system/targets.rst @@ -9,11 +9,13 @@ Contents: .. toctree:: + target-arm target-i386 + target-m68k + target-mips target-ppc + target-rx target-sparc target-sparc64 - target-mips - target-arm - target-m68k target-xtensa +