xref: /qemu/include/hw/pci/pcie.h (revision d83f46d189a26fa32434139954d264326f199a45)
10428527cSIsaku Yamahata /*
20428527cSIsaku Yamahata  * pcie.h
30428527cSIsaku Yamahata  *
40428527cSIsaku Yamahata  * Copyright (c) 2010 Isaku Yamahata <yamahata at valinux co jp>
50428527cSIsaku Yamahata  *                    VA Linux Systems Japan K.K.
60428527cSIsaku Yamahata  *
70428527cSIsaku Yamahata  * This program is free software; you can redistribute it and/or modify
80428527cSIsaku Yamahata  * it under the terms of the GNU General Public License as published by
90428527cSIsaku Yamahata  * the Free Software Foundation; either version 2 of the License, or
100428527cSIsaku Yamahata  * (at your option) any later version.
110428527cSIsaku Yamahata  *
120428527cSIsaku Yamahata  * This program is distributed in the hope that it will be useful,
130428527cSIsaku Yamahata  * but WITHOUT ANY WARRANTY; without even the implied warranty of
140428527cSIsaku Yamahata  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
150428527cSIsaku Yamahata  * GNU General Public License for more details.
160428527cSIsaku Yamahata  *
170428527cSIsaku Yamahata  * You should have received a copy of the GNU General Public License along
180428527cSIsaku Yamahata  * with this program; if not, see <http://www.gnu.org/licenses/>.
190428527cSIsaku Yamahata  */
200428527cSIsaku Yamahata 
210428527cSIsaku Yamahata #ifndef QEMU_PCIE_H
220428527cSIsaku Yamahata #define QEMU_PCIE_H
230428527cSIsaku Yamahata 
24c759b24fSMichael S. Tsirkin #include "hw/pci/pci_regs.h"
25c759b24fSMichael S. Tsirkin #include "hw/pci/pcie_regs.h"
26c759b24fSMichael S. Tsirkin #include "hw/pci/pcie_aer.h"
27a66e657eSIgor Mammedov #include "hw/hotplug.h"
280428527cSIsaku Yamahata 
290428527cSIsaku Yamahata typedef enum {
300428527cSIsaku Yamahata     /* for attention and power indicator */
310428527cSIsaku Yamahata     PCI_EXP_HP_IND_RESERVED     = PCI_EXP_SLTCTL_IND_RESERVED,
320428527cSIsaku Yamahata     PCI_EXP_HP_IND_ON           = PCI_EXP_SLTCTL_IND_ON,
330428527cSIsaku Yamahata     PCI_EXP_HP_IND_BLINK        = PCI_EXP_SLTCTL_IND_BLINK,
340428527cSIsaku Yamahata     PCI_EXP_HP_IND_OFF          = PCI_EXP_SLTCTL_IND_OFF,
350428527cSIsaku Yamahata } PCIExpressIndicator;
360428527cSIsaku Yamahata 
370428527cSIsaku Yamahata typedef enum {
380428527cSIsaku Yamahata     /* these bits must match the bits in Slot Control/Status registers.
390428527cSIsaku Yamahata      * PCI_EXP_HP_EV_xxx = PCI_EXP_SLTCTL_xxxE = PCI_EXP_SLTSTA_xxx
400428527cSIsaku Yamahata      *
410428527cSIsaku Yamahata      * Not all the bits of slot control register match with the ones of
420428527cSIsaku Yamahata      * slot status. Not some bits of slot status register is used to
43a1c7273bSStefan Weil      * show status, not to report event occurrence.
440428527cSIsaku Yamahata      * So such bits must be masked out when checking the software
450428527cSIsaku Yamahata      * notification condition.
460428527cSIsaku Yamahata      */
470428527cSIsaku Yamahata     PCI_EXP_HP_EV_ABP           = PCI_EXP_SLTCTL_ABPE,
480428527cSIsaku Yamahata                                         /* attention button pressed */
490428527cSIsaku Yamahata     PCI_EXP_HP_EV_PDC           = PCI_EXP_SLTCTL_PDCE,
500428527cSIsaku Yamahata                                         /* presence detect changed */
510428527cSIsaku Yamahata     PCI_EXP_HP_EV_CCI           = PCI_EXP_SLTCTL_CCIE,
520428527cSIsaku Yamahata                                         /* command completed */
530428527cSIsaku Yamahata 
540428527cSIsaku Yamahata     PCI_EXP_HP_EV_SUPPORTED     = PCI_EXP_HP_EV_ABP |
550428527cSIsaku Yamahata                                   PCI_EXP_HP_EV_PDC |
560428527cSIsaku Yamahata                                   PCI_EXP_HP_EV_CCI,
570428527cSIsaku Yamahata                                                 /* supported event mask  */
580428527cSIsaku Yamahata 
590428527cSIsaku Yamahata     /* events not listed aren't supported */
600428527cSIsaku Yamahata } PCIExpressHotPlugEvent;
610428527cSIsaku Yamahata 
620428527cSIsaku Yamahata struct PCIExpressDevice {
630428527cSIsaku Yamahata     /* Offset of express capability in config space */
640428527cSIsaku Yamahata     uint8_t exp_cap;
6527ce0f3aSMarcel Apfelbaum     /* Offset of Power Management capability in config space */
6627ce0f3aSMarcel Apfelbaum     uint8_t pm_cap;
670428527cSIsaku Yamahata 
680428527cSIsaku Yamahata     /* SLOT */
696bde6aaaSMichael S. Tsirkin     bool hpev_notified; /* Logical AND of conditions for hot plug event.
706bde6aaaSMichael S. Tsirkin                          Following 6.7.3.4:
716bde6aaaSMichael S. Tsirkin                          Software Notification of Hot-Plug Events, an interrupt
726bde6aaaSMichael S. Tsirkin                          is sent whenever the logical and of these conditions
736bde6aaaSMichael S. Tsirkin                          transitions from false to true. */
7434e65944SIsaku Yamahata 
7534e65944SIsaku Yamahata     /* AER */
7634e65944SIsaku Yamahata     uint16_t aer_cap;
7734e65944SIsaku Yamahata     PCIEAERLog aer_log;
78615c4ed2SJason Wang 
79615c4ed2SJason Wang     /* Offset of ATS capability in config space */
80615c4ed2SJason Wang     uint16_t ats_cap;
81db891a9bSKnut Omang 
82db891a9bSKnut Omang     /* ACS */
83db891a9bSKnut Omang     uint16_t acs_cap;
840428527cSIsaku Yamahata };
850428527cSIsaku Yamahata 
86f23b6bdcSMarcel Apfelbaum #define COMPAT_PROP_PCP "power_controller_present"
87f23b6bdcSMarcel Apfelbaum 
880428527cSIsaku Yamahata /* PCI express capability helper functions */
89f8cd1b02SMao Zhongyi int pcie_cap_init(PCIDevice *dev, uint8_t offset, uint8_t type,
90f8cd1b02SMao Zhongyi                   uint8_t port, Error **errp);
916383292aSDmitry Fleytman int pcie_cap_v1_init(PCIDevice *dev, uint8_t offset,
926383292aSDmitry Fleytman                      uint8_t type, uint8_t port);
936214e73cSAlex Williamson int pcie_endpoint_cap_init(PCIDevice *dev, uint8_t offset);
940428527cSIsaku Yamahata void pcie_cap_exit(PCIDevice *dev);
956383292aSDmitry Fleytman int pcie_endpoint_cap_v1_init(PCIDevice *dev, uint8_t offset);
966383292aSDmitry Fleytman void pcie_cap_v1_exit(PCIDevice *dev);
970428527cSIsaku Yamahata uint8_t pcie_cap_get_type(const PCIDevice *dev);
980428527cSIsaku Yamahata void pcie_cap_flags_set_vector(PCIDevice *dev, uint8_t vector);
990428527cSIsaku Yamahata uint8_t pcie_cap_flags_get_vector(PCIDevice *dev);
1000428527cSIsaku Yamahata 
1010428527cSIsaku Yamahata void pcie_cap_deverr_init(PCIDevice *dev);
1020428527cSIsaku Yamahata void pcie_cap_deverr_reset(PCIDevice *dev);
1030428527cSIsaku Yamahata 
104d584f1b9SMarcel Apfelbaum void pcie_cap_lnkctl_init(PCIDevice *dev);
105d584f1b9SMarcel Apfelbaum void pcie_cap_lnkctl_reset(PCIDevice *dev);
106d584f1b9SMarcel Apfelbaum 
107530a0963SJulia Suvorova void pcie_cap_slot_init(PCIDevice *dev, PCIESlot *s);
1080428527cSIsaku Yamahata void pcie_cap_slot_reset(PCIDevice *dev);
1094d90b7a0SMichael S. Tsirkin void pcie_cap_slot_get(PCIDevice *dev, uint16_t *slt_ctl, uint16_t *slt_sta);
110d85d65ccSMichael S. Tsirkin void pcie_cap_slot_write_config(PCIDevice *dev,
1114d90b7a0SMichael S. Tsirkin                                 uint16_t old_slt_ctl, uint16_t old_slt_sta,
1126bde6aaaSMichael S. Tsirkin                                 uint32_t addr, uint32_t val, int len);
1136bde6aaaSMichael S. Tsirkin int pcie_cap_slot_post_load(void *opaque, int version_id);
1140428527cSIsaku Yamahata void pcie_cap_slot_push_attention_button(PCIDevice *dev);
1150428527cSIsaku Yamahata 
1160428527cSIsaku Yamahata void pcie_cap_root_init(PCIDevice *dev);
1170428527cSIsaku Yamahata void pcie_cap_root_reset(PCIDevice *dev);
1180428527cSIsaku Yamahata 
1190428527cSIsaku Yamahata void pcie_cap_flr_init(PCIDevice *dev);
1200428527cSIsaku Yamahata void pcie_cap_flr_write_config(PCIDevice *dev,
1210428527cSIsaku Yamahata                            uint32_t addr, uint32_t val, int len);
1220428527cSIsaku Yamahata 
123821be9dbSKnut Omang /* ARI forwarding capability and control */
124821be9dbSKnut Omang void pcie_cap_arifwd_init(PCIDevice *dev);
125821be9dbSKnut Omang void pcie_cap_arifwd_reset(PCIDevice *dev);
126821be9dbSKnut Omang bool pcie_cap_is_arifwd_enabled(const PCIDevice *dev);
1270428527cSIsaku Yamahata 
1280428527cSIsaku Yamahata /* PCI express extended capability helper functions */
1290428527cSIsaku Yamahata uint16_t pcie_find_capability(PCIDevice *dev, uint16_t cap_id);
1300428527cSIsaku Yamahata void pcie_add_capability(PCIDevice *dev,
1310428527cSIsaku Yamahata                          uint16_t cap_id, uint8_t cap_ver,
1320428527cSIsaku Yamahata                          uint16_t offset, uint16_t size);
133727b4866SAlex Williamson void pcie_sync_bridge_lnk(PCIDevice *dev);
1340428527cSIsaku Yamahata 
135db891a9bSKnut Omang void pcie_acs_init(PCIDevice *dev, uint16_t offset);
136db891a9bSKnut Omang void pcie_acs_reset(PCIDevice *dev);
137db891a9bSKnut Omang 
1380428527cSIsaku Yamahata void pcie_ari_init(PCIDevice *dev, uint16_t offset, uint16_t nextfn);
139b56b9285SDmitry Fleytman void pcie_dev_ser_num_init(PCIDevice *dev, uint16_t offset, uint64_t ser_num);
140*d83f46d1SJason Wang void pcie_ats_init(PCIDevice *dev, uint16_t offset, bool aligned);
1410428527cSIsaku Yamahata 
142b9731850SDavid Hildenbrand void pcie_cap_slot_pre_plug_cb(HotplugHandler *hotplug_dev, DeviceState *dev,
143b9731850SDavid Hildenbrand                                Error **errp);
1445571727aSDavid Hildenbrand void pcie_cap_slot_plug_cb(HotplugHandler *hotplug_dev, DeviceState *dev,
145a66e657eSIgor Mammedov                            Error **errp);
146a1952d01SDavid Hildenbrand void pcie_cap_slot_unplug_cb(HotplugHandler *hotplug_dev, DeviceState *dev,
147a1952d01SDavid Hildenbrand                              Error **errp);
1485571727aSDavid Hildenbrand void pcie_cap_slot_unplug_request_cb(HotplugHandler *hotplug_dev,
14914d5a28fSIgor Mammedov                                      DeviceState *dev, Error **errp);
1500428527cSIsaku Yamahata #endif /* QEMU_PCIE_H */
151