1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * Intel MIC Platform Software Stack (MPSS)
5 * Copyright(c) 2013 Intel Corporation.
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.
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.
16 * The full GNU General Public License is included in this distribution in
17 * the file called "COPYING".
22 #ifndef __MIC_COMMON_H_
23 #define __MIC_COMMON_H_
25 #include <linux/virtio_ring.h>
27 #define __mic_align(a, x) (((a) + (x) - 1) & ~((x) - 1))
30 * struct mic_device_desc: Virtio device information shared between the
31 * virtio driver and userspace backend
33 * @type: Device type: console/network/disk etc. Type 0/-1 terminates.
34 * @num_vq: Number of virtqueues.
35 * @feature_len: Number of bytes of feature bits. Multiply by 2: one for
36 host features and one for guest acknowledgements.
37 * @config_len: Number of bytes of the config array after virtqueues.
38 * @status: A status byte, written by the Guest.
39 * @config: Start of the following variable length config.
41 struct mic_device_desc
{
48 } __attribute__ ((aligned(8)));
51 * struct mic_device_ctrl: Per virtio device information in the device page
52 * used internally by the host and card side drivers.
54 * @vdev: Used for storing MIC vdev information by the guest.
55 * @config_change: Set to 1 by host when a config change is requested.
56 * @vdev_reset: Set to 1 by guest to indicate virtio device has been reset.
57 * @guest_ack: Set to 1 by guest to ack a command.
58 * @host_ack: Set to 1 by host to ack a command.
59 * @used_address_updated: Set to 1 by guest when the used address should be
61 * @c2h_vdev_db: The doorbell number to be used by guest. Set by host.
62 * @h2c_vdev_db: The doorbell number to be used by host. Set by guest.
64 struct mic_device_ctrl
{
70 __u8 used_address_updated
;
73 } __attribute__ ((aligned(8)));
76 * struct mic_bootparam: Virtio device independent information in device page
78 * @magic: A magic value used by the card to ensure it can see the host
79 * @h2c_config_db: Host to Card Virtio config doorbell set by card
80 * @node_id: Unique id of the node
81 * @h2c_scif_db - Host to card SCIF doorbell set by card
82 * @c2h_scif_db - Card to host SCIF doorbell set by host
83 * @scif_host_dma_addr - SCIF host queue pair DMA address
84 * @scif_card_dma_addr - SCIF card queue pair DMA address
86 struct mic_bootparam
{
92 __u64 scif_host_dma_addr
;
93 __u64 scif_card_dma_addr
;
94 } __attribute__ ((aligned(8)));
97 * struct mic_device_page: High level representation of the device page
99 * @bootparam: The bootparam structure is used for sharing information and
100 * status updates between MIC host and card drivers.
101 * @desc: Array of MIC virtio device descriptors.
103 struct mic_device_page
{
104 struct mic_bootparam bootparam
;
105 struct mic_device_desc desc
[0];
108 * struct mic_vqconfig: This is how we expect the device configuration field
109 * for a virtqueue to be laid out in config space.
111 * @address: Guest/MIC physical address of the virtio ring
112 * (avail and desc rings)
113 * @used_address: Guest/MIC physical address of the used ring
114 * @num: The number of entries in the virtio_ring
116 struct mic_vqconfig
{
120 } __attribute__ ((aligned(8)));
123 * The alignment to use between consumer and producer parts of vring.
124 * This is pagesize for historical reasons.
126 #define MIC_VIRTIO_RING_ALIGN 4096
128 #define MIC_MAX_VRINGS 4
129 #define MIC_VRING_ENTRIES 128
132 * Max vring entries (power of 2) to ensure desc and avail rings
133 * fit in a single page
135 #define MIC_MAX_VRING_ENTRIES 128
138 * Max size of the desc block in bytes: includes:
139 * - struct mic_device_desc
140 * - struct mic_vqconfig (num_vq of these)
141 * - host and guest features
142 * - virtio device config space
144 #define MIC_MAX_DESC_BLK_SIZE 256
147 * struct _mic_vring_info - Host vring info exposed to userspace backend
148 * for the avail index and magic for the card.
150 * @avail_idx: host avail idx
151 * @magic: A magic debug cookie.
153 struct _mic_vring_info
{
159 * struct mic_vring - Vring information.
161 * @vr: The virtio ring.
162 * @info: Host vring information exposed to the userspace backend for the
163 * avail index and magic for the card.
164 * @va: The va for the buffer allocated for vr and info.
165 * @len: The length of the buffer required for allocating vr and info.
169 struct _mic_vring_info
*info
;
174 #define mic_aligned_desc_size(d) __mic_align(mic_desc_size(d), 8)
176 #ifndef INTEL_MIC_CARD
177 static inline unsigned mic_desc_size(const struct mic_device_desc
*desc
)
179 return sizeof(*desc
) + desc
->num_vq
* sizeof(struct mic_vqconfig
)
180 + desc
->feature_len
* 2 + desc
->config_len
;
183 static inline struct mic_vqconfig
*
184 mic_vq_config(const struct mic_device_desc
*desc
)
186 return (struct mic_vqconfig
*)(desc
+ 1);
189 static inline __u8
*mic_vq_features(const struct mic_device_desc
*desc
)
191 return (__u8
*)(mic_vq_config(desc
) + desc
->num_vq
);
194 static inline __u8
*mic_vq_configspace(const struct mic_device_desc
*desc
)
196 return mic_vq_features(desc
) + desc
->feature_len
* 2;
198 static inline unsigned mic_total_desc_size(struct mic_device_desc
*desc
)
200 return mic_aligned_desc_size(desc
) + sizeof(struct mic_device_ctrl
);
204 /* Device page size */
205 #define MIC_DP_SIZE 4096
207 #define MIC_MAGIC 0xc0ffee00
210 * enum mic_states - MIC states.
223 * enum mic_status - MIC status reported by card after
224 * a host or card initiated shutdown or a card crash.