home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / disk / WrenV_cache.README < prev    next >
Encoding:
Text File  |  1990-02-05  |  2.6 KB  |  82 lines

  1. 04 feb 90 -- Paul V. O'Neill, Coastal Imaging Lab, Oregon State University
  2. cachecon.c
  3.  
  4. Cache control for the Wren V 94181-702 scsi disk drive on a NeXT computer.
  5.  
  6. ----------------------------------------------------------------------
  7. READ LOOK-AHEAD/CACHE CONTROL on the Wren V:
  8.  
  9. Case A - Read command received and first LBA not in cache:
  10. 1. Fetch requested data from disk and transfer to host.
  11. 2. Fetch remaining logical blocks on current track and save in cache.
  12.  
  13. Case B - Read command received and first LBA already in cache:
  14. 1. Start transfer to host of all logical blocks requested which are
  15.    already in cache.
  16. 2. Fetch from disk requested logical blocks which are not already in
  17.    cache and queue for transfer to host.
  18. 3. Fetch remaining logical blocks on current track and save in cache.
  19. ---------------------------------------------------------------------
  20.  
  21. Be extremely careful with this program.  Don't change it unless you know
  22. what you're doing.  I highly recommend not running it while booted off
  23. the Wren V.  Boot off the optical and run it from there.
  24.  
  25. Wren V's are shipped with the Cache Control bit off. That is the default
  26. value.  This is a savable parameter.  cachecon sets the save flag.  When
  27. you use cachecon to turn on caching, caching will be enabled at power-up
  28. from then on.  If you use cachecon to turn off caching, that will become
  29. the power-on default.
  30.  
  31. cachecon takes 1 argument.  It must be 'c', 's', '0' or '1'.
  32.  
  33. c    print current cache parameters
  34.  
  35. s    print saved cache parameters
  36.  
  37. 0    turn OFF caching and make that the saved state
  38.  
  39. 1    turn ON caching and make that the saved state
  40.  
  41. You must be root to access lun 0.
  42.  
  43. Only 1-bit of all the cache control parameters is changable.  That's bit
  44. 4 of byte 14.  0x11 -> cache enabled.  0x01 -> cache disabled.
  45.  
  46. RESULTS:
  47.  
  48.     CACHE OFF:
  49. disk> read
  50. starting block? 0
  51. # sectors per transfer? 16
  52. number of transfers? 100
  53. sector increment? 16
  54. 1638400 bytes in 6553 ms = 250137 bytes/s    <<<<<<<<<<
  55. disk> 
  56.  
  57.     CACHE ON:
  58. disk> read
  59. starting block? 0
  60. # sectors per transfer? 16
  61. number of transfers? 100
  62. sector increment? 16
  63. 1638400 bytes in 4698 ms = 349339 bytes/s    <<<<<<<<<<<<
  64. disk> 
  65.  
  66. The Wren V is now faster than the Maxtor 8760S w/ 1024 Byte sectors.
  67.  
  68. This program was built upon /NextDeveloper/Examples/SCSI/sg_example.c.
  69. The pretty stuff is from there.  The hacks are mine.  Check it out!
  70.  
  71. sg_example.c and the PRODUCT SPECIFICATION FOR WREN V SCSI MODEL 94181
  72. (part no. 77765336) would be enough to write a full-fledged formater 
  73. (if you had the time :-)
  74.  
  75. Oh, yeah:
  76.         cc -o cachecon cachecon.c
  77.  
  78. Paul O'Neill                 pvo@oce.orst.edu
  79. Coastal Imaging Lab
  80. OSU--Oceanography
  81. Corvallis, OR  97331         503-737-3251
  82.