Statistics
| Branch: | Revision:

root / hw / msix.c @ 75b0646f

History | View | Annotate | Download (11.8 kB)

1 02eb84d0 Michael S. Tsirkin
/*
2 02eb84d0 Michael S. Tsirkin
 * MSI-X device support
3 02eb84d0 Michael S. Tsirkin
 *
4 02eb84d0 Michael S. Tsirkin
 * This module includes support for MSI-X in pci devices.
5 02eb84d0 Michael S. Tsirkin
 *
6 02eb84d0 Michael S. Tsirkin
 * Author: Michael S. Tsirkin <mst@redhat.com>
7 02eb84d0 Michael S. Tsirkin
 *
8 02eb84d0 Michael S. Tsirkin
 *  Copyright (c) 2009, Red Hat Inc, Michael S. Tsirkin (mst@redhat.com)
9 02eb84d0 Michael S. Tsirkin
 *
10 02eb84d0 Michael S. Tsirkin
 * This work is licensed under the terms of the GNU GPL, version 2.  See
11 02eb84d0 Michael S. Tsirkin
 * the COPYING file in the top-level directory.
12 02eb84d0 Michael S. Tsirkin
 */
13 02eb84d0 Michael S. Tsirkin
14 02eb84d0 Michael S. Tsirkin
#include "hw.h"
15 02eb84d0 Michael S. Tsirkin
#include "msix.h"
16 02eb84d0 Michael S. Tsirkin
#include "pci.h"
17 bf1b0071 Blue Swirl
#include "range.h"
18 02eb84d0 Michael S. Tsirkin
19 02eb84d0 Michael S. Tsirkin
#define MSIX_CAP_LENGTH 12
20 02eb84d0 Michael S. Tsirkin
21 2760952b Michael S. Tsirkin
/* MSI enable bit and maskall bit are in byte 1 in FLAGS register */
22 2760952b Michael S. Tsirkin
#define MSIX_CONTROL_OFFSET (PCI_MSIX_FLAGS + 1)
23 02eb84d0 Michael S. Tsirkin
#define MSIX_ENABLE_MASK (PCI_MSIX_FLAGS_ENABLE >> 8)
24 5b5cb086 Michael S. Tsirkin
#define MSIX_MASKALL_MASK (PCI_MSIX_FLAGS_MASKALL >> 8)
25 02eb84d0 Michael S. Tsirkin
26 5a1fc5e8 Michael S. Tsirkin
/* How much space does an MSIX table need. */
27 5a1fc5e8 Michael S. Tsirkin
/* The spec requires giving the table structure
28 5a1fc5e8 Michael S. Tsirkin
 * a 4K aligned region all by itself. */
29 5a1fc5e8 Michael S. Tsirkin
#define MSIX_PAGE_SIZE 0x1000
30 5a1fc5e8 Michael S. Tsirkin
/* Reserve second half of the page for pending bits */
31 5a1fc5e8 Michael S. Tsirkin
#define MSIX_PAGE_PENDING (MSIX_PAGE_SIZE / 2)
32 02eb84d0 Michael S. Tsirkin
#define MSIX_MAX_ENTRIES 32
33 02eb84d0 Michael S. Tsirkin
34 02eb84d0 Michael S. Tsirkin
35 02eb84d0 Michael S. Tsirkin
/* Flag for interrupt controller to declare MSI-X support */
36 02eb84d0 Michael S. Tsirkin
int msix_supported;
37 02eb84d0 Michael S. Tsirkin
38 02eb84d0 Michael S. Tsirkin
/* Add MSI-X capability to the config space for the device. */
39 02eb84d0 Michael S. Tsirkin
/* Given a bar and its size, add MSI-X table on top of it
40 02eb84d0 Michael S. Tsirkin
 * and fill MSI-X capability in the config space.
41 02eb84d0 Michael S. Tsirkin
 * Original bar size must be a power of 2 or 0.
42 02eb84d0 Michael S. Tsirkin
 * New bar size is returned. */
43 02eb84d0 Michael S. Tsirkin
static int msix_add_config(struct PCIDevice *pdev, unsigned short nentries,
44 02eb84d0 Michael S. Tsirkin
                           unsigned bar_nr, unsigned bar_size)
