ultrastor.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * ultrastor.c (C) 1991 David B. Gentzel
  3. * Low-level scsi driver for UltraStor 14F
  4. * by David B. Gentzel, Whitfield Software Services, Carnegie, PA
  5. * (gentzel@nova.enet.dec.com)
  6. * scatter/gather added by Scott Taylor (n217cg@tamuts.tamu.edu)
  7. * 24F support by John F. Carr (jfc@athena.mit.edu)
  8. * John's work modified by Caleb Epstein (cae@jpmorgan.com) and
  9. * Eric Youngdale (eric@tantalus.nrl.navy.mil).
  10. * Thanks to UltraStor for providing the necessary documentation
  11. */
  12. #ifndef _ULTRASTOR_H
  13. #define _ULTRASTOR_H
  14. static int ultrastor_detect(struct scsi_host_template *);
  15. static const char *ultrastor_info(struct Scsi_Host *shpnt);
  16. static int ultrastor_queuecommand(struct scsi_cmnd *,
  17. void (*done)(struct scsi_cmnd *));
  18. static int ultrastor_abort(struct scsi_cmnd *);
  19. static int ultrastor_host_reset(struct scsi_cmnd *);
  20. static int ultrastor_biosparam(struct scsi_device *, struct block_device *,
  21. sector_t, int *);
  22. #define ULTRASTOR_14F_MAX_SG 16
  23. #define ULTRASTOR_24F_MAX_SG 33
  24. #define ULTRASTOR_MAX_CMDS_PER_LUN 5
  25. #define ULTRASTOR_MAX_CMDS 16
  26. #define ULTRASTOR_24F_PORT 0xC80
  27. #ifdef ULTRASTOR_PRIVATE
  28. #define UD_ABORT 0x0001
  29. #define UD_COMMAND 0x0002
  30. #define UD_DETECT 0x0004
  31. #define UD_INTERRUPT 0x0008
  32. #define UD_RESET 0x0010
  33. #define UD_MULTI_CMD 0x0020
  34. #define UD_CSIR 0x0040
  35. #define UD_ERROR 0x0080
  36. /* #define PORT_OVERRIDE 0x330 */
  37. /* Values for the PRODUCT_ID ports for the 14F */
  38. #define US14F_PRODUCT_ID_0 0x56
  39. #define US14F_PRODUCT_ID_1 0x40 /* NOTE: Only upper nibble is used */
  40. #define US24F_PRODUCT_ID_0 0x56
  41. #define US24F_PRODUCT_ID_1 0x63
  42. #define US24F_PRODUCT_ID_2 0x02
  43. /* Subversion values */
  44. #define U14F 0
  45. #define U34F 1
  46. /* MSCP field values */
  47. /* Opcode */
  48. #define OP_HOST_ADAPTER 0x1
  49. #define OP_SCSI 0x2
  50. #define OP_RESET 0x4
  51. /* Date Transfer Direction */
  52. #define DTD_SCSI 0x0
  53. #define DTD_IN 0x1
  54. #define DTD_OUT 0x2
  55. #define DTD_NONE 0x3
  56. /* Host Adapter command subcodes */
  57. #define HA_CMD_INQUIRY 0x1
  58. #define HA_CMD_SELF_DIAG 0x2
  59. #define HA_CMD_READ_BUFF 0x3
  60. #define HA_CMD_WRITE_BUFF 0x4
  61. #endif
  62. #endif