From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JxiWL-0004x6-Jx for qemu-devel@nongnu.org; Sun, 18 May 2008 09:01:49 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JxiWL-0004wo-AO for qemu-devel@nongnu.org; Sun, 18 May 2008 09:01:49 -0400 Received: from [199.232.76.173] (port=42066 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JxiWL-0004wl-2a for qemu-devel@nongnu.org; Sun, 18 May 2008 09:01:49 -0400 Received: from savannah.gnu.org ([199.232.41.3]:41744 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JxiWK-0003Fg-J5 for qemu-devel@nongnu.org; Sun, 18 May 2008 09:01:48 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1JxiWD-0002NM-4t for qemu-devel@nongnu.org; Sun, 18 May 2008 13:01:41 +0000 Received: from balrog by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1JxiWC-0002NH-S5 for qemu-devel@nongnu.org; Sun, 18 May 2008 13:01:41 +0000 MIME-Version: 1.0 Errors-To: balrog Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Andrzej Zaborowski Message-Id: Date: Sun, 18 May 2008 13:01:40 +0000 Subject: [Qemu-devel] [4490] Add N810 to allowed -M values, add documentation part for N8x0. Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 4490 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4490 Author: balrog Date: 2008-05-18 13:01:40 +0000 (Sun, 18 May 2008) Log Message: ----------- Add N810 to allowed -M values, add documentation part for N8x0. Modified Paths: -------------- trunk/Changelog trunk/qemu-doc.texi trunk/target-arm/machine.c Modified: trunk/Changelog =================================================================== --- trunk/Changelog 2008-05-18 12:14:41 UTC (rev 4489) +++ trunk/Changelog 2008-05-18 13:01:40 UTC (rev 4490) @@ -1,6 +1,7 @@ - MIPS Magnum R4000 machine (Hervé Poussineau) - Braille support (Samuel Thibault) - Freecom MusicPal system emulation (Jan Kiszka) + - OMAP242x and Nokia N800, N810 machines (Andrzej Zaborowski) version 0.9.1: Modified: trunk/qemu-doc.texi =================================================================== --- trunk/qemu-doc.texi 2008-05-18 12:14:41 UTC (rev 4489) +++ trunk/qemu-doc.texi 2008-05-18 13:01:40 UTC (rev 4490) @@ -87,6 +87,7 @@ @item Freescale MCF5208EVB (ColdFire V2). @item Arnewsh MCF5206 evaluation board (ColdFire V2). @item Palm Tungsten|E PDA (OMAP310 processor) +@item N800 and N810 tablets (OMAP2420 processor) @item MusicPal (MV88W8618 ARM processor) @end itemize @@ -2469,6 +2470,39 @@ Three on-chip UARTs @end itemize +Nokia N800 and N810 internet tablets (known also as RX-34 and RX-44 / 48) +emulation supports the following elements: + +@itemize @minus +@item +Texas Instruments OMAP2420 System-on-chip (ARM 1136 core) +@item +RAM and non-volatile OneNAND Flash memories +@item +Display connected to EPSON remote framebuffer chip and OMAP on-chip +display controller and a LS041y3 MIPI DBI-C controller +@item +TI TSC2301 (in N800) and TI TSC2005 (in N810) touchscreen controllers +driven through SPI bus +@item +National Semiconductor LM8323-controlled qwerty keyboard driven +through I@math{^2}C bus +@item +Secure Digital card connected to OMAP MMC/SD host +@item +Three OMAP on-chip UARTs and on-chip STI debugging console +@item +Mentor Graphics "Inventra" dual-role USB controller embedded in a TI +TUSB6010 chip - only USB host mode is supported +@item +TI TMP105 temperature sensor driven through I@math{^2}C bus +@item +TI TWL92230C power management companion with an RTC on I@math{^2}C bus +@item +Nokia RETU and TAHVO multi-purpose chips with an RTC, connected +through CBUS +@end itemize + The Luminary Micro Stellaris LM3S811EVB emulation includes the following devices: Modified: trunk/target-arm/machine.c =================================================================== --- trunk/target-arm/machine.c 2008-05-18 12:14:41 UTC (rev 4489) +++ trunk/target-arm/machine.c 2008-05-18 13:01:40 UTC (rev 4490) @@ -13,6 +13,7 @@ qemu_register_machine(&terrierpda_machine); qemu_register_machine(&palmte_machine); qemu_register_machine(&n800_machine); + qemu_register_machine(&n810_machine); qemu_register_machine(&lm3s811evb_machine); qemu_register_machine(&lm3s6965evb_machine); qemu_register_machine(&connex_machine);