45 02eb84d0 Michael S. Tsirkin
{
46 02eb84d0 Michael S. Tsirkin
    int config_offset;
47 02eb84d0 Michael S. Tsirkin
    uint8_t *config;
48 02eb84d0 Michael S. Tsirkin
    uint32_t new_size;
49 02eb84d0 Michael S. Tsirkin
50 02eb84d0 Michael S. Tsirkin
    if (nentries < 1 || nentries > PCI_MSIX_FLAGS_QSIZE + 1)
51 02eb84d0 Michael S. Tsirkin
        return -EINVAL;
52 02eb84d0 Michael S. Tsirkin
    if (bar_size > 0x80000000)
53 02eb84d0 Michael S. Tsirkin
        return -ENOSPC;
54 02eb84d0 Michael S. Tsirkin
55 02eb84d0 Michael S. Tsirkin
    /* Add space for MSI-X structures */
56 5e520a7d Blue Swirl
    if (!bar_size) {
57 5a1fc5e8 Michael S. Tsirkin
        new_size = MSIX_PAGE_SIZE;
58 5a1fc5e8 Michael S. Tsirkin
    } else if (bar_size < MSIX_PAGE_SIZE) {
59 5a1fc5e8 Michael S. Tsirkin
        bar_size = MSIX_PAGE_SIZE;
60 5a1fc5e8 Michael S. Tsirkin
        new_size = MSIX_PAGE_SIZE * 2;
61 5a1fc5e8 Michael S. Tsirkin
    } else {
62 02eb84d0 Michael S. Tsirkin
        new_size = bar_size * 2;
63 5a1fc5e8 Michael S. Tsirkin
    }
64 02eb84d0 Michael S. Tsirkin
65 02eb84d0 Michael S. Tsirkin
    pdev->msix_bar_size = new_size;
66 ca77089d Isaku Yamahata
    config_offset = pci_add_capability(pdev, PCI_CAP_ID_MSIX,
67 ca77089d Isaku Yamahata
                                       0, MSIX_CAP_LENGTH);
68 02eb84d0 Michael S. Tsirkin
    if (config_offset < 0)
69 02eb84d0 Michael S. Tsirkin
        return config_offset;
70 02eb84d0 Michael S. Tsirkin
    config = pdev->config + config_offset;
71 02eb84d0 Michael S. Tsirkin
72 02eb84d0 Michael S. Tsirkin
    pci_set_word(config + PCI_MSIX_FLAGS, nentries - 1);
73 02eb84d0 Michael S. Tsirkin
    /* Table on top of BAR */
74 01731cfb Jan Kiszka
    pci_set_long(config + PCI_MSIX_TABLE, bar_size | bar_nr);
75 02eb84d0 Michael S. Tsirkin
    /* Pending bits on top of that */
76 01731cfb Jan Kiszka
    pci_set_long(config + PCI_MSIX_PBA, (bar_size + MSIX_PAGE_PENDING) |
77 5a1fc5e8 Michael S. Tsirkin
                 bar_nr);
78 02eb84d0 Michael S. Tsirkin
    pdev->msix_cap = config_offset;
79 ebabb67a Stefan Weil
    /* Make flags bit writable. */
80 5b5cb086 Michael S. Tsirkin
    pdev->wmask[config_offset + MSIX_CONTROL_OFFSET] |= MSIX_ENABLE_MASK |
81 5b5cb086 Michael S. Tsirkin
            MSIX_MASKALL_MASK;
82 02eb84d0 Michael S. Tsirkin
    return 0;
83 02eb84d0 Michael S. Tsirkin
}
84 02eb84d0 Michael S. Tsirkin
85 c227f099 Anthony Liguori
static uint32_t msix_mmio_readl(void *opaque, target_phys_addr_t addr)
86 02eb84d0 Michael S. Tsirkin
{
87 02eb84d0 Michael S. Tsirkin
    PCIDevice *dev = opaque;
88 76f5159d Michael S. Tsirkin
    unsigned int offset = addr & (MSIX_PAGE_SIZE - 1) & ~0x3;
89 02eb84d0 Michael S. Tsirkin
    void *page = dev->msix_table_page;
90 02eb84d0 Michael S. Tsirkin
91 76f5159d Michael S. Tsirkin
    return pci_get_long(page + offset);
92 02eb84d0 Michael S. Tsirkin
}
93 02eb84d0 Michael S. Tsirkin
94 c227f099 Anthony Liguori
static uint32_t msix_mmio_read_unallowed(void *opaque, target_phys_addr_t addr)
95 02eb84d0 Michael S. Tsirkin
{
96 02eb84d0 Michael S. Tsirkin
    fprintf(stderr, "MSI-X: only dword read is allowed!\n");
97 02eb84d0 Michael S. Tsirkin
    return 0;
98 02eb84d0 Michael S. Tsirkin
}
99 02eb84d0 Michael S. Tsirkin
100 02eb84d0 Michael S. Tsirkin
static uint8_t msix_pending_mask(int vector)
101 02eb84d0 Michael S. Tsirkin
{
102 02eb84d0 Michael S. Tsirkin
    return 1 << (vector % 8);
103 02eb84d0 Michael S. Tsirkin
}
104 02eb84d0 Michael S. Tsirkin
105 02eb84d0 Michael S. Tsirkin
static uint8_t *msix_pending_byte(PCIDevice *dev, int vector)
106 02eb84d0 Michael S. Tsirkin
{
107 5a1fc5e8 Michael S. Tsirkin
    return dev->msix_table_page + MSIX_PAGE_PENDING + vector / 8;
108 02eb84d0 Michael S. Tsirkin
}
109 02eb84d0 Michael S. Tsirkin
110 02eb84d0 Michael S. Tsirkin
static int msix_is_pending(PCIDevice *dev, int vector)
111 02eb84d0 Michael S. Tsirkin
{
112 02eb84d0 Michael S. Tsirkin
    return *msix_pending_byte(dev, vector) & msix_pending_mask(vector);
113 02eb84d0 Michael S. Tsirkin
}
114 02eb84d0 Michael S. Tsirkin
115 02eb84d0 Michael S. Tsirkin
static void msix_set_pending(PCIDevice *dev, int vector)
116 02eb84d0 Michael S. Tsirkin
{
117 02eb84d0 Michael S. Tsirkin
    *msix_pending_byte(dev, vector) |= msix_pending_mask(vector);
118 02eb84d0 Michael S. Tsirkin
}
119 02eb84d0 Michael S. Tsirkin
120 02eb84d0 Michael S. Tsirkin
static void msix_clr_pending(PCIDevice *dev, int vector)
121 02eb84d0 Michael S. Tsirkin
{
122 02eb84d0 Michael S. Tsirkin
    *msix_pending_byte(dev, vector) &= ~msix_pending_mask(vector);
123 02eb84d0 Michael S. Tsirkin
}
124 02eb84d0 Michael S. Tsirkin
125 5b5cb086 Michael S. Tsirkin
static int msix_function_masked(PCIDevice *dev)
126 5b5cb086 Michael S. Tsirkin
{
127 5b5cb086 Michael S. Tsirkin
    return dev->config[dev->msix_cap + MSIX_CONTROL_OFFSET] & MSIX_MASKALL_MASK;
128 5b5cb086 Michael S. Tsirkin
}
129 5b5cb086 Michael S. Tsirkin
130 02eb84d0 Michael S. Tsirkin
static int msix_is_masked(PCIDevice *dev, int vector)
131 02eb84d0 Michael S. Tsirkin
{
132 01731cfb Jan Kiszka
    unsigned offset =
133 01731cfb Jan Kiszka
        vector * PCI_MSIX_ENTRY_SIZE + PCI_MSIX_ENTRY_VECTOR_CTRL;
134 5b5cb086 Michael S. Tsirkin
    return msix_function_masked(dev) ||
135 01731cfb Jan Kiszka
           dev->msix_table_page[offset] & PCI_MSIX_ENTRY_CTRL_MASKBIT;
136 5b5cb086 Michael S. Tsirkin
}
137 5b5cb086 Michael S. Tsirkin
138 5b5cb086 Michael S. Tsirkin
static void msix_handle_mask_update(PCIDevice *dev, int vector)
139 5b5cb086 Michael S. Tsirkin
{
140 5b5cb086 Michael S. Tsirkin
    if (!msix_is_masked(dev, vector) && msix_is_pending(dev, vector)) {
141 5b5cb086 Michael S. Tsirkin
        msix_clr_pending(dev, vector);
142 5b5cb086 Michael S. Tsirkin
        msix_notify(dev, vector);
143 5b5cb086 Michael S. Tsirkin
    }
144 5b5cb086 Michael S. Tsirkin
}
145 5b5cb086 Michael S. Tsirkin
146 5b5cb086 Michael S. Tsirkin
/* Handle MSI-X capability config write. */
147 5b5cb086 Michael S. Tsirkin
void msix_write_config(PCIDevice *dev, uint32_t addr,
148 5b5cb086 Michael S. Tsirkin
                       uint32_t val, int len)
