mic_common.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * Intel MIC Platform Software Stack (MPSS)
  4. *
  5. * Copyright(c) 2013 Intel Corporation.
  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. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * The full GNU General Public License is included in this distribution in
  17. * the file called "COPYING".
  18. *
  19. * Intel MIC driver.
  20. *
  21. */
  22. #ifndef __MIC_COMMON_H_
  23. #define __MIC_COMMON_H_
  24. #include <linux/virtio_ring.h>
  25. #define __mic_align(a, x) (((a) + (x) - 1) & ~((x) - 1))
  26. /**
  27. * struct mic_device_desc: Virtio device information shared between the
  28. * virtio driver and userspace backend
  29. *
  30. * @type: Device type: console/network/disk etc. Type 0/-1 terminates.
  31. * @num_vq: Number of virtqueues.
  32. * @feature_len: Number of bytes of feature bits. Multiply by 2: one for
  33. host features and one for guest acknowledgements.
  34. * @config_len: Number of bytes of the config array after virtqueues.
  35. * @status: A status byte, written by the Guest.
  36. * @config: Start of the following variable length config.
  37. */
  38. struct mic_device_desc {
  39. __s8 type;
  40. __u8 num_vq;
  41. __u8 feature_len;
  42. __u8 config_len;
  43. __u8 status;
  44. __le64 config[0];
  45. } __attribute__ ((aligned(8)));
  46. /**
  47. * struct mic_device_ctrl: Per virtio device information in the device page
  48. * used internally by the host and card side drivers.
  49. *
  50. * @vdev: Used for storing MIC vdev information by the guest.
  51. * @config_change: Set to 1 by host when a config change is requested.
  52. * @vdev_reset: Set to 1 by guest to indicate virtio device has been reset.
  53. * @guest_ack: Set to 1 by guest to ack a command.
  54. * @host_ack: Set to 1 by host to ack a command.
  55. * @used_address_updated: Set to 1 by guest when the used address should be
  56. * updated.
  57. * @c2h_vdev_db: The doorbell number to be used by guest. Set by host.
  58. * @h2c_vdev_db: The doorbell number to be used by host. Set by guest.
  59. */
  60. struct mic_device_ctrl {
  61. __le64 vdev;
  62. __u8 config_change;
  63. __u8 vdev_reset;
  64. __u8 guest_ack;
  65. __u8 host_ack;
  66. __u8 used_address_updated;
  67. __s8 c2h_vdev_db;
  68. __s8 h2c_vdev_db;
  69. } __attribute__ ((aligned(8)));
  70. /**
  71. * struct mic_bootparam: Virtio device independent information in device page
  72. *
  73. * @magic: A magic value used by the card to ensure it can see the host
  74. * @h2c_config_db: Host to Card Virtio config doorbell set by card
  75. * @node_id: Unique id of the node
  76. * @h2c_scif_db - Host to card SCIF doorbell set by card
  77. * @c2h_scif_db - Card to host SCIF doorbell set by host
  78. * @scif_host_dma_addr - SCIF host queue pair DMA address
  79. * @scif_card_dma_addr - SCIF card queue pair DMA address
  80. */
  81. struct mic_bootparam {
  82. __le32 magic;
  83. __s8 h2c_config_db;
  84. __u8 node_id;
  85. __u8 h2c_scif_db;
  86. __u8 c2h_scif_db;
  87. __u64 scif_host_dma_addr;
  88. __u64 scif_card_dma_addr;
  89. } __attribute__ ((aligned(8)));
  90. /**
  91. * struct mic_device_page: High level representation of the device page
  92. *
  93. * @bootparam: The bootparam structure is used for sharing information and
  94. * status updates between MIC host and card drivers.
  95. * @desc: Array of MIC virtio device descriptors.
  96. */
  97. struct mic_device_page {
  98. struct mic_bootparam bootparam;
  99. struct mic_device_desc desc[0];
  100. };
  101. /**
  102. * struct mic_vqconfig: This is how we expect the device configuration field
  103. * for a virtqueue to be laid out in config space.
  104. *
  105. * @address: Guest/MIC physical address of the virtio ring
  106. * (avail and desc rings)
  107. * @used_address: Guest/MIC physical address of the used ring
  108. * @num: The number of entries in the virtio_ring
  109. */
  110. struct mic_vqconfig {
  111. __le64 address;
  112. __le64 used_address;
  113. __le16 num;
  114. } __attribute__ ((aligned(8)));
  115. /*
  116. * The alignment to use between consumer and producer parts of vring.
  117. * This is pagesize for historical reasons.
  118. */
  119. #define MIC_VIRTIO_RING_ALIGN 4096
  120. #define MIC_MAX_VRINGS 4
  121. #define MIC_VRING_ENTRIES 128
  122. /*
  123. * Max vring entries (power of 2) to ensure desc and avail rings
  124. * fit in a single page
  125. */
  126. #define MIC_MAX_VRING_ENTRIES 128
  127. /**
  128. * Max size of the desc block in bytes: includes:
  129. * - struct mic_device_desc
  130. * - struct mic_vqconfig (num_vq of these)
  131. * - host and guest features
  132. * - virtio device config space
  133. */
  134. #define MIC_MAX_DESC_BLK_SIZE 256
  135. /**
  136. * struct _mic_vring_info - Host vring info exposed to userspace backend
  137. * for the avail index and magic for the card.
  138. *
  139. * @avail_idx: host avail idx
  140. * @magic: A magic debug cookie.
  141. */
  142. struct _mic_vring_info {
  143. __u16 avail_idx;
  144. __le32 magic;
  145. };
  146. /**
  147. * struct mic_vring - Vring information.
  148. *
  149. * @vr: The virtio ring.
  150. * @info: Host vring information exposed to the userspace backend for the
  151. * avail index and magic for the card.
  152. * @va: The va for the buffer allocated for vr and info.
  153. * @len: The length of the buffer required for allocating vr and info.
  154. */
  155. struct mic_vring {
  156. struct vring vr;
  157. struct _mic_vring_info *info;
  158. void *va;
  159. int len;
  160. };
  161. #define mic_aligned_desc_size(d) __mic_align(mic_desc_size(d), 8)
  162. #ifndef INTEL_MIC_CARD
  163. static inline unsigned mic_desc_size(const struct mic_device_desc *desc)
  164. {
  165. return sizeof(*desc) + desc->num_vq * sizeof(struct mic_vqconfig)
  166. + desc->feature_len * 2 + desc->config_len;
  167. }
  168. static inline struct mic_vqconfig *
  169. mic_vq_config(const struct mic_device_desc *desc)
  170. {
  171. return (struct mic_vqconfig *)(desc + 1);
  172. }
  173. static inline __u8 *mic_vq_features(const struct mic_device_desc *desc)
  174. {
  175. return (__u8 *)(mic_vq_config(desc) + desc->num_vq);
  176. }
  177. static inline __u8 *mic_vq_configspace(const struct mic_device_desc *desc)
  178. {
  179. return mic_vq_features(desc) + desc->feature_len * 2;
  180. }
  181. static inline unsigned mic_total_desc_size(struct mic_device_desc *desc)
  182. {
  183. return mic_aligned_desc_size(desc) + sizeof(struct mic_device_ctrl);
  184. }
  185. #endif
  186. /* Device page size */
  187. #define MIC_DP_SIZE 4096
  188. #define MIC_MAGIC 0xc0ffee00
  189. /**
  190. * enum mic_states - MIC states.
  191. */
  192. enum mic_states {
  193. MIC_READY = 0,
  194. MIC_BOOTING,
  195. MIC_ONLINE,
  196. MIC_SHUTTING_DOWN,
  197. MIC_RESETTING,
  198. MIC_RESET_FAILED,
  199. MIC_LAST
  200. };
  201. /**
  202. * enum mic_status - MIC status reported by card after
  203. * a host or card initiated shutdown or a card crash.
  204. */
  205. enum mic_status {
  206. MIC_NOP = 0,
  207. MIC_CRASHED,
  208. MIC_HALTED,
  209. MIC_POWER_OFF,
  210. MIC_RESTART,
  211. MIC_STATUS_LAST
  212. };
  213. #endif