home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / CPU110.lha / CPU-Control.doc next >
Encoding:
Text File  |  1995-03-12  |  11.3 KB  |  259 lines

  1. --------------------------------------------------------------------------
  2.                        CPU-Control 1.10 (12-Mar-95)
  3. --------------------------------------------------------------------------
  4.  
  5. CPU-Control  is  a  CPU-like utility for Kickstart/WB 2.0 including a GUI.
  6. The  main  difference  to  other  tools  of this kind is, that CPU-Control
  7. recognizes  external  changes  of  any of its parameters.  Because of this
  8. special  feature it needs some CPU-Time (not much), but in iconified state
  9. it needs no processor time at all.  Additionally CPU-Control allows moving
  10. VBR  (VectorBaseRegister)  to  Fast-RAM, which significantly speeds up all
  11. Traps/Interupts.   Many  CLI  Options have been included to allow usage in
  12. scripts,  so it's a good idea to put "CPU-Control vbr nw" in your Startup-
  13. Sequence.
  14.  
  15. --------------------------------------------------------------------------
  16.                                Requirements
  17. --------------------------------------------------------------------------
  18.  
  19. Amiga-OS 2.04 or higher is required to run CPU-Control.
  20.  
  21. --------------------------------------------------------------------------
  22.                                 CLI Usage
  23. --------------------------------------------------------------------------
  24.  
  25. Parameter      Shortform     Effect                             CPU needed
  26. --------------------------------------------------------------------------
  27. (none)                       just starts CPU-Control
  28. ICACHE            I          enable  Instruction Cache            68020+
  29. NOICACHE          NI         disable Instruction Cache            68020+
  30. DCACHE            D          enable  Data Cache                   68030+
  31. NODCACHE          ND         disable Data Cache                   68030+
  32. IBURST            IB         enable  Instruction Burst            68030
  33. NOIBURST          NIB        disable Instruction Burst            68030
  34. DBURST            DB         enable  Data Burst                   68030
  35. NODBURST          NDB        disable Data Burst                   68030
  36. VBR                          move VBR to FastRAM                  68010+
  37. NOVBR                        normal VBR (Zero)                    68010+
  38. COPYBACK          CB         enable  Copyback                     68040
  39. NOCOPYBACK        NCB        disable Copyback                     68040
  40. MMU                          enable  FastROM/SafeKick        | 68020/851 |
  41. NOMMU                        disable FastROM/SafeKick        |  or 68030 |
  42. MOVESSP           SSP        move SSP to FastRAM
  43. VERBOSE           V          Verbose output
  44. CHECK                        check for a specified processor
  45.                              (68010/68020/68030/68040/68881/68882/FPU/MMU)
  46. ICONIFY           IC         starts iconified
  47. NOWIN             NW         starts without GUI
  48. SYSTEMINFO        SI         displays some information about your system
  49. CCI                          Chip-Cache-Inhibit (see update notes)
  50.  
  51. Example: CPU-Control I D IB NDB VBR SSP MMU V NW
  52.  
  53.          enables all Caches,  enables IBurst,  disables DBurst,  moves VBR
  54.          and SSP  to FastMem,  enables the MMU  (FastROM or SafeKick)  and
  55.          prints the new status verbosely without opening the GUI.
  56.  
  57. Owners  of a Commodore A2286 or A2386 bridgeboard should use the following
  58. lines in their startup-sequence:
  59.  
  60.          ...
  61.          cpu-control nommu nd nw
  62.          binddrivers
  63.          wait 1
  64.          cpu-control mmu d nw
  65.          ...
  66.  
  67. This sets CacheInhibit for Janus memory areas and enables FastROM, so that
  68. there is no need to disable the DataCache.
  69.  
  70. --------------------------------------------------------------------------
  71.                               Technical Info
  72. --------------------------------------------------------------------------
  73.  
  74. CPU-Control  has been developed using HiSoft's wonderful DevPac 3.14.  The
  75. GUI  was  designed using  GadToolsBox 1.3, but the code was so bad, that I
  76. decided to rewrite it.
  77.  
  78. All  cache  manipulations are done using Exec's CacheControl, VBR movement
  79. is  done  by  allocating  1024 Bytes of memory using AllocMem, copying the
  80. area,  and then setting the VBR register to the new value.  Enforcer would
  81. complain  about  this,  but you can simply ignore it.  Just for safety the
  82. routine  in  embedded  in Forbid/Permit, and Caches are cleared via Exec's
  83. CacheClearU.
  84.  
  85. The  MMU  option automagically selects FastROM-mode for ROM-Kickstarts and
  86. SafeKick-mode  for  Kickstarts loaded by ZKick/LKick/ReKick ($200000).  It
  87. is  NOT compatible to the WB-2.0 "CPU" command, because the MMU-Table used
  88. is  much  more  efficient,  and in addition to "CPU" it write-protects the
  89. RAM-image.    Alien-MMU-Activations   make   the   "Safe/Fast  OS"  gadget
  90. unavailable,  and  the  Verbose CLI mode will show up "(MMU)", which means
  91. the  MMU  is  active  but incompatible to CPU-Control.  And again:  Ignore
  92. Enforcer!  A BusError-Handler makes the RAM-image behave like a real ROM.
  93.  
  94. 68020's without MMU (68851) and 68EC030 (68030-Light) should be recognized
  95. correctly.
  96.  
  97. While the full GUI is open, CPU-Control uses a Delay/GT_GetIMsg loop to be
  98. able to recognize changes of the Cache/VBR. In iconified (zoomed) state it
  99. uses Exec's Wait without using any processor time.
  100.  
  101. The MOVESSP option should only be used in Startup-Sequences, because it is
  102. a  quite  dangerous  operation.   SSP will only be moved, if there is REAL
  103. FastRAM  available and SSP is currently in SlowRAM.  This operation is not
  104. reversible.
  105.  
  106. --------------------------------------------------------------------------
  107.                                Future Plans
  108. --------------------------------------------------------------------------
  109.  
  110. - better 68ECxxx recognition
  111.  
  112. - Tooltypes
  113.  
  114. - loading SuperKickstarts from devs: on A3000s like the old v36 ROM
  115.  
  116. - (any more ideas?)
  117.  
  118. --------------------------------------------------------------------------
  119.                                  History
  120. --------------------------------------------------------------------------
  121.  
  122. 1.0     -       initial release:  8-May-92
  123.  
  124. 1.1     -       release date:    13-May-92
  125.  
  126.                 - many serious bugs (hopefully) fixed
  127.                 - overall code optimisation
  128.                 - added 68020/851 and 68030 MMU support
  129.                 - added "ICONIFY" option
  130.  
  131. 1.2     -       release date:    14-May-92
  132.  
  133.                 - added CHECK option to test for a specified processor
  134.                   Example: CPU-Control check 68030
  135.                            will produce an ErrorCode 5 if not found
  136.                   CHECK always activates the NOWIN option
  137.                 - cleaned-up menu layout
  138.  
  139. 1.3     -       release date:    16-May-92
  140.  
  141.                 - added MOVESSP option to allow moving the Supervisor
  142.                   Stackpointer to fast memory
  143.                 - CLI mode (especially CHECK) can now be used on 68000
  144.                 - minor code cleanup
  145.  
  146. 1.3a    -       release date:     7-Jul-92
  147.  
  148.                 - Cache-Inhibit for ChipRAM is no longer set automatically
  149.                   because every well-behaving hardware (including A3000
  150.                   and A2620/30 Turboboards) does this already.
  151.                   In addition operation in ChipRAM is slightly faster now,
  152.                   because the hardwired solution effects Datacache only.
  153.                   In case of trouble the CCI option (CLI only!) could be
  154.                   used to enable Cache-Inhibit. Of course this option is
  155.                   only useful if used together with the MMU option.
  156.  
  157. 1.4     -       release date:    16-Jul-92
  158.  
  159.                 - implemented support for PC/AT-Bridgeboards
  160.                   Cache-Inhibit for Dual-Ported-RAM will be set as soon
  161.                   as the MMU becomes active (SafeKick or FastROM)
  162.                 - implemented SystemInfo (Menu or CLI-Option "SI")
  163.                   The short delay when measuring the MIPS performance is
  164.                   quite normal, so don't worry about it!
  165.                 - more Menu-Shortcuts available (just have a look...)
  166.                 - minor code cleanup
  167.  
  168. 1.5             release date:    21-Jul-92
  169.  
  170.                 - CPU-Control is Font-Sensitive now!
  171.                 - replaced "CPU: ..... FPU: ....." text by "System Info"
  172.                   gadget
  173.  
  174. 1.5a            release date:    17-Sep-92
  175.  
  176.                 - Oh dear... Cache-Inhibit for Bridgeboards did not work!
  177.  
  178. 1.6             release date:    27-Oct-92
  179.  
  180.                 - FastROM and SafeKick works with 68040 now (hopefully!).
  181.                   Address-Space is currently truncated to 64MB in order
  182.                   to keep translation tables short and fast.
  183.                 - improved MMU-switching routines
  184.  
  185. 1.7             release date:    13-Mar-93
  186.  
  187.                 - GUI is now fully OS-3.x compatible (Menus, BusyPointer)
  188.                 - AA Chipset is recognized now
  189.                 - minor code cleanup
  190.  
  191. 1.8             release date:     4-Apr-93
  192.  
  193.                 - 040 CopyBack switching behaves exactly like the CPU
  194.                   command now.
  195.                 - fixed MMU routines for A4000/40.
  196.                   active MMU (after SetPatch) will be displayed as ALIEN,
  197.                   inactive MMU will be displayed as PRIVATE.
  198.                   MMU usage is forbidden, and would be useless anyway.
  199.  
  200. 1.9             release date:    25-May-93
  201.  
  202.                 - overall code cleanup
  203.                 - added MFLOPS calculation to System Info
  204.                 - display method for active Kickstart version is 100%
  205.                   clean now
  206.  
  207.                 BTW: MIPS and MFLOPS are no absolute values, but they
  208.                      can be helpful to compare systems using the SAME
  209.                      test software.
  210.  
  211. 1.10            release date:    12-Mar-95
  212.  
  213.                 - fixed small bug in MIPS/MFLOPS display routines
  214.                 - FastROM and SafeKick support for 68040 removed
  215.                 - removed internal ColdReboot patch, replaced by external
  216.                   RebootPatch program, which works perfectly with all MMUs
  217.                 - added external PatchExcept program to fix a serious bug
  218.                   in Kickstarts guru routines
  219.                 - includes source files for RebootPatch and PatchExcept
  220.  
  221.  
  222.                 ATTENTION: If the main progamm file doesn't have a length
  223.                            of 7964 Bytes it is DAMAGED!
  224.  
  225. --------------------------------------------------------------------------
  226.                                 Shareware
  227. --------------------------------------------------------------------------
  228.  
  229.                          CPU-Control is SHAREWARE!
  230.  
  231.         If you use this program for a longer period than one week,
  232.             please send me a donation of 10 US$ or equivalent!
  233.  
  234.                       So if you want more tools like
  235.                 CPU-Control, TagScreens, UnArp and Safekick
  236.               think about it and keep developers developing.
  237.  
  238.                                 THANK YOU!
  239.  
  240.  
  241.                       Registered-User-Counter: 00056
  242.  
  243. --------------------------------------------------------------------------
  244.                                   Author
  245. --------------------------------------------------------------------------
  246.  
  247.                   Send bug-reports and/or suggestions to:
  248.  
  249.                                Martin Berndt
  250.                             Fr.-Alfred-Str. 115
  251.                               47226 Duisburg
  252.                                   Germany
  253.  
  254.                      E-Mail: m_berndt@wanderer.gun.de
  255.  
  256. --------------------------------------------------------------------------
  257.  
  258. (End of this wonderful document)
  259.