149 5b5cb086 Michael S. Tsirkin
{
150 5b5cb086 Michael S. Tsirkin
    unsigned enable_pos = dev->msix_cap + MSIX_CONTROL_OFFSET;
151 5b5cb086 Michael S. Tsirkin
    int vector;
152 5b5cb086 Michael S. Tsirkin
153 98a3cb02 Isaku Yamahata
    if (!range_covers_byte(addr, len, enable_pos)) {
154 5b5cb086 Michael S. Tsirkin
        return;
155 5b5cb086 Michael S. Tsirkin
    }
156 5b5cb086 Michael S. Tsirkin
157 5b5cb086 Michael S. Tsirkin
    if (!msix_enabled(dev)) {
158 5b5cb086 Michael S. Tsirkin
        return;
159 5b5cb086 Michael S. Tsirkin
    }
160 5b5cb086 Michael S. Tsirkin
161 e407bf13 Isaku Yamahata
    pci_device_deassert_intx(dev);
162 5b5cb086 Michael S. Tsirkin
163 5b5cb086 Michael S. Tsirkin
    if (msix_function_masked(dev)) {
164 5b5cb086 Michael S. Tsirkin
        return;
165 5b5cb086 Michael S. Tsirkin
    }
166 5b5cb086 Michael S. Tsirkin
167 5b5cb086 Michael S. Tsirkin
    for (vector = 0; vector < dev->msix_entries_nr; ++vector) {
168 5b5cb086 Michael S. Tsirkin
        msix_handle_mask_update(dev, vector);
169 5b5cb086 Michael S. Tsirkin
    }
170 02eb84d0 Michael S. Tsirkin
}
171 02eb84d0 Michael S. Tsirkin
172 c227f099 Anthony Liguori
static void msix_mmio_writel(void *opaque, target_phys_addr_t addr,
173 02eb84d0 Michael S. Tsirkin
                             uint32_t val)
