4 * Copyright (c) 2010 Isaku Yamahata <yamahata at valinux co jp>
5 * VA Linux Systems Japan K.K.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu-common.h"
22 #include "hw/pci/pci_bridge.h"
23 #include "hw/pci/pcie.h"
24 #include "hw/pci/msix.h"
25 #include "hw/pci/msi.h"
26 #include "hw/pci/pci_bus.h"
27 #include "hw/pci/pcie_regs.h"
28 #include "qemu/range.h"
32 # define PCIE_DPRINTF(fmt, ...) \
33 fprintf(stderr, "%s:%d " fmt, __func__, __LINE__, ## __VA_ARGS__)
35 # define PCIE_DPRINTF(fmt, ...) do {} while (0)
37 #define PCIE_DEV_PRINTF(dev, fmt, ...) \
38 PCIE_DPRINTF("%s:%x "fmt, (dev)->name, (dev)->devfn, ## __VA_ARGS__)
41 /***************************************************************************
42 * pci express capability helper functions
44 int pcie_cap_init(PCIDevice
*dev
, uint8_t offset
, uint8_t type
, uint8_t port
)
49 assert(pci_is_express(dev
));
51 pos
= pci_add_capability(dev
, PCI_CAP_ID_EXP
, offset
,
56 dev
->exp
.exp_cap
= pos
;
57 exp_cap
= dev
->config
+ pos
;
59 /* capability register
60 interrupt message number defaults to 0 */
61 pci_set_word(exp_cap
+ PCI_EXP_FLAGS
,
62 ((type
<< PCI_EXP_FLAGS_TYPE_SHIFT
) & PCI_EXP_FLAGS_TYPE
) |
65 /* device capability register
67 * roll based error reporting bit must be set by all
68 * Functions conforming to the ECN, PCI Express Base
69 * Specification, Revision 1.1., or subsequent PCI Express Base
70 * Specification revisions.
72 pci_set_long(exp_cap
+ PCI_EXP_DEVCAP
, PCI_EXP_DEVCAP_RBER
);
74 pci_set_long(exp_cap
+ PCI_EXP_LNKCAP
,
75 (port
<< PCI_EXP_LNKCAP_PN_SHIFT
) |
76 PCI_EXP_LNKCAP_ASPMS_0S
|
80 pci_set_word(exp_cap
+ PCI_EXP_LNKSTA
,
81 PCI_EXP_LNK_MLW_1
| PCI_EXP_LNK_LS_25
|PCI_EXP_LNKSTA_DLLLA
);
83 pci_set_long(exp_cap
+ PCI_EXP_DEVCAP2
,
84 PCI_EXP_DEVCAP2_EFF
| PCI_EXP_DEVCAP2_EETLPP
);
86 pci_set_word(dev
->wmask
+ pos
+ PCI_EXP_DEVCTL2
, PCI_EXP_DEVCTL2_EETLPPB
);
90 int pcie_endpoint_cap_init(PCIDevice
*dev
, uint8_t offset
)
92 uint8_t type
= PCI_EXP_TYPE_ENDPOINT
;
95 * Windows guests will report Code 10, device cannot start, if
96 * a regular Endpoint type is exposed on a root complex. These
97 * should instead be Root Complex Integrated Endpoints.
99 if (pci_bus_is_express(dev
->bus
) && pci_bus_is_root(dev
->bus
)) {
100 type
= PCI_EXP_TYPE_RC_END
;
103 return pcie_cap_init(dev
, offset
, type
, 0);
106 void pcie_cap_exit(PCIDevice
*dev
)
108 pci_del_capability(dev
, PCI_CAP_ID_EXP
, PCI_EXP_VER2_SIZEOF
);
111 uint8_t pcie_cap_get_type(const PCIDevice
*dev
)
113 uint32_t pos
= dev
->exp
.exp_cap
;
115 return (pci_get_word(dev
->config
+ pos
+ PCI_EXP_FLAGS
) &
116 PCI_EXP_FLAGS_TYPE
) >> PCI_EXP_FLAGS_TYPE_SHIFT
;
120 /* pci express interrupt message number */
121 /* 7.8.2 PCI Express Capabilities Register: Interrupt Message Number */
122 void pcie_cap_flags_set_vector(PCIDevice
*dev
, uint8_t vector
)
124 uint8_t *exp_cap
= dev
->config
+ dev
->exp
.exp_cap
;
126 pci_word_test_and_clear_mask(exp_cap
+ PCI_EXP_FLAGS
, PCI_EXP_FLAGS_IRQ
);
127 pci_word_test_and_set_mask(exp_cap
+ PCI_EXP_FLAGS
,
128 vector
<< PCI_EXP_FLAGS_IRQ_SHIFT
);
131 uint8_t pcie_cap_flags_get_vector(PCIDevice
*dev
)
133 return (pci_get_word(dev
->config
+ dev
->exp
.exp_cap
+ PCI_EXP_FLAGS
) &
134 PCI_EXP_FLAGS_IRQ
) >> PCI_EXP_FLAGS_IRQ_SHIFT
;
137 void pcie_cap_deverr_init(PCIDevice
*dev
)
139 uint32_t pos
= dev
->exp
.exp_cap
;
140 pci_long_test_and_set_mask(dev
->config
+ pos
+ PCI_EXP_DEVCAP
,
141 PCI_EXP_DEVCAP_RBER
);
142 pci_long_test_and_set_mask(dev
->wmask
+ pos
+ PCI_EXP_DEVCTL
,
143 PCI_EXP_DEVCTL_CERE
| PCI_EXP_DEVCTL_NFERE
|
144 PCI_EXP_DEVCTL_FERE
| PCI_EXP_DEVCTL_URRE
);
145 pci_long_test_and_set_mask(dev
->w1cmask
+ pos
+ PCI_EXP_DEVSTA
,
146 PCI_EXP_DEVSTA_CED
| PCI_EXP_DEVSTA_NFED
|
147 PCI_EXP_DEVSTA_FED
| PCI_EXP_DEVSTA_URD
);
150 void pcie_cap_deverr_reset(PCIDevice
*dev
)
152 uint8_t *devctl
= dev
->config
+ dev
->exp
.exp_cap
+ PCI_EXP_DEVCTL
;
153 pci_long_test_and_clear_mask(devctl
,
154 PCI_EXP_DEVCTL_CERE
| PCI_EXP_DEVCTL_NFERE
|
155 PCI_EXP_DEVCTL_FERE
| PCI_EXP_DEVCTL_URRE
);
158 static void hotplug_event_update_event_status(PCIDevice
*dev
)
160 uint32_t pos
= dev
->exp
.exp_cap
;
161 uint8_t *exp_cap
= dev
->config
+ pos
;
162 uint16_t sltctl
= pci_get_word(exp_cap
+ PCI_EXP_SLTCTL
);
163 uint16_t sltsta
= pci_get_word(exp_cap
+ PCI_EXP_SLTSTA
);
165 dev
->exp
.hpev_notified
= (sltctl
& PCI_EXP_SLTCTL_HPIE
) &&
166 (sltsta
& sltctl
& PCI_EXP_HP_EV_SUPPORTED
);
169 static void hotplug_event_notify(PCIDevice
*dev
)
171 bool prev
= dev
->exp
.hpev_notified
;
173 hotplug_event_update_event_status(dev
);
175 if (prev
== dev
->exp
.hpev_notified
) {
179 /* Note: the logic above does not take into account whether interrupts
180 * are masked. The result is that interrupt will be sent when it is
181 * subsequently unmasked. This appears to be legal: Section 6.7.3.4:
182 * The Port may optionally send an MSI when there are hot-plug events that
183 * occur while interrupt generation is disabled, and interrupt generation is
184 * subsequently enabled. */
185 if (msix_enabled(dev
)) {
186 msix_notify(dev
, pcie_cap_flags_get_vector(dev
));
187 } else if (msi_enabled(dev
)) {
188 msi_notify(dev
, pcie_cap_flags_get_vector(dev
));
190 pci_set_irq(dev
, dev
->exp
.hpev_notified
);
194 static void hotplug_event_clear(PCIDevice
*dev
)
196 hotplug_event_update_event_status(dev
);
197 if (!msix_enabled(dev
) && !msi_enabled(dev
) && !dev
->exp
.hpev_notified
) {
198 pci_irq_deassert(dev
);
203 * A PCI Express Hot-Plug Event has occurred, so update slot status register
204 * and notify OS of the event if necessary.
206 * 6.7.3 PCI Express Hot-Plug Events
207 * 6.7.3.4 Software Notification of Hot-Plug Events
209 static void pcie_cap_slot_event(PCIDevice
*dev
, PCIExpressHotPlugEvent event
)
211 /* Minor optimization: if nothing changed - no event is needed. */
212 if (pci_word_test_and_set_mask(dev
->config
+ dev
->exp
.exp_cap
+
213 PCI_EXP_SLTSTA
, event
)) {
216 hotplug_event_notify(dev
);
219 static void pcie_cap_slot_hotplug_common(PCIDevice
*hotplug_dev
,
221 uint8_t **exp_cap
, Error
**errp
)
223 *exp_cap
= hotplug_dev
->config
+ hotplug_dev
->exp
.exp_cap
;
224 uint16_t sltsta
= pci_get_word(*exp_cap
+ PCI_EXP_SLTSTA
);
226 PCIE_DEV_PRINTF(PCI_DEVICE(dev
), "hotplug state: 0x%x\n", sltsta
);
227 if (sltsta
& PCI_EXP_SLTSTA_EIS
) {
228 /* the slot is electromechanically locked.
229 * This error is propagated up to qdev and then to HMP/QMP.
231 error_setg_errno(errp
, EBUSY
, "slot is electromechanically locked");
235 void pcie_cap_slot_hotplug_cb(HotplugHandler
*hotplug_dev
, DeviceState
*dev
,
239 PCIDevice
*pci_dev
= PCI_DEVICE(dev
);
241 pcie_cap_slot_hotplug_common(PCI_DEVICE(hotplug_dev
), dev
, &exp_cap
, errp
);
243 /* Don't send event when device is enabled during qemu machine creation:
244 * it is present on boot, no hotplug event is necessary. We do send an
245 * event when the device is disabled later. */
246 if (!dev
->hotplugged
) {
247 pci_word_test_and_set_mask(exp_cap
+ PCI_EXP_SLTSTA
,
252 /* To enable multifunction hot-plug, we just ensure the function
253 * 0 added last. When function 0 is added, we set the sltsta and
254 * inform OS via event notification.
256 if (pci_get_function_0(pci_dev
)) {
257 pci_word_test_and_set_mask(exp_cap
+ PCI_EXP_SLTSTA
,
259 pcie_cap_slot_event(PCI_DEVICE(hotplug_dev
),
260 PCI_EXP_HP_EV_PDC
| PCI_EXP_HP_EV_ABP
);
264 static void pcie_unplug_device(PCIBus
*bus
, PCIDevice
*dev
, void *opaque
)
266 object_unparent(OBJECT(dev
));
269 void pcie_cap_slot_hot_unplug_request_cb(HotplugHandler
*hotplug_dev
,
270 DeviceState
*dev
, Error
**errp
)
273 PCIDevice
*pci_dev
= PCI_DEVICE(dev
);
274 PCIBus
*bus
= pci_dev
->bus
;
276 pcie_cap_slot_hotplug_common(PCI_DEVICE(hotplug_dev
), dev
, &exp_cap
, errp
);
278 /* In case user cancel the operation of multi-function hot-add,
279 * remove the function that is unexposed to guest individually,
280 * without interaction with guest.
282 if (pci_dev
->devfn
&&
284 pcie_unplug_device(bus
, pci_dev
, NULL
);
289 pcie_cap_slot_push_attention_button(PCI_DEVICE(hotplug_dev
));
292 /* pci express slot for pci express root/downstream port
293 PCI express capability slot registers */
294 void pcie_cap_slot_init(PCIDevice
*dev
, uint16_t slot
)
296 uint32_t pos
= dev
->exp
.exp_cap
;
298 pci_word_test_and_set_mask(dev
->config
+ pos
+ PCI_EXP_FLAGS
,
301 pci_long_test_and_clear_mask(dev
->config
+ pos
+ PCI_EXP_SLTCAP
,
302 ~PCI_EXP_SLTCAP_PSN
);
303 pci_long_test_and_set_mask(dev
->config
+ pos
+ PCI_EXP_SLTCAP
,
304 (slot
<< PCI_EXP_SLTCAP_PSN_SHIFT
) |
312 if (dev
->cap_present
& QEMU_PCIE_SLTCAP_PCP
) {
313 pci_long_test_and_set_mask(dev
->config
+ pos
+ PCI_EXP_SLTCAP
,
315 pci_word_test_and_clear_mask(dev
->config
+ pos
+ PCI_EXP_SLTCTL
,
317 pci_word_test_and_set_mask(dev
->wmask
+ pos
+ PCI_EXP_SLTCTL
,
321 pci_word_test_and_clear_mask(dev
->config
+ pos
+ PCI_EXP_SLTCTL
,
324 pci_word_test_and_set_mask(dev
->config
+ pos
+ PCI_EXP_SLTCTL
,
325 PCI_EXP_SLTCTL_PIC_OFF
|
326 PCI_EXP_SLTCTL_AIC_OFF
);
327 pci_word_test_and_set_mask(dev
->wmask
+ pos
+ PCI_EXP_SLTCTL
,
330 PCI_EXP_SLTCTL_HPIE
|
331 PCI_EXP_SLTCTL_CCIE
|
332 PCI_EXP_SLTCTL_PDCE
|
333 PCI_EXP_SLTCTL_ABPE
);
334 /* Although reading PCI_EXP_SLTCTL_EIC returns always 0,
335 * make the bit writable here in order to detect 1b is written.
336 * pcie_cap_slot_write_config() test-and-clear the bit, so
337 * this bit always returns 0 to the guest.
339 pci_word_test_and_set_mask(dev
->wmask
+ pos
+ PCI_EXP_SLTCTL
,
342 pci_word_test_and_set_mask(dev
->w1cmask
+ pos
+ PCI_EXP_SLTSTA
,
343 PCI_EXP_HP_EV_SUPPORTED
);
345 dev
->exp
.hpev_notified
= false;
347 qbus_set_hotplug_handler(BUS(pci_bridge_get_sec_bus(PCI_BRIDGE(dev
))),
351 void pcie_cap_slot_reset(PCIDevice
*dev
)
353 uint8_t *exp_cap
= dev
->config
+ dev
->exp
.exp_cap
;
354 uint8_t port_type
= pcie_cap_get_type(dev
);
356 assert(port_type
== PCI_EXP_TYPE_DOWNSTREAM
||
357 port_type
== PCI_EXP_TYPE_ROOT_PORT
);
359 PCIE_DEV_PRINTF(dev
, "reset\n");
361 pci_word_test_and_clear_mask(exp_cap
+ PCI_EXP_SLTCTL
,
365 PCI_EXP_SLTCTL_HPIE
|
366 PCI_EXP_SLTCTL_CCIE
|
367 PCI_EXP_SLTCTL_PDCE
|
368 PCI_EXP_SLTCTL_ABPE
);
369 pci_word_test_and_set_mask(exp_cap
+ PCI_EXP_SLTCTL
,
370 PCI_EXP_SLTCTL_AIC_OFF
);
372 if (dev
->cap_present
& QEMU_PCIE_SLTCAP_PCP
) {
373 /* Downstream ports enforce device number 0. */
374 bool populated
= pci_bridge_get_sec_bus(PCI_BRIDGE(dev
))->devices
[0];
378 pci_word_test_and_clear_mask(exp_cap
+ PCI_EXP_SLTCTL
,
381 pci_word_test_and_set_mask(exp_cap
+ PCI_EXP_SLTCTL
,
385 pic
= populated
? PCI_EXP_SLTCTL_PIC_ON
: PCI_EXP_SLTCTL_PIC_OFF
;
386 pci_word_test_and_set_mask(exp_cap
+ PCI_EXP_SLTCTL
, pic
);
389 pci_word_test_and_clear_mask(exp_cap
+ PCI_EXP_SLTSTA
,
390 PCI_EXP_SLTSTA_EIS
|/* on reset,
391 the lock is released */
396 hotplug_event_update_event_status(dev
);
399 void pcie_cap_slot_write_config(PCIDevice
*dev
,
400 uint32_t addr
, uint32_t val
, int len
)
402 uint32_t pos
= dev
->exp
.exp_cap
;
403 uint8_t *exp_cap
= dev
->config
+ pos
;
404 uint16_t sltsta
= pci_get_word(exp_cap
+ PCI_EXP_SLTSTA
);
406 if (ranges_overlap(addr
, len
, pos
+ PCI_EXP_SLTSTA
, 2)) {
407 hotplug_event_clear(dev
);
410 if (!ranges_overlap(addr
, len
, pos
+ PCI_EXP_SLTCTL
, 2)) {
414 if (pci_word_test_and_clear_mask(exp_cap
+ PCI_EXP_SLTCTL
,
415 PCI_EXP_SLTCTL_EIC
)) {
416 sltsta
^= PCI_EXP_SLTSTA_EIS
; /* toggle PCI_EXP_SLTSTA_EIS bit */
417 pci_set_word(exp_cap
+ PCI_EXP_SLTSTA
, sltsta
);
418 PCIE_DEV_PRINTF(dev
, "PCI_EXP_SLTCTL_EIC: "
419 "sltsta -> 0x%02"PRIx16
"\n",
424 * If the slot is polulated, power indicator is off and power
425 * controller is off, it is safe to detach the devices.
427 if ((sltsta
& PCI_EXP_SLTSTA_PDS
) && (val
& PCI_EXP_SLTCTL_PCC
) &&
428 ((val
& PCI_EXP_SLTCTL_PIC_OFF
) == PCI_EXP_SLTCTL_PIC_OFF
)) {
429 PCIBus
*sec_bus
= pci_bridge_get_sec_bus(PCI_BRIDGE(dev
));
430 pci_for_each_device(sec_bus
, pci_bus_num(sec_bus
),
431 pcie_unplug_device
, NULL
);
433 pci_word_test_and_clear_mask(exp_cap
+ PCI_EXP_SLTSTA
,
435 pci_word_test_and_set_mask(exp_cap
+ PCI_EXP_SLTSTA
,
439 hotplug_event_notify(dev
);
442 * 6.7.3.2 Command Completed Events
444 * Software issues a command to a hot-plug capable Downstream Port by
445 * issuing a write transaction that targets any portion of the Port’s Slot
446 * Control register. A single write to the Slot Control register is
447 * considered to be a single command, even if the write affects more than
448 * one field in the Slot Control register. In response to this transaction,
449 * the Port must carry out the requested actions and then set the
450 * associated status field for the command completed event. */
452 /* Real hardware might take a while to complete requested command because
453 * physical movement would be involved like locking the electromechanical
454 * lock. However in our case, command is completed instantaneously above,
455 * so send a command completion event right now.
457 pcie_cap_slot_event(dev
, PCI_EXP_HP_EV_CCI
);
460 int pcie_cap_slot_post_load(void *opaque
, int version_id
)
462 PCIDevice
*dev
= opaque
;
463 hotplug_event_update_event_status(dev
);
467 void pcie_cap_slot_push_attention_button(PCIDevice
*dev
)
469 pcie_cap_slot_event(dev
, PCI_EXP_HP_EV_ABP
);
472 /* root control/capabilities/status. PME isn't emulated for now */
473 void pcie_cap_root_init(PCIDevice
*dev
)
475 pci_set_word(dev
->wmask
+ dev
->exp
.exp_cap
+ PCI_EXP_RTCTL
,
476 PCI_EXP_RTCTL_SECEE
| PCI_EXP_RTCTL_SENFEE
|
477 PCI_EXP_RTCTL_SEFEE
);
480 void pcie_cap_root_reset(PCIDevice
*dev
)
482 pci_set_word(dev
->config
+ dev
->exp
.exp_cap
+ PCI_EXP_RTCTL
, 0);
485 /* function level reset(FLR) */
486 void pcie_cap_flr_init(PCIDevice
*dev
)
488 pci_long_test_and_set_mask(dev
->config
+ dev
->exp
.exp_cap
+ PCI_EXP_DEVCAP
,
491 /* Although reading BCR_FLR returns always 0,
492 * the bit is made writable here in order to detect the 1b is written
493 * pcie_cap_flr_write_config() test-and-clear the bit, so
494 * this bit always returns 0 to the guest.
496 pci_word_test_and_set_mask(dev
->wmask
+ dev
->exp
.exp_cap
+ PCI_EXP_DEVCTL
,
497 PCI_EXP_DEVCTL_BCR_FLR
);
500 void pcie_cap_flr_write_config(PCIDevice
*dev
,
501 uint32_t addr
, uint32_t val
, int len
)
503 uint8_t *devctl
= dev
->config
+ dev
->exp
.exp_cap
+ PCI_EXP_DEVCTL
;
504 if (pci_get_word(devctl
) & PCI_EXP_DEVCTL_BCR_FLR
) {
505 /* Clear PCI_EXP_DEVCTL_BCR_FLR after invoking the reset handler
506 so the handler can detect FLR by looking at this bit. */
507 pci_device_reset(dev
);
508 pci_word_test_and_clear_mask(devctl
, PCI_EXP_DEVCTL_BCR_FLR
);
512 /* Alternative Routing-ID Interpretation (ARI)
513 * forwarding support for root and downstream ports
515 void pcie_cap_arifwd_init(PCIDevice
*dev
)
517 uint32_t pos
= dev
->exp
.exp_cap
;
518 pci_long_test_and_set_mask(dev
->config
+ pos
+ PCI_EXP_DEVCAP2
,
519 PCI_EXP_DEVCAP2_ARI
);
520 pci_long_test_and_set_mask(dev
->wmask
+ pos
+ PCI_EXP_DEVCTL2
,
521 PCI_EXP_DEVCTL2_ARI
);
524 void pcie_cap_arifwd_reset(PCIDevice
*dev
)
526 uint8_t *devctl2
= dev
->config
+ dev
->exp
.exp_cap
+ PCI_EXP_DEVCTL2
;
527 pci_long_test_and_clear_mask(devctl2
, PCI_EXP_DEVCTL2_ARI
);
530 bool pcie_cap_is_arifwd_enabled(const PCIDevice
*dev
)
532 if (!pci_is_express(dev
)) {
535 if (!dev
->exp
.exp_cap
) {
539 return pci_get_long(dev
->config
+ dev
->exp
.exp_cap
+ PCI_EXP_DEVCTL2
) &
543 /**************************************************************************
544 * pci express extended capability list management functions
545 * uint16_t ext_cap_id (16 bit)
546 * uint8_t cap_ver (4 bit)
547 * uint16_t cap_offset (12 bit)
548 * uint16_t ext_cap_size
551 static uint16_t pcie_find_capability_list(PCIDevice
*dev
, uint16_t cap_id
,
556 uint32_t header
= pci_get_long(dev
->config
+ PCI_CONFIG_SPACE_SIZE
);
559 /* no extended capability */
563 for (next
= PCI_CONFIG_SPACE_SIZE
; next
;
564 prev
= next
, next
= PCI_EXT_CAP_NEXT(header
)) {
566 assert(next
>= PCI_CONFIG_SPACE_SIZE
);
567 assert(next
<= PCIE_CONFIG_SPACE_SIZE
- 8);
569 header
= pci_get_long(dev
->config
+ next
);
570 if (PCI_EXT_CAP_ID(header
) == cap_id
) {
582 uint16_t pcie_find_capability(PCIDevice
*dev
, uint16_t cap_id
)
584 return pcie_find_capability_list(dev
, cap_id
, NULL
);
587 static void pcie_ext_cap_set_next(PCIDevice
*dev
, uint16_t pos
, uint16_t next
)
589 uint32_t header
= pci_get_long(dev
->config
+ pos
);
590 assert(!(next
& (PCI_EXT_CAP_ALIGN
- 1)));
591 header
= (header
& ~PCI_EXT_CAP_NEXT_MASK
) |
592 ((next
<< PCI_EXT_CAP_NEXT_SHIFT
) & PCI_EXT_CAP_NEXT_MASK
);
593 pci_set_long(dev
->config
+ pos
, header
);
597 * caller must supply valid (offset, size) * such that the range shouldn't
598 * overlap with other capability or other registers.
599 * This function doesn't check it.
601 void pcie_add_capability(PCIDevice
*dev
,
602 uint16_t cap_id
, uint8_t cap_ver
,
603 uint16_t offset
, uint16_t size
)
608 assert(offset
>= PCI_CONFIG_SPACE_SIZE
);
609 assert(offset
< offset
+ size
);
610 assert(offset
+ size
< PCIE_CONFIG_SPACE_SIZE
);
612 assert(pci_is_express(dev
));
614 if (offset
== PCI_CONFIG_SPACE_SIZE
) {
615 header
= pci_get_long(dev
->config
+ offset
);
616 next
= PCI_EXT_CAP_NEXT(header
);
620 /* 0 is reserved cap id. use internally to find the last capability
621 in the linked list */
622 next
= pcie_find_capability_list(dev
, 0, &prev
);
624 assert(prev
>= PCI_CONFIG_SPACE_SIZE
);
626 pcie_ext_cap_set_next(dev
, prev
, offset
);
628 pci_set_long(dev
->config
+ offset
, PCI_EXT_CAP(cap_id
, cap_ver
, next
));
630 /* Make capability read-only by default */
631 memset(dev
->wmask
+ offset
, 0, size
);
632 memset(dev
->w1cmask
+ offset
, 0, size
);
633 /* Check capability by default */
634 memset(dev
->cmask
+ offset
, 0xFF, size
);
637 /**************************************************************************
638 * pci express extended capability helper functions
642 void pcie_ari_init(PCIDevice
*dev
, uint16_t offset
, uint16_t nextfn
)
644 pcie_add_capability(dev
, PCI_EXT_CAP_ID_ARI
, PCI_ARI_VER
,
645 offset
, PCI_ARI_SIZEOF
);
646 pci_set_long(dev
->config
+ offset
+ PCI_ARI_CAP
, (nextfn
& 0xff) << 8);