hpilo.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*
  2. * linux/drivers/char/hpilo.h
  3. *
  4. * Copyright (C) 2008 Hewlett-Packard Development Company, L.P.
  5. * David Altobelli <david.altobelli@hp.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #ifndef __HPILO_H
  12. #define __HPILO_H
  13. #define ILO_NAME "hpilo"
  14. /* max number of open channel control blocks per device, hw limited to 32 */
  15. #define MAX_CCB 8
  16. /* max number of supported devices */
  17. #define MAX_ILO_DEV 1
  18. /* max number of files */
  19. #define MAX_OPEN (MAX_CCB * MAX_ILO_DEV)
  20. /* total wait time in usec */
  21. #define MAX_WAIT_TIME 10000
  22. /* per spin wait time in usec */
  23. #define WAIT_TIME 10
  24. /* spin counter for open/close delay */
  25. #define MAX_WAIT (MAX_WAIT_TIME / WAIT_TIME)
  26. /*
  27. * Per device, used to track global memory allocations.
  28. */
  29. struct ilo_hwinfo {
  30. /* mmio registers on device */
  31. char __iomem *mmio_vaddr;
  32. /* doorbell registers on device */
  33. char __iomem *db_vaddr;
  34. /* shared memory on device used for channel control blocks */
  35. char __iomem *ram_vaddr;
  36. /* files corresponding to this device */
  37. struct ccb_data *ccb_alloc[MAX_CCB];
  38. struct pci_dev *ilo_dev;
  39. spinlock_t alloc_lock;
  40. spinlock_t fifo_lock;
  41. spinlock_t open_lock;
  42. struct cdev cdev;
  43. };
  44. /* offset from mmio_vaddr for enabling doorbell interrupts */
  45. #define DB_IRQ 0xB2
  46. /* offset from mmio_vaddr for outbound communications */
  47. #define DB_OUT 0xD4
  48. /* DB_OUT reset bit */
  49. #define DB_RESET 26
  50. /*
  51. * Channel control block. Used to manage hardware queues.
  52. * The format must match hw's version. The hw ccb is 128 bytes,
  53. * but the context area shouldn't be touched by the driver.
  54. */
  55. #define ILOSW_CCB_SZ 64
  56. #define ILOHW_CCB_SZ 128
  57. struct ccb {
  58. union {
  59. char *send_fifobar;
  60. u64 padding1;
  61. } ccb_u1;
  62. union {
  63. char *send_desc;
  64. u64 padding2;
  65. } ccb_u2;
  66. u64 send_ctrl;
  67. union {
  68. char *recv_fifobar;
  69. u64 padding3;
  70. } ccb_u3;
  71. union {
  72. char *recv_desc;
  73. u64 padding4;
  74. } ccb_u4;
  75. u64 recv_ctrl;
  76. union {
  77. char __iomem *db_base;
  78. u64 padding5;
  79. } ccb_u5;
  80. u64 channel;
  81. /* unused context area (64 bytes) */
  82. };
  83. /* ccb queue parameters */
  84. #define SENDQ 1
  85. #define RECVQ 2
  86. #define NR_QENTRY 4
  87. #define L2_QENTRY_SZ 12
  88. /* ccb ctrl bitfields */
  89. #define CTRL_BITPOS_L2SZ 0
  90. #define CTRL_BITPOS_FIFOINDEXMASK 4
  91. #define CTRL_BITPOS_DESCLIMIT 18
  92. #define CTRL_BITPOS_A 30
  93. #define CTRL_BITPOS_G 31
  94. /* ccb doorbell macros */
  95. #define L2_DB_SIZE 14
  96. #define ONE_DB_SIZE (1 << L2_DB_SIZE)
  97. /*
  98. * Per fd structure used to track the ccb allocated to that dev file.
  99. */
  100. struct ccb_data {
  101. /* software version of ccb, using virtual addrs */
  102. struct ccb driver_ccb;
  103. /* hardware version of ccb, using physical addrs */
  104. struct ccb ilo_ccb;
  105. /* hardware ccb is written to this shared mapped device memory */
  106. struct ccb __iomem *mapped_ccb;
  107. /* dma'able memory used for send/recv queues */
  108. void *dma_va;
  109. dma_addr_t dma_pa;
  110. size_t dma_size;
  111. /* pointer to hardware device info */
  112. struct ilo_hwinfo *ilo_hw;
  113. /* queue for this ccb to wait for recv data */
  114. wait_queue_head_t ccb_waitq;
  115. /* usage count, to allow for shared ccb's */
  116. int ccb_cnt;
  117. /* open wanted exclusive access to this ccb */
  118. int ccb_excl;
  119. };
  120. /*
  121. * FIFO queue structure, shared with hw.
  122. */
  123. #define ILO_START_ALIGN 4096
  124. #define ILO_CACHE_SZ 128
  125. struct fifo {
  126. u64 nrents; /* user requested number of fifo entries */
  127. u64 imask; /* mask to extract valid fifo index */
  128. u64 merge; /* O/C bits to merge in during enqueue operation */
  129. u64 reset; /* set to non-zero when the target device resets */
  130. u8 pad_0[ILO_CACHE_SZ - (sizeof(u64) * 4)];
  131. u64 head;
  132. u8 pad_1[ILO_CACHE_SZ - (sizeof(u64))];
  133. u64 tail;
  134. u8 pad_2[ILO_CACHE_SZ - (sizeof(u64))];
  135. u64 fifobar[1];
  136. };
  137. /* convert between struct fifo, and the fifobar, which is saved in the ccb */
  138. #define FIFOHANDLESIZE (sizeof(struct fifo) - sizeof(u64))
  139. #define FIFOBARTOHANDLE(_fifo) \
  140. ((struct fifo *)(((char *)(_fifo)) - FIFOHANDLESIZE))
  141. /* the number of qwords to consume from the entry descriptor */
  142. #define ENTRY_BITPOS_QWORDS 0
  143. /* descriptor index number (within a specified queue) */
  144. #define ENTRY_BITPOS_DESCRIPTOR 10
  145. /* state bit, fifo entry consumed by consumer */
  146. #define ENTRY_BITPOS_C 22
  147. /* state bit, fifo entry is occupied */
  148. #define ENTRY_BITPOS_O 23
  149. #define ENTRY_BITS_QWORDS 10
  150. #define ENTRY_BITS_DESCRIPTOR 12
  151. #define ENTRY_BITS_C 1
  152. #define ENTRY_BITS_O 1
  153. #define ENTRY_BITS_TOTAL \
  154. (ENTRY_BITS_C + ENTRY_BITS_O + \
  155. ENTRY_BITS_QWORDS + ENTRY_BITS_DESCRIPTOR)
  156. /* extract various entry fields */
  157. #define ENTRY_MASK ((1 << ENTRY_BITS_TOTAL) - 1)
  158. #define ENTRY_MASK_C (((1 << ENTRY_BITS_C) - 1) << ENTRY_BITPOS_C)
  159. #define ENTRY_MASK_O (((1 << ENTRY_BITS_O) - 1) << ENTRY_BITPOS_O)
  160. #define ENTRY_MASK_QWORDS \
  161. (((1 << ENTRY_BITS_QWORDS) - 1) << ENTRY_BITPOS_QWORDS)
  162. #define ENTRY_MASK_DESCRIPTOR \
  163. (((1 << ENTRY_BITS_DESCRIPTOR) - 1) << ENTRY_BITPOS_DESCRIPTOR)
  164. #define ENTRY_MASK_NOSTATE (ENTRY_MASK >> (ENTRY_BITS_C + ENTRY_BITS_O))
  165. #endif /* __HPILO_H */