174 02eb84d0 Michael S. Tsirkin
{
175 02eb84d0 Michael S. Tsirkin
    PCIDevice *dev = opaque;
176 76f5159d Michael S. Tsirkin
    unsigned int offset = addr & (MSIX_PAGE_SIZE - 1) & ~0x3;
177 01731cfb Jan Kiszka
    int vector = offset / PCI_MSIX_ENTRY_SIZE;
178 76f5159d Michael S. Tsirkin
    pci_set_long(dev->msix_table_page + offset, val);
179 5b5cb086 Michael S. Tsirkin
    msix_handle_mask_update(dev, vector);
180 02eb84d0 Michael S. Tsirkin
}
181 02eb84d0 Michael S. Tsirkin
182 c227f099 Anthony Liguori
static void msix_mmio_write_unallowed(void *opaque, target_phys_addr_t addr,
183 02eb84d0 Michael S. Tsirkin
                                      uint32_t val)
184 02eb84d0 Michael S. Tsirkin
{
185 02eb84d0 Michael S. Tsirkin
    fprintf(stderr, "MSI-X: only dword write is allowed!\n");
186 02eb84d0 Michael S. Tsirkin
}
187 02eb84d0 Michael S. Tsirkin
188 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const msix_mmio_write[] = {
189 02eb84d0 Michael S. Tsirkin
    msix_mmio_write_unallowed, msix_mmio_write_unallowed, msix_mmio_writel
190 02eb84d0 Michael S. Tsirkin
};
191 02eb84d0 Michael S. Tsirkin
192 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const msix_mmio_read[] = {
193 02eb84d0 Michael S. Tsirkin
    msix_mmio_read_unallowed, msix_mmio_read_unallowed, msix_mmio_readl
194 02eb84d0 Michael S. Tsirkin
};
195 02eb84d0 Michael S. Tsirkin
196 02eb84d0 Michael S. Tsirkin
/* Should be called from device's map method. */
197 02eb84d0 Michael S. Tsirkin
void msix_mmio_map(PCIDevice *d, int region_num,
198 6e355d90 Isaku Yamahata
                   pcibus_t addr, pcibus_t size, int type)
