source: mainline/uspace/lib/virtio/virtio-pci.c@ 848e880f

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 848e880f was 848e880f, checked in by Jakub Jermar <jakub@…>, 8 years ago

Let pio_enable_resource return physical address

  • Property mode set to 100644
File size: 7.3 KB
Line 
1/*
2 * Copyright (c) 2018 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @file VIRTIO support
30 */
31
32#include "virtio-pci.h"
33
34#include <ddf/driver.h>
35#include <ddf/log.h>
36#include <pci_dev_iface.h>
37
38static bool check_bar(virtio_dev_t *vdev, uint8_t bar, uint32_t offset,
39 uint32_t length)
40{
41 /* We must ignore the capability if bar is greater than 5 */
42 if (bar >= PCI_BAR_COUNT)
43 return false;
44
45 /* This is not a mapped BAR */
46 if (!vdev->bar[bar].mapped)
47 return false;
48
49 uintptr_t start = (uintptr_t) vdev->bar[bar].mapped_base;
50 if (start + offset < start)
51 return false;
52 if (start + offset > start + vdev->bar[bar].mapped_size)
53 return false;
54 if (start + offset + length < start + offset)
55 return false;
56 if (start + offset + length > start + vdev->bar[bar].mapped_size)
57 return false;
58
59 return true;
60}
61
62static void virtio_pci_common_cfg(virtio_dev_t *vdev, uint8_t bar,
63 uint32_t offset, uint32_t length)
64{
65 if (vdev->common_cfg)
66 return;
67
68 if (!check_bar(vdev, bar, offset, length))
69 return;
70
71 vdev->common_cfg = vdev->bar[bar].mapped_base + offset;
72
73 ddf_msg(LVL_NOTE, "common_cfg=%p", vdev->common_cfg);
74}
75
76static void virtio_pci_notify_cfg(virtio_dev_t *vdev, uint8_t bar,
77 uint32_t offset, uint32_t length, uint32_t multiplier)
78{
79 if (vdev->notify_base)
80 return;
81
82 if (!check_bar(vdev, bar, offset, length))
83 return;
84
85 vdev->notify_base = vdev->bar[bar].mapped_base + offset;
86 vdev->notify_off_multiplier = multiplier;
87
88 ddf_msg(LVL_NOTE, "notify_base=%p, off_multiplier=%u",
89 vdev->notify_base, vdev->notify_off_multiplier);
90}
91
92static void virtio_pci_isr_cfg(virtio_dev_t *vdev, uint8_t bar, uint32_t offset,
93 uint32_t length)
94{
95 if (vdev->isr)
96 return;
97
98 if (!check_bar(vdev, bar, offset, length))
99 return;
100
101 vdev->isr = vdev->bar[bar].mapped_base + offset;
102
103 ddf_msg(LVL_NOTE, "isr=%p", vdev->isr);
104}
105
106static void virtio_pci_device_cfg(virtio_dev_t *vdev, uint8_t bar,
107 uint32_t offset, uint32_t length)
108{
109 if (vdev->device_cfg)
110 return;
111
112 if (!check_bar(vdev, bar, offset, length))
113 return;
114
115 vdev->device_cfg = vdev->bar[bar].mapped_base + offset;
116
117 ddf_msg(LVL_NOTE, "device_cfg=%p", vdev->device_cfg);
118}
119
120static errno_t enable_resources(async_sess_t *pci_sess, virtio_dev_t *vdev)
121{
122 pio_window_t pio_window;
123 errno_t rc = pio_window_get(pci_sess, &pio_window);
124 if (rc != EOK)
125 return rc;
126
127 hw_resource_list_t hw_res;
128 rc = hw_res_get_resource_list(pci_sess, &hw_res);
129 if (rc != EOK)
130 return rc;
131
132 /*
133 * Enable resources and reconstruct the mapping between BAR and resource
134 * indices. We are going to need this later when the VIRTIO PCI
135 * capabilities refer to specific BARs.
136 *
137 * XXX: The mapping should probably be provided by the PCI driver
138 * itself.
139 */
140 for (unsigned i = 0, j = 0; i < PCI_BAR_COUNT && j < hw_res.count;
141 i++) {
142 /* Detect and skip unused BARs */
143 uint32_t bar;
144 rc = pci_config_space_read_32(pci_sess,
145 PCI_BAR0 + i * sizeof(uint32_t), &bar);
146 if (rc != EOK)
147 return rc;
148 if (!bar)
149 continue;
150
151 hw_resource_t *res = &hw_res.resources[j];
152 rc = pio_enable_resource(&pio_window, res,
153 &vdev->bar[i].mapped_base, &vdev->bar[i].phys_base,
154 &vdev->bar[i].mapped_size);
155 if (rc == EOK)
156 vdev->bar[i].mapped = true;
157 j++;
158 }
159
160 return rc;
161}
162
163static errno_t disable_resources(virtio_dev_t *vdev)
164{
165 for (unsigned i = 0; i < PCI_BAR_COUNT; i++) {
166 if (vdev->bar[i].mapped) {
167 errno_t rc = pio_disable(vdev->bar[i].mapped_base,
168 vdev->bar[i].mapped_size);
169 if (rc != EOK)
170 return rc;
171 vdev->bar[i].mapped = false;
172 }
173 }
174
175 return EOK;
176}
177
178errno_t virtio_pci_dev_initialize(ddf_dev_t *dev, virtio_dev_t *vdev)
179{
180 memset(vdev, 0, sizeof(virtio_dev_t));
181
182 async_sess_t *pci_sess = ddf_dev_parent_sess_get(dev);
183 if (!pci_sess)
184 return ENOENT;
185
186 errno_t rc = enable_resources(pci_sess, vdev);
187 if (rc != EOK)
188 goto error;
189
190 /*
191 * Find the VIRTIO PCI Capabilities
192 */
193 uint8_t c;
194 uint8_t cap_vndr;
195 for (rc = pci_config_space_cap_first(pci_sess, &c, &cap_vndr);
196 (rc == EOK) && c;
197 rc = pci_config_space_cap_next(pci_sess, &c, &cap_vndr)) {
198 if (cap_vndr != PCI_CAP_VENDORSPECID)
199 continue;
200
201 uint8_t cap_len;
202 rc = pci_config_space_read_8(pci_sess,
203 VIRTIO_PCI_CAP_CAP_LEN(c), &cap_len);
204 if (rc != EOK)
205 goto error;
206
207 if (cap_len < VIRTIO_PCI_CAP_END(0)) {
208 rc = EINVAL;
209 goto error;
210 }
211
212 uint8_t cfg_type;
213 rc = pci_config_space_read_8(pci_sess,
214 VIRTIO_PCI_CAP_CFG_TYPE(c), &cfg_type);
215 if (rc != EOK)
216 goto error;
217
218 uint8_t bar;
219 rc = pci_config_space_read_8(pci_sess, VIRTIO_PCI_CAP_BAR(c),
220 &bar);
221 if (rc != EOK)
222 goto error;
223
224 uint32_t offset;
225 rc = pci_config_space_read_32(pci_sess,
226 VIRTIO_PCI_CAP_OFFSET(c), &offset);
227 if (rc != EOK)
228 goto error;
229
230 uint32_t length;
231 rc = pci_config_space_read_32(pci_sess,
232 VIRTIO_PCI_CAP_LENGTH(c), &length);
233 if (rc != EOK)
234 goto error;
235
236 uint32_t multiplier;
237 switch (cfg_type) {
238 case VIRTIO_PCI_CAP_COMMON_CFG:
239 virtio_pci_common_cfg(vdev, bar, offset, length);
240 break;
241 case VIRTIO_PCI_CAP_NOTIFY_CFG:
242 if (cap_len < VIRTIO_PCI_CAP_END(sizeof(uint32_t))) {
243 rc = EINVAL;
244 goto error;
245 }
246 rc = pci_config_space_read_32(pci_sess,
247 VIRTIO_PCI_CAP_END(c), &multiplier);
248 if (rc != EOK)
249 goto error;
250 virtio_pci_notify_cfg(vdev, bar, offset, length,
251 multiplier);
252 break;
253 case VIRTIO_PCI_CAP_ISR_CFG:
254 virtio_pci_isr_cfg(vdev, bar, offset, length);
255 break;
256 case VIRTIO_PCI_CAP_DEVICE_CFG:
257 virtio_pci_device_cfg(vdev, bar, offset, length);
258 break;
259 case VIRTIO_PCI_CAP_PCI_CFG:
260 break;
261 default:
262 break;
263 }
264 }
265
266 /* Check that the configuration is complete */
267 if (!vdev->common_cfg || !vdev->notify_base || !vdev->isr ||
268 !vdev->device_cfg) {
269 rc = EINVAL;
270 goto error;
271 }
272
273 return rc;
274
275error:
276 (void) disable_resources(vdev);
277 return rc;
278}
279
280errno_t virtio_pci_dev_cleanup(virtio_dev_t *vdev)
281{
282 if (vdev->queues) {
283 for (unsigned i = 0;
284 i < pio_read_le16(&vdev->common_cfg->num_queues); i++)
285 virtio_virtq_teardown(vdev, i);
286 free(vdev->queues);
287 }
288 return disable_resources(vdev);
289}
290
291/** @}
292 */
Note: See TracBrowser for help on using the repository browser.