cpqarray.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. This driver is for Compaq's SMART2 Intelligent Disk Array Controllers.
  2. Supported Cards:
  3. ----------------
  4. This driver is known to work with the following cards:
  5. * SMART (EISA)
  6. * SMART-2/E (EISA)
  7. * SMART-2/P
  8. * SMART-2DH
  9. * SMART-2SL
  10. * SMART-221
  11. * SMART-3100ES
  12. * SMART-3200
  13. * Integrated Smart Array Controller
  14. * SA 4200
  15. * SA 4250ES
  16. * SA 431
  17. * RAID LC2 Controller
  18. It should also work with some really old Disk array adapters, but I am
  19. unable to test against these cards:
  20. * IDA
  21. * IDA-2
  22. * IAES
  23. Installing:
  24. -----------
  25. You need to build a new kernel to use this device, even if you want to
  26. use a loadable module.  
  27. Apply the patch to a 2.2.x kernel:
  28. # cd linux
  29. # patch -p1 <smart2.patch
  30. Then build a new kernel and turn on Compaq SMART2 Disk Array support.
  31. Create device nodes for the diskarray device:
  32. # mkdev.ida [ctlrs]
  33. Where ctlrs is the number of controllers you have (defaults to 1 if not
  34. specified).
  35. EISA Controllers:
  36. -----------------
  37. If you want to use an EISA controller you'll have to supply some
  38. insmod/lilo paramaters.  If the driver is compiled into the kernel, must
  39. give it the controller's IO port address at boot time (it is no longer
  40. necessary to specifiy the IRQ).  For example, if you had two SMART-2/E
  41. controllers, in EISA slots 1 and 2 you'd give it a boot argument like
  42. this:
  43. smart2=0x1000,0x2000
  44. If you were loading the driver as a module, you'd give load it like this:
  45. insmod cpqarray.o eisa=0x1000,0x2000
  46. You can use EISA and PCI adapters at the same time.
  47. Booting:
  48. --------
  49. You'll need to use a modified lilo if you want to boot from a disk array.
  50. Its simply a version of lilo with some code added to tell it how to
  51. understand Compaq diskarray devices.
  52. Device Naming:
  53. --------------
  54. You need some entries in /dev for the ida device.  The mkdev.ida script
  55. can make device nodes for you automatically.  Currently the device setup
  56. is as follows:
  57. Major numbers:
  58. 72 ida0
  59. 73 ida1
  60. 74 ida2
  61. etc...
  62. Minor numbers:
  63.         b7 b6 b5 b4 b3 b2 b1 b0
  64.         |----+----| |----+----|
  65.              |           |
  66.              |           +-------- Partition ID (0=wholedev, 1-15 partition)
  67.              |
  68.              +-------------------- Logical Volume number
  69. The suggested device naming scheme is:
  70. /dev/ida/c0d0 Controller 0, disk 0, whole device
  71. /dev/ida/c0d0p1 Controller 0, disk 0, partition 1
  72. /dev/ida/c0d0p2 Controller 0, disk 0, partition 2
  73. /dev/ida/c0d0p3 Controller 0, disk 0, partition 3
  74. /dev/ida/c1d1 Controller 1, disk 1, whole device
  75. /dev/ida/c1d1p1 Controller 1, disk 1, partition 1
  76. /dev/ida/c1d1p2 Controller 1, disk 1, partition 2
  77. /dev/ida/c1d1p3 Controller 1, disk 1, partition 3