199 02eb84d0 Michael S. Tsirkin
{
200 02eb84d0 Michael S. Tsirkin
    uint8_t *config = d->config + d->msix_cap;
201 01731cfb Jan Kiszka
    uint32_t table = pci_get_long(config + PCI_MSIX_TABLE);
202 5a1fc5e8 Michael S. Tsirkin
    uint32_t offset = table & ~(MSIX_PAGE_SIZE - 1);
203 02eb84d0 Michael S. Tsirkin
    /* TODO: for assigned devices, we'll want to make it possible to map
204 02eb84d0 Michael S. Tsirkin
     * pending bits separately in case they are in a separate bar. */
205 02eb84d0 Michael S. Tsirkin
    int table_bir = table & PCI_MSIX_FLAGS_BIRMASK;
206 02eb84d0 Michael S. Tsirkin
207 02eb84d0 Michael S. Tsirkin
    if (table_bir != region_num)
208 02eb84d0 Michael S. Tsirkin
        return;
209 02eb84d0 Michael S. Tsirkin
    if (size <= offset)
210 02eb84d0 Michael S. Tsirkin
        return;
211 02eb84d0 Michael S. Tsirkin
    cpu_register_physical_memory(addr + offset, size - offset,
212 02eb84d0 Michael S. Tsirkin
                                 d->msix_mmio_index);
213 02eb84d0 Michael S. Tsirkin
}
214 02eb84d0 Michael S. Tsirkin
215 ae1be0bb Michael S. Tsirkin
static void msix_mask_all(struct PCIDevice *dev, unsigned nentries)
216 ae1be0bb Michael S. Tsirkin
{
217 ae1be0bb Michael S. Tsirkin
    int vector;
218 ae1be0bb Michael S. Tsirkin
    for (vector = 0; vector < nentries; ++vector) {
219 01731cfb Jan Kiszka
        unsigned offset =
220 01731cfb Jan Kiszka
            vector * PCI_MSIX_ENTRY_SIZE + PCI_MSIX_ENTRY_VECTOR_CTRL;
221 01731cfb Jan Kiszka
        dev->msix_table_page[offset] |= PCI_MSIX_ENTRY_CTRL_MASKBIT;
222 ae1be0bb Michael S. Tsirkin
    }
223 ae1be0bb Michael S. Tsirkin
}
224 ae1be0bb Michael S. Tsirkin
225 02eb84d0 Michael S. Tsirkin
/* Initialize the MSI-X structures. Note: if MSI-X is supported, BAR size is
226 02eb84d0 Michael S. Tsirkin
 * modified, it should be retrieved with msix_bar_size. */
227 02eb84d0 Michael S. Tsirkin
int msix_init(struct PCIDevice *dev, unsigned short nentries,
228 5a1fc5e8 Michael S. Tsirkin
              unsigned bar_nr, unsigned bar_size)
