aoe.h
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:4k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /* Copyright (c) 2004 Coraid, Inc.  See COPYING for GPL terms. */
  2. #define VERSION "12"
  3. #define AOE_MAJOR 152
  4. #define DEVICE_NAME "aoe"
  5. /* set AOE_PARTITIONS to 1 to use whole-disks only
  6.  * default is 16, which is 15 partitions plus the whole disk
  7.  */
  8. #ifndef AOE_PARTITIONS
  9. #define AOE_PARTITIONS (16)
  10. #endif
  11. #define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor))
  12. #define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF)
  13. #define AOEMINOR(sysminor) ((sysminor) % NPERSHELF)
  14. #define WHITESPACE " tvfn"
  15. enum {
  16. AOECMD_ATA,
  17. AOECMD_CFG,
  18. AOEFL_RSP = (1<<3),
  19. AOEFL_ERR = (1<<2),
  20. AOEAFL_EXT = (1<<6),
  21. AOEAFL_DEV = (1<<4),
  22. AOEAFL_ASYNC = (1<<1),
  23. AOEAFL_WRITE = (1<<0),
  24. AOECCMD_READ = 0,
  25. AOECCMD_TEST,
  26. AOECCMD_PTEST,
  27. AOECCMD_SET,
  28. AOECCMD_FSET,
  29. AOE_HVER = 0x10,
  30. };
  31. struct aoe_hdr {
  32. unsigned char dst[6];
  33. unsigned char src[6];
  34. __be16 type;
  35. unsigned char verfl;
  36. unsigned char err;
  37. __be16 major;
  38. unsigned char minor;
  39. unsigned char cmd;
  40. __be32 tag;
  41. };
  42. struct aoe_atahdr {
  43. unsigned char aflags;
  44. unsigned char errfeat;
  45. unsigned char scnt;
  46. unsigned char cmdstat;
  47. unsigned char lba0;
  48. unsigned char lba1;
  49. unsigned char lba2;
  50. unsigned char lba3;
  51. unsigned char lba4;
  52. unsigned char lba5;
  53. unsigned char res[2];
  54. };
  55. struct aoe_cfghdr {
  56. __be16 bufcnt;
  57. __be16 fwver;
  58. unsigned char res;
  59. unsigned char aoeccmd;
  60. unsigned char cslen[2];
  61. };
  62. enum {
  63. DEVFL_UP = 1, /* device is installed in system and ready for AoE->ATA commands */
  64. DEVFL_TKILL = (1<<1), /* flag for timer to know when to kill self */
  65. DEVFL_EXT = (1<<2), /* device accepts lba48 commands */
  66. DEVFL_CLOSEWAIT = (1<<3), /* device is waiting for all closes to revalidate */
  67. DEVFL_WC_UPDATE = (1<<4), /* this device needs to update write cache status */
  68. DEVFL_WORKON = (1<<4),
  69. BUFFL_FAIL = 1,
  70. };
  71. enum {
  72. MAXATADATA = 1024,
  73. NPERSHELF = 16, /* number of slots per shelf address */
  74. FREETAG = -1,
  75. MIN_BUFS = 8,
  76. };
  77. struct buf {
  78. struct list_head bufs;
  79. ulong start_time; /* for disk stats */
  80. ulong flags;
  81. ulong nframesout;
  82. char *bufaddr;
  83. ulong resid;
  84. ulong bv_resid;
  85. sector_t sector;
  86. struct bio *bio;
  87. struct bio_vec *bv;
  88. };
  89. struct frame {
  90. int tag;
  91. ulong waited;
  92. struct buf *buf;
  93. char *bufaddr;
  94. int writedatalen;
  95. int ndata;
  96. /* largest possible */
  97. unsigned char data[sizeof(struct aoe_hdr) + sizeof(struct aoe_atahdr)];
  98. };
  99. struct aoedev {
  100. struct aoedev *next;
  101. unsigned char addr[6]; /* remote mac addr */
  102. ushort flags;
  103. ulong sysminor;
  104. ulong aoemajor;
  105. ulong aoeminor;
  106. ulong nopen; /* (bd_openers isn't available without sleeping) */
  107. ulong rttavg; /* round trip average of requests/responses */
  108. u16 fw_ver; /* version of blade's firmware */
  109. struct work_struct work;/* disk create work struct */
  110. struct gendisk *gd;
  111. request_queue_t blkq;
  112. struct hd_geometry geo; 
  113. sector_t ssize;
  114. struct timer_list timer;
  115. spinlock_t lock;
  116. struct net_device *ifp; /* interface ed is attached to */
  117. struct sk_buff *sendq_hd; /* packets needing to be sent, list head */
  118. struct sk_buff *sendq_tl;
  119. mempool_t *bufpool; /* for deadlock-free Buf allocation */
  120. struct list_head bufq; /* queue of bios to work on */
  121. struct buf *inprocess; /* the one we're currently working on */
  122. ulong lasttag; /* last tag sent */
  123. ulong nframes; /* number of frames below */
  124. struct frame *frames;
  125. };
  126. int aoeblk_init(void);
  127. void aoeblk_exit(void);
  128. void aoeblk_gdalloc(void *);
  129. void aoedisk_rm_sysfs(struct aoedev *d);
  130. int aoechr_init(void);
  131. void aoechr_exit(void);
  132. void aoechr_error(char *);
  133. void aoecmd_work(struct aoedev *d);
  134. void aoecmd_cfg(ushort, unsigned char);
  135. void aoecmd_ata_rsp(struct sk_buff *);
  136. void aoecmd_cfg_rsp(struct sk_buff *);
  137. int aoedev_init(void);
  138. void aoedev_exit(void);
  139. struct aoedev *aoedev_by_aoeaddr(int maj, int min);
  140. void aoedev_downdev(struct aoedev *d);
  141. struct aoedev *aoedev_set(ulong, unsigned char *, struct net_device *, ulong);
  142. int aoedev_busy(void);
  143. int aoenet_init(void);
  144. void aoenet_exit(void);
  145. void aoenet_xmit(struct sk_buff *);
  146. int is_aoe_netif(struct net_device *ifp);
  147. int set_aoe_iflist(const char __user *str, size_t size);
  148. u64 mac_addr(char addr[6]);