/[gxemul]/trunk/doc/misc.html
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/doc/misc.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 18 by dpavlin, Mon Oct 8 16:19:11 2007 UTC revision 44 by dpavlin, Mon Oct 8 16:22:56 2007 UTC
# Line 4  Line 4 
4  <table border=0 width=100% bgcolor="#d0d0d0"><tr>  <table border=0 width=100% bgcolor="#d0d0d0"><tr>
5  <td width=100% align=center valign=center><table border=0 width=100%><tr>  <td width=100% align=center valign=center><table border=0 width=100%><tr>
6  <td align="left" valign=center bgcolor="#d0efff"><font color="#6060e0" size="6">  <td align="left" valign=center bgcolor="#d0efff"><font color="#6060e0" size="6">
7  <b>Gavare's eXperimental Emulator:&nbsp;&nbsp;&nbsp;</b></font>  <b>GXemul:</b></font>&nbsp;&nbsp;
8  <font color="#000000" size="6"><b>Miscellaneous</b>  <font color="#000000" size="6"><b>Miscellaneous</b>
9  </font></td></tr></table></td></tr></table><p>  </font></td></tr></table></td></tr></table><p>
10    
11  <!--  <!--
12    
13  $Id: misc.html,v 1.54 2005/10/29 07:06:26 debug Exp $  $Id: misc.html,v 1.73 2007/06/23 16:59:35 debug Exp $
14    
15  Copyright (C) 2003-2005  Anders Gavare.  All rights reserved.  Copyright (C) 2003-2007  Anders Gavare.  All rights reserved.
16    
17  Redistribution and use in source and binary forms, with or without  Redistribution and use in source and binary forms, with or without
18  modification, are permitted provided that the following conditions are met:  modification, are permitted provided that the following conditions are met:
# Line 47  SUCH DAMAGE. Line 47  SUCH DAMAGE.
47    
48  <p>  <p>
49  <ul>  <ul>
   <li><a href="#networking">Networking</a>  
50    <li><a href="#devel">Writing operating system code, or    <li><a href="#devel">Writing operating system code, or
51          developing firmware, using GXemul</a>          developing firmware, using GXemul</a>
52    <li><a href="#compilercontruct">Using GXemul in compiler contruction courses</a>    <li><a href="#compilercontruct">Using GXemul in compiler contruction courses</a>
53    <li><a href="#disk">How to start the emulator with a disk image</a>    <li><a href="#disk">How to start the emulator with a disk image</a>
54      <li><a href="#tape_images">How to start the emulator with tape images</a>
55      <li><a href="#disk_overlays">How to use disk image overlays</a>
56      <li><a href="#filexfer">Transfering files to/from the guest OS</a>
57    <li><a href="#largeimages">How to extract large gzipped disk images</a>    <li><a href="#largeimages">How to extract large gzipped disk images</a>
58    <li><a href="#userland">Running userland binaries</a>    <li><a href="#userland">Running userland binaries</a>
59    <li><a href="#promdump">Using a PROM dump from a real machine</a>    <li><a href="#promdump">Using a PROM dump from a real machine</a>
# Line 63  SUCH DAMAGE. Line 65  SUCH DAMAGE.
65    
66    
67    
 <p><br>  
 <a name="networking"></a>  
 <h3>Networking:</h3>  
   
 It is possible to let the guest OS running inside the emulator get access to  
 the Internet. If you are interested in the technical details, and the  
 reasons why networking is implemented in the emulator the way it currently  
 is implemented, you might want to read the <a href="technical.html#net">  
 networking section in the technical documentation</a>.  
 <p>  
 The guest OS running inside the emulator uses a private IPv4 address, such  
 as 10.0.0.1, and the emulator acts as a NAT-like gateway/firewall at IPv4  
 address 10.0.0.254. To the outside world it will seem like it is the host's  
 OS that connects to other machines on the internet, not the guest OS.  
 <p>  
 <font color="#ff0000">NOTE: This is still experimental!  
 As of 2004-07-21, ARP + ICMP + UDP + TCP are emulated well enough to let  
 NetBSD and OpenBSD install via ftp, and use the network for many normal  
 activities, but not everything works yet.</font>  
   
   
   
   