229 02eb84d0 Michael S. Tsirkin
{
230 02eb84d0 Michael S. Tsirkin
    int ret;
231 02eb84d0 Michael S. Tsirkin
    /* Nothing to do if MSI is not supported by interrupt controller */
232 02eb84d0 Michael S. Tsirkin
    if (!msix_supported)
233 02eb84d0 Michael S. Tsirkin
        return -ENOTSUP;
234 02eb84d0 Michael S. Tsirkin
235 02eb84d0 Michael S. Tsirkin
    if (nentries > MSIX_MAX_ENTRIES)
236 02eb84d0 Michael S. Tsirkin
        return -EINVAL;
237 02eb84d0 Michael S. Tsirkin
238 02eb84d0 Michael S. Tsirkin
    dev->msix_entry_used = qemu_mallocz(MSIX_MAX_ENTRIES *
239 02eb84d0 Michael S. Tsirkin
                                        sizeof *dev->msix_entry_used);
240 02eb84d0 Michael S. Tsirkin
241 5a1fc5e8 Michael S. Tsirkin
    dev->msix_table_page = qemu_mallocz(MSIX_PAGE_SIZE);
242 ae1be0bb Michael S. Tsirkin
    msix_mask_all(dev, nentries);
243 02eb84d0 Michael S. Tsirkin
244 02eb84d0 Michael S. Tsirkin
    dev->msix_mmio_index = cpu_register_io_memory(msix_mmio_read,
245 2507c12a Alexander Graf
                                                  msix_mmio_write, dev,
246 2507c12a Alexander Graf
                                                  DEVICE_NATIVE_ENDIAN);
247 02eb84d0 Michael S. Tsirkin
    if (dev->msix_mmio_index == -1) {
248 02eb84d0 Michael S. Tsirkin
        ret = -EBUSY;
249 02eb84d0 Michael S. Tsirkin
        goto err_index;
250 02eb84d0 Michael S. Tsirkin
    }
251 02eb84d0 Michael S. Tsirkin
252 02eb84d0 Michael S. Tsirkin
    dev->msix_entries_nr = nentries;
253 02eb84d0 Michael S. Tsirkin
    ret = msix_add_config(dev, nentries, bar_nr, bar_size);
254 02eb84d0 Michael S. Tsirkin
    if (ret)
255 02eb84d0 Michael S. Tsirkin
        goto err_config;
256 02eb84d0 Michael S. Tsirkin
257 02eb84d0 Michael S. Tsirkin
    dev->cap_present |= QEMU_PCI_CAP_MSIX;
258 02eb84d0 Michael S. Tsirkin
    return 0;
259 02eb84d0 Michael S. Tsirkin
260 02eb84d0 Michael S. Tsirkin
err_config:
261 3174ecd1 Michael S. Tsirkin
    dev->msix_entries_nr = 0;
262 02eb84d0 Michael S. Tsirkin
    cpu_unregister_io_memory(dev->msix_mmio_index);
263 02eb84d0 Michael S. Tsirkin
err_index:
264 02eb84d0 Michael S. Tsirkin
    qemu_free(dev->msix_table_page);
265 02eb84d0 Michael S. Tsirkin
    dev->msix_table_page = NULL;
266 02eb84d0 Michael S. Tsirkin
    qemu_free(dev->msix_entry_used);
267 02eb84d0 Michael S. Tsirkin
    dev->msix_entry_used = NULL;
268 02eb84d0 Michael S. Tsirkin
    return ret;
269 02eb84d0 Michael S. Tsirkin
}
270 02eb84d0 Michael S. Tsirkin
271 98304c84 Michael S. Tsirkin
static void msix_free_irq_entries(PCIDevice *dev)
272 98304c84 Michael S. Tsirkin
{
273 98304c84 Michael S. Tsirkin
    int vector;
274 98304c84 Michael S. Tsirkin
275 98304c84 Michael S. Tsirkin
    for (vector = 0; vector < dev->msix_entries_nr; ++vector) {
276 98304c84 Michael S. Tsirkin
        dev->msix_entry_used[vector] = 0;
277 98304c84 Michael S. Tsirkin
        msix_clr_pending(dev, vector);
278 98304c84 Michael S. Tsirkin
    }
279 98304c84 Michael S. Tsirkin
}
280 98304c84 Michael S. Tsirkin
281 02eb84d0 Michael S. Tsirkin
/* Clean up resources for the device. */
282 02eb84d0 Michael S. Tsirkin
int msix_uninit(PCIDevice *dev)
283 02eb84d0 Michael S. Tsirkin
{
284 02eb84d0 Michael S. Tsirkin
    if (!(dev->cap_present & QEMU_PCI_CAP_MSIX))
285 02eb84d0 Michael S. Tsirkin
        return 0;
286 02eb84d0 Michael S. Tsirkin
    pci_del_capability(dev, PCI_CAP_ID_MSIX, MSIX_CAP_LENGTH);
287 02eb84d0 Michael S. Tsirkin
    dev->msix_cap = 0;
288 02eb84d0 Michael S. Tsirkin
    msix_free_irq_entries(dev);
289 02eb84d0 Michael S. Tsirkin
    dev->msix_entries_nr = 0;
290 02eb84d0 Michael S. Tsirkin
    cpu_unregister_io_memory(dev->msix_mmio_index);
291 02eb84d0 Michael S. Tsirkin
    qemu_free(dev->msix_table_page);
292 02eb84d0 Michael S. Tsirkin
    dev->msix_table_page = NULL;
293 02eb84d0 Michael S. Tsirkin
    qemu_free(dev->msix_entry_used);
294 02eb84d0 Michael S. Tsirkin
    dev->msix_entry_used = NULL;
295 02eb84d0 Michael S. Tsirkin
    dev->cap_present &= ~QEMU_PCI_CAP_MSIX;
296 02eb84d0 Michael S. Tsirkin
    return 0;
297 02eb84d0 Michael S. Tsirkin
}
298 02eb84d0 Michael S. Tsirkin
299 02eb84d0 Michael S. Tsirkin
void msix_save(PCIDevice *dev, QEMUFile *f)
300 02eb84d0 Michael S. Tsirkin
{
301 9a3e12c8 Michael S. Tsirkin
    unsigned n = dev->msix_entries_nr;
302 9a3e12c8 Michael S. Tsirkin
303 72755a70 Michael S. Tsirkin
    if (!(dev->cap_present & QEMU_PCI_CAP_MSIX)) {
304 9a3e12c8 Michael S. Tsirkin
        return;
305 72755a70 Michael S. Tsirkin
    }
306 9a3e12c8 Michael S. Tsirkin
307 01731cfb Jan Kiszka
    qemu_put_buffer(f, dev->msix_table_page, n * PCI_MSIX_ENTRY_SIZE);
308 5a1fc5e8 Michael S. Tsirkin
    qemu_put_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING, (n + 7) / 8);
