From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D4F24C10F27 for ; Tue, 10 Mar 2020 13:10:00 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id AC736246A6 for ; Tue, 10 Mar 2020 13:10:00 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org AC736246A6 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=users.sourceforge.jp Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:60642 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jBedz-0008Vg-SI for qemu-devel@archiver.kernel.org; Tue, 10 Mar 2020 09:09:59 -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 Content-Transfer-Encoding: quoted-printable 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+qemu-devel=archiver.kernel.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: =20 .. toctree:: =20 + target-arm target-i386 + target-m68k + target-mips target-ppc + target-rx target-sparc target-sparc64 - target-mips - target-arm - target-m68k target-xtensa + --=20 2.20.1