68    
69    
70  <p><br>  <p><br>
# Line 94  activities, but not everything works yet Line 73  activities, but not everything works yet
73    
74  Is this a good idea?  The answer is yes and no, depending on the level of  Is this a good idea?  The answer is yes and no, depending on the level of
75  detail you need in your simulations. If you are developing an operating  detail you need in your simulations. If you are developing an operating
76  system or operating system kernel of your own, and wish to target  system or operating system kernel of your own, then the emulator can be a
77  MIPS-like systems in general, then the answer might be yes, for  complement to testing on real hardware.
 experimental purposes.  
78    
79  <p>Some examples of things that <i>don't</i> work, that you should keep in  <p>Important things to keep in mind:
 mind:  
80    
81  <ul>  <ul>
82          <li>Porting code to a specific machine mode, e.g. a Silicon Graphics          <li>Porting code to a specific machine mode, e.g. a Silicon Graphics
83          machine, using GXemul, will not necessarily cause the code to          machine, using GXemul, will not "magically" cause the code to
84          work on a real machine. Sometimes code works in GXemul which doesn't          work on a real machine. Sometimes code works in GXemul which doesn't
85          work on real hardware, sometimes it's the other way around.          work on real hardware, sometimes it's the other way around.
86    
# Line 111  mind: Line 88  mind:
88          <li>GXemul contains bugs, and many things are not yet implemented.          <li>GXemul contains bugs, and many things are not yet implemented.
89    
90          <p>          <p>
91          <li>I have only implemented devices in GXemul to the degree that          <li><b>Very important!</b> I have only implemented devices in GXemul
92          NetBSD, OpenBSD, etc, don't complain too much. One way to say it          to the degree that NetBSD, OpenBSD, Linux, etc don't complain too much.
93          is that the device implementations are "lazy hacks", based on the          <p>
94          assumption that the emulated OS is already developed and bug-free.          If you are developing a driver for a device which is emulated by
95          They are not intended to be used for development of new OS code,          GXemul, and your driver does not seem to be working, then the
96          so if you do that, then be prepared for bugs and inconsitencies.          probability of a bug in GXemul's implementation of the device is
97            very much higher than that of a bug in your driver.
98            <p>
99            The device implementations in GXemul are based on the assumption
100            that the emulated OS is already developed and bug-free. They are
101            not primarily intended to be used for development of new device
102            driver code in operating systems, so if you do that, then be
103            prepared for bugs and inconsitencies.
104          <p>          <p>
105          <li>CPU details in GXemul are usually wrong. If your code depends          <li>CPU details in GXemul are usually wrong. If your code depends
106          on, say, R10000 or MIPS64 specifics, chances are that GXemul will          on, say, R10000 or MIPS64 specifics, chances are that GXemul will
107          not be sufficient. Again, this was done as "lazy hacks", and pretty          not be sufficient. One example is different revisions of ISAs;
108          much assumes that the OS being emulated is already developed          some instructions which should trigger an exception on a
109          and bug-free.          real MIPS processor usually execute anyway in GXemul. Another
110            example is if userland code tries to access kernel memory; in some
111            cases there is protection against this, but not in all cases (to get
112            higher performance).
113          <p>          <p>
114          <li>Caches. There is no cache emulation in GXemul right now. Caches          <li>Caches. There is no cache emulation in GXemul right now. Caches
115          for R2000/R3000 are faked well enough to run NetBSD, Ultrix, etc          for R2000/R3000 are faked well enough to run NetBSD, Ultrix, etc
116          in the DECstation emulation mode, but other than that, cache          in the <a href="http://en.wikipedia.org/wiki/DECstation">DECstation</a>
117          operations are treated as nops.          emulation mode, but other than that, cache operations are treated as nops.
118  </ul>  </ul>
119    
120  <p>The bottom line is that GXemul can be useful as yet another way to test  <p>The bottom line is that GXemul can be useful as yet another way to test
# Line 145  your code during development, but it sho Line 130  your code during development, but it sho
130  <h3>Using GXemul in compiler contruction courses:</h3>  <h3>Using GXemul in compiler contruction courses:</h3>
131    
132  If you are learning how to write a compiler, and wish to target a  If you are learning how to write a compiler, and wish to target a
133  realistic target platform, then MIPS (as emulated by GXemul)  realistic target platform, then MIPS or ARM (as emulated by GXemul)
134  might be a suitable choice.  might be suitable choices.
135    
136  <ul>  <ul>
137    <li><b>(+)</b>&nbsp;&nbsp;Your compiler needs to output real assembly    <li><b>(+)</b>&nbsp;&nbsp;Your compiler needs to output real assembly
138          language code, which the assembler (eg gas, the GNU assembler) can          language code, which the assembler (e.g. gas, the GNU assembler) can
139          then compile into object format, and then you need to link this          then compile into object format, and then you need to link this
140          into an executable image. This is much closer to how things work          into an executable image. This is much closer to how things work
141          in real life than running assembly language listings in a simulator          in real life than running assembly language listings in a simulator
142          (eg SPIM).          (e.g. <a href="http://pages.cs.wisc.edu/~larus/spim.html">SPIM</a>).
143    <p>    <p>
144    <li><b>(-)</b>&nbsp;&nbsp;GXemul does not simulate out-of-order    <li><b>(-)</b>&nbsp;&nbsp;GXemul does not simulate <a href="http://en.wikipedia.org/wiki/Out-of-order_execution">out-of-order
145          execution, penalties related to instruction scheduling, or          execution</a>, penalties related to instruction scheduling, or
146          load-delays, so it cannot be used to create optimizing compilers          load-delays, so it cannot be used to create optimizing compilers
147          that take advantage of such processor features. GXemul keeps          that take advantage of such processor features. GXemul keeps
148          track of the number of instructions executed, but that's it.          track of the number of instructions executed, and that's it.
149  </ul>  </ul>
150    
151    
# Line 177  are one or more single-character options Line 162  are one or more single-character options
162  to get a list of possible options.  to get a list of possible options.
163    
164  <p>  <p>
165  Here are some examples. If you want to run a NetBSD/pmax kernel on an  Here are some examples. If you want to run a <a href="http://www.netbsd.org/ports/pmax/">NetBSD/pmax</a>
166  emulated DECstation machine, you would use a command line such as this:  kernel on an emulated <a href="http://en.wikipedia.org/wiki/DECstation">DECstation</a>
167    machine, you would use a command line such as this:
168  <pre>  <pre>
169          $ <b>gxemul -e 3max -d pmax_diskimage.fs netbsd-pmax-INSTALL</b>          $ <b>gxemul -e 3max -d pmax_diskimage.fs netbsd-pmax-INSTALL</b>
170  </pre>  </pre>
171  <p>  
172  NOTE: For some emulation modes, such as the DECstation mode, you do  <p>NOTE: For some emulation modes, such as the DECstation mode, you do
173  <i>not</i> have to specify the name of the kernel, if the disk image is  <i>not</i> actually have to specify the name of the kernel, if the disk
174  bootable!  image is bootable!
175  <p>  
176  It is possible to have more than one disk. For each -d argument, a disk  <p>It is possible to have more than one disk. For each -d argument, a disk
177  image is added; the first will be SCSI target 0, the second will be target 1, and so on,  image is added; the first will be SCSI target 0, the second will be target 1, and so on,
178  unless you specify explicitly which ID number the devices should have.  unless you specify explicitly which ID number the devices should have.
179  <pre>  <pre>
180          $ <b>gxemul -e 3max -d disk0.raw -d disk1.raw -d 5:disk2.raw netbsd-pmax-INSTALL</b>          $ <b>gxemul -e 3max -d disk0.raw -d disk1.raw -d 5:disk2.raw netbsd-pmax-INSTALL</b>
181  </pre>  </pre>
182  Note: In the example above, disk2.raw will get scsi id 5.  Note: In the example above, disk2.raw will get scsi id 5.
183  <p>  
184  If a filename has a 'c' prefix, or ends with ".iso", then it is assumed to be  <p>If a filename has a 'c' prefix, or ends with ".iso", then it is assumed to be
185  a CDROM device (this can be overridden with a 'd' prefix, to force a read/write disk).  a CDROM device (this can be overridden with a 'd' prefix, to force a read/write disk).
186  For example, the following command would start the emulator with two  For example, the following command would start the emulator with two
187  CDROM images, and one harddisk image:  CDROM images, and one harddisk image:
# Line 214  use it as a CD-ROM directly accessible f Line 200  use it as a CD-ROM directly accessible f
200  </pre>  </pre>
201  It is probably possible to use harddisks as well this way, but I would not  It is probably possible to use harddisks as well this way, but I would not
202  recommend it.  recommend it.
203  <p>  
204    
205    
206    
207    
208    
209    <p><br>
210    <a name="tape_images"></a>
211    <h3>How to start the emulator with tape images:</h3>
212    
213  Using emulated tape drives is a bit more complicated than disks, because a  Using emulated tape drives is a bit more complicated than disks, because a
214  tape can be made up of several "files" with space in between. The solution  tape can be made up of several "files" with space in between. The solution
215  I have choosen is to have one file in the host's file system space for each  I have choosen is to have one file in the host's file system space for each
# Line 264  every time a tape is rewound, it is reop Line 259  every time a tape is rewound, it is reop
259  on the command line. By changing what the symbolic name points to,  on the command line. By changing what the symbolic name points to,
260  you can "switch tapes" without quiting and restarting the emulator.  you can "switch tapes" without quiting and restarting the emulator.
261    
262    <p>
263    <font color="#ff0000">Note: Tape support is most likely very buggy,
264    because it has not been tested much, and has probably also suffered
265    from bit-rot by now.</font>
266    
267    
268    
269    
270    
271    
272    <p><br>
273    <a name="disk_overlays"></a>
274    <h3>How to use disk image overlays:</h3>
275    
276    This is most likely best understood by an example:
277    
278    <p><ul>
279      <li>Install e.g. <a href="guestoses.html#netbsdcatsinstall">NetBSD/cats</a>.
280            You will end up with a disk image called
281            <tt>nbsd_cats.img</tt>.
282      <p>
283      <li>Running the following command will boot straight from the disk
284            image, with no overlay images:<pre>
285            <b>gxemul -XEcats -d nbsd_cats.img netbsd.aout-GENERIC.gz</b>
286    
287    </pre>
288      <li>You may now create an overlay file, a corresponding map file,
289            and start the emulator with the overlay image connected to
290            the same (explicit) ID as the base disk image:<pre>
291            <b>touch overlay.img overlay.img.map
292            gxemul -XEcats -d 0:nbsd_cats.img -d V0:overlay.img netbsd.aout-GENERIC.gz</b>
293    
294    </pre>
295      <li>Any changes to the filesystem you perform when using the overlay
296            will only be written to that overlay. For example, to perform
297            a "roll back", you can do the following:<pre>
298            <b>rm -f overlay.img overlay.img.map
299            touch overlay.img overlay.img.map</b>
300    
301    </pre>
302            and then simply start the emulator again, with the newly created
303            overlay image.
304    </ul>
305    
306    <p>It is also possible to add multiple overlays. In that case, writes
307    always go the the <i>last</i> added overlay.
308    
309    <p>GXemul uses Unix' way of supporting files with "holes",
310    so even if <tt>ls -l overlay.img</tt> says that the overlay is several
311    gigabytes large, <tt>du overlay.img</tt> should reveal that only the
312    blocks that have actually been written to have been stored in the
313    overlay, e.g.:<pre>
314            <b>$ ls -l
315            ..
316            -rw-r--r--  1 debug  wheel  3072319488 Mar 24 11:59 nbsd_cats.img
317            -rw-r--r--  1 debug  wheel     2465354 Mar 24 11:44 netbsd.aout-GENERIC.gz
318            -rw-r--r--  1 debug  wheel  2930841600 Mar 24 14:02 overlay.img
319            -rw-r--r--  1 debug  wheel      715538 Mar 24 14:02 overlay.img.map
320            $ du overlay.img
321            864     overlay.img
322    </b>
323    </pre>
324    
325    <p>The .map file is simply a raw bitmap telling which blocks of the
326    overlay file that are in use.
327    
328    
329    
330    
331    
332    <p><br>
333    <a name="filexfer"></a>
334    <h3>Transfering files to/from the guest OS:</h3>
335    
336    If the emulated machine supports networking (see <a
337    href="networking.html#intro">this section</a> for more info), then the easiest
338    way to transfer files is probably to use FTP or similar methods.
339    
340    <p>There is another way of transfering files which works for any kind of
341    emulated machine which supports disks (either SCSI or IDE). Any file can
342    be supplied as a disk image. For example, consider the following:<pre>
343            $ <b>gxemul -XEcats -d nbsd_cats.img -d archive.tar.gz netbsd-GENERIC</b>
344    </pre>
345    This will start NetBSD/cats with <tt>nbsd_cats.img</tt> as IDE master on
346    controller 0 (wd0), and <tt>archive.tar.gz</tt> as IDE slave on controller
347    0 (wd1). From inside NetBSD, it is now possible to extract the files using
348    the following command:<pre>
349            (inside emulated NetBSD/cats)
350            # <b>tar zxvf /dev/wd1c</b>
351    </pre>
352    Don't worry if NetBSD complains about lack of disklabel; it doesn't
353    matter. On some machines, NetBSD uses <tt>wd1d</tt> instead of
354    <tt>wd1c</tt> for the entire disk.
355    There is also a minor problem: reading the end of the disk image. If you
356    experience problems untaring archives like this, then pad out the archive
357    first with some zeroes.
358    
359    <p>Transfering files <i>out</i> from the emulated operating system to the
360    host can be done the same way. First, prepare an empty archive file:<pre>
361            $ <b>dd if=/dev/zero of=newarchive.tar bs=1024 count=1 seek=10000</b>
362    </pre>This example created a 10 MB empty file. Then, start the emulator
363    like this:<pre>
364            $ <b>gxemul -XEcats -d nbsd_cats.img -d archive.tar netbsd-GENERIC</b>
365    </pre>
366    and transfer files by creating an archive directly onto the disk image:<pre>
367            (inside emulated NetBSD/cats)
368            # <b>tar cvf /dev/wd1c filenames</b>
369    </pre>
370    where filenames are the files or directories to transfer.
371    
372    
373    
374    
375    
376  <p><br>  <p><br>
# Line 310  count.) Line 417  count.)
417  <a name="userland"></a>  <a name="userland"></a>
418  <h3>Running userland binaries:</h3>  <h3>Running userland binaries:</h3>
419    
420  <font color="#ff0000">Note: This does not really work yet.</font>  <font color="#ff0000"><b>NOTE 2007-06-15:</b> I just removed most of the
421    userland (syscall) emulation support, and started a rewrite from scratch.
422    The rest of this section in the documentation is not currently valid.</font>
423    
424  <p>There is some skeleton code for running userland programs as well. This  <p>There is some skeleton code for running userland programs as well. This
425  will not emulate any particular machine, but instead try to translate  will not emulate any particular machine, but instead try to translate
# Line 391  are, so don't expect any PROM image to j Line 500  are, so don't expect any PROM image to j
500    
501  <p>  <p>
502  <h4>Dumping the PROM on a DECstation 5000/125:</h4>  <h4>Dumping the PROM on a DECstation 5000/125:</h4>
503    
504  The image first needs to be extracted from the machine. There are  The image first needs to be extracted from the machine. There are
505  several ways to do this.  several ways to do this.
506    
507  <ul>  <ul>
508    <li>Use hardware to read the PROM chip(s) directly. Not easy if you    <li>Use hardware to read the PROM chip(s) directly. Not easy if you
509          don't have such a hardware reader.          don't have such a hardware reader.
# Line 403  several ways to do this. Line 514  several ways to do this.
514    <li>Hook up a serial console and dump using the PROM's own dump    <li>Hook up a serial console and dump using the PROM's own dump
515          command.          command.
516  </ul>  </ul>
517  <p>  
518  The easiest way is to hook up a serial console. The terminal must be  <p>The easiest way is to hook up a serial console. The terminal must be
519  able to capture output to a file.  able to capture output to a file.
520  <p>  
521  These are approximately the commands that I used:  <p>These are approximately the commands that I used:
522  <pre>  <pre>
523          >><b>cnfg</b>                             <i>Show machine configuration</i>          >><b>cnfg</b>                             <i>Show machine configuration</i>
524    
# Line 417  These are approximately the commands tha Line 528  These are approximately the commands tha
528    
529          >><b>e -x 0xbfc00000:0xbfffffff</b>       <i>Dump the PROM data</i>          >><b>e -x 0xbfc00000:0xbfffffff</b>       <i>Dump the PROM data</i>
530  </pre>  </pre>
531  <p>  
532  Remember that DECstations are little endian, so if the dump data  <p>Remember that DECstations are little endian, so if the dump data
533  looks like this:  looks like this:
534  <pre>  <pre>
535          bfc00000:  0x0bf0007e          bfc00000:  0x0bf0007e
536  </pre>  </pre>
537  then the bytes in memory are actually 0x7e, 0x00, 0xf0, and 0x0b.  then the bytes in memory are actually 0x7e, 0x00, 0xf0, and 0x0b.
538  <p>  
539  At 9600 bps, about 10KB can be dumped per minute, so it takes a while.  <p>At 9600 bps, about 10KB can be dumped per minute, so it takes a while.
540  Once enough of the PROM has been dumped, you can press CTRL-C to break out.  Once enough of the PROM has been dumped, you can press CTRL-C to break out.
541  Then, restore the more environment variable:  Then, restore the more environment variable:
542  <pre>  <pre>
543          >><b>setenv more 24</b>          >><b>setenv more 24</b>
544  </pre>  </pre>
545  <p>  
546  Now, convert the data you just saved (little-endian words -> bytes),  <p>Now, convert the data you just saved (little-endian words -> bytes),
547  and store in a file. Let's call this file DECstation5000_125_promdump.bin.  and store in a file. Let's call this file DECstation5000_125_promdump.bin.
548  <pre>  <pre>
549          $ <b>decprom_dump_txt_to_bin DECstation5000_125_promdump.txt DECstation5000_125_promdump.bin</b>          $ <b>decprom_dump_txt_to_bin DECstation5000_125_promdump.txt DECstation5000_125_promdump.bin</b>
550  </pre>  </pre>
551    
552  This binary image can now be used in the emulator:  This binary image can now be used in the emulator:
553  <pre>  <pre>
554          $ <b>gxemul -e 3min -Q -M128 -q 0xbfc00000:DECstation5000_125_promdump.bin</b>          $ <b>gxemul -e 3min -Q -M128 -q 0xbfc00000:DECstation5000_125_promdump.bin</b>
# Line 498  binary file which should be loaded at a Line 610  binary file which should be loaded at a
610    
611    
612  <p><br>  <p><br>
613  <h4>Dumping the PROM on a SGI O2:</h4>  <a name="promdump_o2"><h4>Dumping the PROM on a SGI O2:</h4></a>
614    
615  The general ideas in this section applies to using ROM images from other  The general ideas in this section applies to using ROM images from other
616  machines as well. I have also tried this on an SGI IP32 ("O2"), in addition  machines as well. I have also tried this on an SGI IP32 ("O2"), in addition

Legend:
Removed from v.18  
changed lines
  Added in v.44

  ViewVC Help
Powered by ViewVC 1.1.26