309 02eb84d0 Michael S. Tsirkin
}
310 02eb84d0 Michael S. Tsirkin
311 02eb84d0 Michael S. Tsirkin
/* Should be called after restoring the config space. */
312 02eb84d0 Michael S. Tsirkin
void msix_load(PCIDevice *dev, QEMUFile *f)
313 02eb84d0 Michael S. Tsirkin
{
314 02eb84d0 Michael S. Tsirkin
    unsigned n = dev->msix_entries_nr;
315 02eb84d0 Michael S. Tsirkin
316 98846d73 Blue Swirl
    if (!(dev->cap_present & QEMU_PCI_CAP_MSIX)) {
317 02eb84d0 Michael S. Tsirkin
        return;
318 98846d73 Blue Swirl
    }
319 02eb84d0 Michael S. Tsirkin
320 4bfd1712 Michael S. Tsirkin
    msix_free_irq_entries(dev);
321 01731cfb Jan Kiszka
    qemu_get_buffer(f, dev->msix_table_page, n * PCI_MSIX_ENTRY_SIZE);
322 5a1fc5e8 Michael S. Tsirkin
    qemu_get_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING, (n + 7) / 8);
323 02eb84d0 Michael S. Tsirkin
}
324 02eb84d0 Michael S. Tsirkin
325 02eb84d0 Michael S. Tsirkin
/* Does device support MSI-X? */
326 02eb84d0 Michael S. Tsirkin
int msix_present(PCIDevice *dev)
327 02eb84d0 Michael S. Tsirkin
{
328 02eb84d0 Michael S. Tsirkin
    return dev->cap_present & QEMU_PCI_CAP_MSIX;
329 02eb84d0 Michael S. Tsirkin
}
330 02eb84d0 Michael S. Tsirkin
331 02eb84d0 Michael S. Tsirkin
/* Is MSI-X enabled? */
332 02eb84d0 Michael S. Tsirkin
int msix_enabled(PCIDevice *dev)
333 02eb84d0 Michael S. Tsirkin
{
334 02eb84d0 Michael S. Tsirkin
    return (dev->cap_present & QEMU_PCI_CAP_MSIX) &&
335 2760952b Michael S. Tsirkin
        (dev->config[dev->msix_cap + MSIX_CONTROL_OFFSET] &
336 02eb84d0 Michael S. Tsirkin
         MSIX_ENABLE_MASK);
337 02eb84d0 Michael S. Tsirkin
}
338 02eb84d0 Michael S. Tsirkin
339 02eb84d0 Michael S. Tsirkin
/* Size of bar where MSI-X table resides, or 0 if MSI-X not supported. */
340 02eb84d0 Michael S. Tsirkin
uint32_t msix_bar_size(PCIDevice *dev)
341 02eb84d0 Michael S. Tsirkin
{
342 02eb84d0 Michael S. Tsirkin
    return (dev->cap_present & QEMU_PCI_CAP_MSIX) ?
343 02eb84d0 Michael S. Tsirkin
        dev->msix_bar_size : 0;
344 02eb84d0 Michael S. Tsirkin
}
345 02eb84d0 Michael S. Tsirkin
346 02eb84d0 Michael S. Tsirkin
/* Send an MSI-X message */
347 02eb84d0 Michael S. Tsirkin
void msix_notify(PCIDevice *dev, unsigned vector)
348 02eb84d0 Michael S. Tsirkin
{
349 01731cfb Jan Kiszka
    uint8_t *table_entry = dev->msix_table_page + vector * PCI_MSIX_ENTRY_SIZE;
350 02eb84d0 Michael S. Tsirkin
    uint64_t address;
351 02eb84d0 Michael S. Tsirkin
    uint32_t data;
352 02eb84d0 Michael S. Tsirkin
353 02eb84d0 Michael S. Tsirkin
    if (vector >= dev->msix_entries_nr || !dev->msix_entry_used[vector])
354 02eb84d0 Michael S. Tsirkin
        return;
355 02eb84d0 Michael S. Tsirkin
    if (msix_is_masked(dev, vector)) {
356 02eb84d0 Michael S. Tsirkin
        msix_set_pending(dev, vector);
357 02eb84d0 Michael S. Tsirkin
        return;
358 02eb84d0 Michael S. Tsirkin
    }
359 02eb84d0 Michael S. Tsirkin
360 01731cfb Jan Kiszka
    address = pci_get_quad(table_entry + PCI_MSIX_ENTRY_LOWER_ADDR);
361 01731cfb Jan Kiszka
    data = pci_get_long(table_entry + PCI_MSIX_ENTRY_DATA);
362 ae5d3eb4 Alexander Graf
    stl_le_phys(address, data);
363 02eb84d0 Michael S. Tsirkin
}
364 02eb84d0 Michael S. Tsirkin
365 02eb84d0 Michael S. Tsirkin
void msix_reset(PCIDevice *dev)
366 02eb84d0 Michael S. Tsirkin
{
367 02eb84d0 Michael S. Tsirkin
    if (!(dev->cap_present & QEMU_PCI_CAP_MSIX))
368 02eb84d0 Michael S. Tsirkin
        return;
369 02eb84d0 Michael S. Tsirkin
    msix_free_irq_entries(dev);
370 2760952b Michael S. Tsirkin
    dev->config[dev->msix_cap + MSIX_CONTROL_OFFSET] &=
371 2760952b Michael S. Tsirkin
            ~dev->wmask[dev->msix_cap + MSIX_CONTROL_OFFSET];
372 5a1fc5e8 Michael S. Tsirkin
    memset(dev->msix_table_page, 0, MSIX_PAGE_SIZE);
373 ae1be0bb Michael S. Tsirkin
    msix_mask_all(dev, dev->msix_entries_nr);
374 02eb84d0 Michael S. Tsirkin
}
375 02eb84d0 Michael S. Tsirkin
376 02eb84d0 Michael S. Tsirkin
/* PCI spec suggests that devices make it possible for software to configure
377 02eb84d0 Michael S. Tsirkin
 * less vectors than supported by the device, but does not specify a standard
378 02eb84d0 Michael S. Tsirkin
 * mechanism for devices to do so.
379 02eb84d0 Michael S. Tsirkin
 *
380 02eb84d0 Michael S. Tsirkin
 * We support this by asking devices to declare vectors software is going to
381 02eb84d0 Michael S. Tsirkin
 * actually use, and checking this on the notification path. Devices that
382 02eb84d0 Michael S. Tsirkin
 * don't want to follow the spec suggestion can declare all vectors as used. */
