Commit c30bb26499ef3421568c96fe77e65ed3d0b3b55f

Authored by balrog
1 parent c66fb5bc

Add N810 to allowed -M values, add documentation part for N8x0.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4490 c046a42c-6fe2-441c-8c8c-71466251a162
Changelog
1 1 - MIPS Magnum R4000 machine (Hervé Poussineau)
2 2 - Braille support (Samuel Thibault)
3 3 - Freecom MusicPal system emulation (Jan Kiszka)
  4 + - OMAP242x and Nokia N800, N810 machines (Andrzej Zaborowski)
4 5  
5 6 version 0.9.1:
6 7  
... ...
qemu-doc.texi
... ... @@ -87,6 +87,7 @@ For system emulation, the following hardware targets are supported:
87 87 @item Freescale MCF5208EVB (ColdFire V2).
88 88 @item Arnewsh MCF5206 evaluation board (ColdFire V2).
89 89 @item Palm Tungsten|E PDA (OMAP310 processor)
  90 +@item N800 and N810 tablets (OMAP2420 processor)
90 91 @item MusicPal (MV88W8618 ARM processor)
91 92 @end itemize
92 93  
... ... @@ -2469,6 +2470,39 @@ Secure Digital card connected to OMAP MMC/SD host
2469 2470 Three on-chip UARTs
2470 2471 @end itemize
2471 2472  
  2473 +Nokia N800 and N810 internet tablets (known also as RX-34 and RX-44 / 48)
  2474 +emulation supports the following elements:
  2475 +
  2476 +@itemize @minus
  2477 +@item
  2478 +Texas Instruments OMAP2420 System-on-chip (ARM 1136 core)
  2479 +@item
  2480 +RAM and non-volatile OneNAND Flash memories
  2481 +@item
  2482 +Display connected to EPSON remote framebuffer chip and OMAP on-chip
  2483 +display controller and a LS041y3 MIPI DBI-C controller
  2484 +@item
  2485 +TI TSC2301 (in N800) and TI TSC2005 (in N810) touchscreen controllers
  2486 +driven through SPI bus
  2487 +@item
  2488 +National Semiconductor LM8323-controlled qwerty keyboard driven
  2489 +through I@math{^2}C bus
  2490 +@item
  2491 +Secure Digital card connected to OMAP MMC/SD host
  2492 +@item
  2493 +Three OMAP on-chip UARTs and on-chip STI debugging console
  2494 +@item
  2495 +Mentor Graphics "Inventra" dual-role USB controller embedded in a TI
  2496 +TUSB6010 chip - only USB host mode is supported
  2497 +@item
  2498 +TI TMP105 temperature sensor driven through I@math{^2}C bus
  2499 +@item
  2500 +TI TWL92230C power management companion with an RTC on I@math{^2}C bus
  2501 +@item
  2502 +Nokia RETU and TAHVO multi-purpose chips with an RTC, connected
  2503 +through CBUS
  2504 +@end itemize
  2505 +
2472 2506 The Luminary Micro Stellaris LM3S811EVB emulation includes the following
2473 2507 devices:
2474 2508  
... ...
target-arm/machine.c
... ... @@ -13,6 +13,7 @@ void register_machines(void)
13 13 qemu_register_machine(&terrierpda_machine);
14 14 qemu_register_machine(&palmte_machine);
15 15 qemu_register_machine(&n800_machine);
  16 + qemu_register_machine(&n810_machine);
16 17 qemu_register_machine(&lm3s811evb_machine);
17 18 qemu_register_machine(&lm3s6965evb_machine);
18 19 qemu_register_machine(&connex_machine);
... ...