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/>.
25 #include "hw/pci/pci_regs.h"
26 #include "hw/pci/pcie_regs.h"
27 #include "hw/pci/pcie_aer.h"
28 #include "hw/hotplug.h"
31 /* for attention and power indicator */
32 PCI_EXP_HP_IND_RESERVED
= PCI_EXP_SLTCTL_IND_RESERVED
,
33 PCI_EXP_HP_IND_ON
= PCI_EXP_SLTCTL_IND_ON
,
34 PCI_EXP_HP_IND_BLINK
= PCI_EXP_SLTCTL_IND_BLINK
,
35 PCI_EXP_HP_IND_OFF
= PCI_EXP_SLTCTL_IND_OFF
,
36 } PCIExpressIndicator
;
39 /* these bits must match the bits in Slot Control/Status registers.
40 * PCI_EXP_HP_EV_xxx = PCI_EXP_SLTCTL_xxxE = PCI_EXP_SLTSTA_xxx
42 * Not all the bits of slot control register match with the ones of
43 * slot status. Not some bits of slot status register is used to
44 * show status, not to report event occurrence.
45 * So such bits must be masked out when checking the software
46 * notification condition.
48 PCI_EXP_HP_EV_ABP
= PCI_EXP_SLTCTL_ABPE
,
49 /* attention button pressed */
50 PCI_EXP_HP_EV_PDC
= PCI_EXP_SLTCTL_PDCE
,
51 /* presence detect changed */
52 PCI_EXP_HP_EV_CCI
= PCI_EXP_SLTCTL_CCIE
,
53 /* command completed */
55 PCI_EXP_HP_EV_SUPPORTED
= PCI_EXP_HP_EV_ABP
|
58 /* supported event mask */
60 /* events not listed aren't supported */
61 } PCIExpressHotPlugEvent
;
63 struct PCIExpressDevice
{
64 /* Offset of express capability in config space */
68 bool hpev_notified
; /* Logical AND of conditions for hot plug event.
70 Software Notification of Hot-Plug Events, an interrupt
71 is sent whenever the logical and of these conditions
72 transitions from false to true. */
79 #define COMPAT_PROP_PCP "power_controller_present"
81 /* PCI express capability helper functions */
82 int pcie_cap_init(PCIDevice
*dev
, uint8_t offset
, uint8_t type
, uint8_t port
);
83 int pcie_cap_v1_init(PCIDevice
*dev
, uint8_t offset
,
84 uint8_t type
, uint8_t port
);
85 int pcie_endpoint_cap_init(PCIDevice
*dev
, uint8_t offset
);
86 void pcie_cap_exit(PCIDevice
*dev
);
87 int pcie_endpoint_cap_v1_init(PCIDevice
*dev
, uint8_t offset
);
88 void pcie_cap_v1_exit(PCIDevice
*dev
);
89 uint8_t pcie_cap_get_type(const PCIDevice
*dev
);
90 void pcie_cap_flags_set_vector(PCIDevice
*dev
, uint8_t vector
);
91 uint8_t pcie_cap_flags_get_vector(PCIDevice
*dev
);
93 void pcie_cap_deverr_init(PCIDevice
*dev
);
94 void pcie_cap_deverr_reset(PCIDevice
*dev
);
96 void pcie_cap_slot_init(PCIDevice
*dev
, uint16_t slot
);
97 void pcie_cap_slot_reset(PCIDevice
*dev
);
98 void pcie_cap_slot_write_config(PCIDevice
*dev
,
99 uint32_t addr
, uint32_t val
, int len
);
100 int pcie_cap_slot_post_load(void *opaque
, int version_id
);
101 void pcie_cap_slot_push_attention_button(PCIDevice
*dev
);
103 void pcie_cap_root_init(PCIDevice
*dev
);
104 void pcie_cap_root_reset(PCIDevice
*dev
);
106 void pcie_cap_flr_init(PCIDevice
*dev
);
107 void pcie_cap_flr_write_config(PCIDevice
*dev
,
108 uint32_t addr
, uint32_t val
, int len
);
110 /* ARI forwarding capability and control */
111 void pcie_cap_arifwd_init(PCIDevice
*dev
);
112 void pcie_cap_arifwd_reset(PCIDevice
*dev
);
113 bool pcie_cap_is_arifwd_enabled(const PCIDevice
*dev
);
115 /* PCI express extended capability helper functions */
116 uint16_t pcie_find_capability(PCIDevice
*dev
, uint16_t cap_id
);
117 void pcie_add_capability(PCIDevice
*dev
,
118 uint16_t cap_id
, uint8_t cap_ver
,
119 uint16_t offset
, uint16_t size
);
121 void pcie_ari_init(PCIDevice
*dev
, uint16_t offset
, uint16_t nextfn
);
122 void pcie_dev_ser_num_init(PCIDevice
*dev
, uint16_t offset
, uint64_t ser_num
);
124 extern const VMStateDescription vmstate_pcie_device
;
126 #define VMSTATE_PCIE_DEVICE(_field, _state) { \
127 .name = (stringify(_field)), \
128 .size = sizeof(PCIDevice), \
129 .vmsd = &vmstate_pcie_device, \
130 .flags = VMS_STRUCT, \
131 .offset = vmstate_offset_value(_state, _field, PCIDevice), \
134 void pcie_cap_slot_hotplug_cb(HotplugHandler
*hotplug_dev
, DeviceState
*dev
,
136 void pcie_cap_slot_hot_unplug_request_cb(HotplugHandler
*hotplug_dev
,
137 DeviceState
*dev
, Error
**errp
);
138 #endif /* QEMU_PCIE_H */