383 02eb84d0 Michael S. Tsirkin
384 02eb84d0 Michael S. Tsirkin
/* Mark vector as used. */
385 02eb84d0 Michael S. Tsirkin
int msix_vector_use(PCIDevice *dev, unsigned vector)
386 02eb84d0 Michael S. Tsirkin
{
387 02eb84d0 Michael S. Tsirkin
    if (vector >= dev->msix_entries_nr)
388 02eb84d0 Michael S. Tsirkin
        return -EINVAL;
389 02eb84d0 Michael S. Tsirkin
    dev->msix_entry_used[vector]++;
390 02eb84d0 Michael S. Tsirkin
    return 0;
391 02eb84d0 Michael S. Tsirkin
}
392 02eb84d0 Michael S. Tsirkin
393 02eb84d0 Michael S. Tsirkin
/* Mark vector as unused. */
394 02eb84d0 Michael S. Tsirkin
void msix_vector_unuse(PCIDevice *dev, unsigned vector)
395 02eb84d0 Michael S. Tsirkin
{
396 98304c84 Michael S. Tsirkin
    if (vector >= dev->msix_entries_nr || !dev->msix_entry_used[vector]) {
397 98304c84 Michael S. Tsirkin
        return;
398 98304c84 Michael S. Tsirkin
    }
399 98304c84 Michael S. Tsirkin
    if (--dev->msix_entry_used[vector]) {
400 98304c84 Michael S. Tsirkin
        return;
401 98304c84 Michael S. Tsirkin
    }
402 98304c84 Michael S. Tsirkin
    msix_clr_pending(dev, vector);
403 02eb84d0 Michael S. Tsirkin
}
404 b5f28bca Michael S. Tsirkin
405 b5f28bca Michael S. Tsirkin
void msix_unuse_all_vectors(PCIDevice *dev)
406 b5f28bca Michael S. Tsirkin
{
407 b5f28bca Michael S. Tsirkin
    if (!(dev->cap_present & QEMU_PCI_CAP_MSIX))
408 b5f28bca Michael S. Tsirkin
        return;
409 b5f28bca Michael S. Tsirkin
    msix_free_irq_entries(dev);
410 b5f28bca Michael S. Tsirkin
}