#ifndef _DEV_PCI_PCIVAR_H_
#define _DEV_PCI_PCIVAR_H_
#include <sys/device.h>
#include <sys/pmf.h>
#include <sys/bus.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pci_verbose.h>
struct pcibus_attach_args;
struct pci_attach_args;
struct pci_softc;
#ifdef _KERNEL
#include <machine/pci_machdep.h>
enum pci_override_idx {
PCI_OVERRIDE_CONF_READ = __BIT(0)
, PCI_OVERRIDE_CONF_WRITE = __BIT(1)
, PCI_OVERRIDE_INTR_MAP = __BIT(2)
, PCI_OVERRIDE_INTR_STRING = __BIT(3)
, PCI_OVERRIDE_INTR_EVCNT = __BIT(4)
, PCI_OVERRIDE_INTR_ESTABLISH = __BIT(5)
, PCI_OVERRIDE_INTR_DISESTABLISH = __BIT(6)
, PCI_OVERRIDE_MAKE_TAG = __BIT(7)
, PCI_OVERRIDE_DECOMPOSE_TAG = __BIT(8)
};
struct pci_overrides {
pcireg_t (*ov_conf_read)(void *, pci_chipset_tag_t, pcitag_t, int);
void (*ov_conf_write)(void *, pci_chipset_tag_t, pcitag_t, int,
pcireg_t);
int (*ov_intr_map)(void *, const struct pci_attach_args *,
pci_intr_handle_t *);
const char *(*ov_intr_string)(void *, pci_chipset_tag_t,
pci_intr_handle_t, char *, size_t);
const struct evcnt *(*ov_intr_evcnt)(void *, pci_chipset_tag_t,
pci_intr_handle_t);
void *(*ov_intr_establish)(void *, pci_chipset_tag_t, pci_intr_handle_t,
int, int (*)(void *), void *);
void (*ov_intr_disestablish)(void *, pci_chipset_tag_t, void *);
pcitag_t (*ov_make_tag)(void *, pci_chipset_tag_t, int, int, int);
void (*ov_decompose_tag)(void *, pci_chipset_tag_t, pcitag_t,
int *, int *, int *);
};
struct pcibus_attach_args {
char *_pba_busname;
bus_space_tag_t pba_iot;
bus_space_tag_t pba_memt;
bus_dma_tag_t pba_dmat;
bus_dma_tag_t pba_dmat64;
pci_chipset_tag_t pba_pc;
int pba_flags;
int pba_bus;
int pba_sub;
pcitag_t *pba_bridgetag;
u_int pba_intrswiz;
pcitag_t pba_intrtag;
};
static __inline pci_chipset_tag_t
pcibus_attach_args_pc(struct pcibus_attach_args *pba)
{
return pba->pba_pc;
}
#ifndef __HAVE_PCI_GET_SEGMENT
static __inline u_int
pci_get_segment(pci_chipset_tag_t pc)
{
return 0;
}
#endif
struct pci_attach_args {
bus_space_tag_t pa_iot;
bus_space_tag_t pa_memt;
bus_dma_tag_t pa_dmat;
bus_dma_tag_t pa_dmat64;
pci_chipset_tag_t pa_pc;
int pa_flags;
u_int pa_bus;
u_int pa_device;
u_int pa_function;
pcitag_t pa_tag;
pcireg_t pa_id, pa_class;
u_int pa_intrswiz;
pcitag_t pa_intrtag;
pci_intr_pin_t pa_intrpin;
pci_intr_line_t pa_intrline;
pci_intr_pin_t pa_rawintrpin;
};
static __inline pci_chipset_tag_t
pci_attach_args_pc(const struct pci_attach_args *pa)
{
return pa->pa_pc;
}
#define PCI_FLAGS_IO_OKAY 0x01
#define PCI_FLAGS_MEM_OKAY 0x02
#define PCI_FLAGS_MRL_OKAY 0x04
#define PCI_FLAGS_MRM_OKAY 0x08
#define PCI_FLAGS_MWI_OKAY 0x10
#define PCI_FLAGS_MSI_OKAY 0x20
#define PCI_FLAGS_MSIX_OKAY 0x40
struct pci_quirkdata {
pci_vendor_id_t vendor;
pci_product_id_t product;
int quirks;
};
#define PCI_QUIRK_MULTIFUNCTION __BIT(0)
#define PCI_QUIRK_MONOFUNCTION __BIT(1)
#define PCI_QUIRK_SKIP_FUNC(n) (4 << n)
#define PCI_QUIRK_SKIP_FUNC0 PCI_QUIRK_SKIP_FUNC(0)
#define PCI_QUIRK_SKIP_FUNC1 PCI_QUIRK_SKIP_FUNC(1)
#define PCI_QUIRK_SKIP_FUNC2 PCI_QUIRK_SKIP_FUNC(2)
#define PCI_QUIRK_SKIP_FUNC3 PCI_QUIRK_SKIP_FUNC(3)
#define PCI_QUIRK_SKIP_FUNC4 PCI_QUIRK_SKIP_FUNC(4)
#define PCI_QUIRK_SKIP_FUNC5 PCI_QUIRK_SKIP_FUNC(5)
#define PCI_QUIRK_SKIP_FUNC6 PCI_QUIRK_SKIP_FUNC(6)
#define PCI_QUIRK_SKIP_FUNC7 PCI_QUIRK_SKIP_FUNC(7)
#define PCI_QUIRK_HASEXTCNF __BIT(10)
#define PCI_QUIRK_NOEXTCNF __BIT(11)
struct pci_conf_state {
pcireg_t reg[16];
pcireg_t x_csr;
uint16_t e_dcr;
uint16_t e_lcr;
uint16_t e_slcr;
uint16_t e_rcr;
uint16_t e_dcr2;
uint16_t e_lcr2;
pcireg_t msi_ctl;
pcireg_t msi_maddr;
pcireg_t msi_maddr64_hi;
pcireg_t msi_mdata;
pcireg_t msi_mask;
pcireg_t msix_ctl;
};
struct pci_range {
bus_addr_t r_offset;
bus_size_t r_size;
int r_flags;
};
struct pci_child {
device_t c_dev;
bool c_psok;
pcireg_t c_powerstate;
struct pci_conf_state c_conf;
struct pci_range c_range[8];
};
struct pci_softc {
device_t sc_dev;
bus_space_tag_t sc_iot, sc_memt;
bus_dma_tag_t sc_dmat;
bus_dma_tag_t sc_dmat64;
pci_chipset_tag_t sc_pc;
int sc_bus, sc_maxndevs;
pcitag_t *sc_bridgetag;
u_int sc_intrswiz;
pcitag_t sc_intrtag;
int sc_flags;
struct pci_child sc_devices[32*8];
#define PCI_SC_DEVICESC(d, f) sc_devices[(d) * 8 + (f)]
};
extern struct cfdriver pci_cd;
extern bool pci_mapreg_map_enable_decode;
int pcibusprint(void *, const char *);
int pci_mapreg_probe(pci_chipset_tag_t, pcitag_t, int, pcireg_t *);
pcireg_t pci_mapreg_type(pci_chipset_tag_t, pcitag_t, int);
int pci_mapreg_info(pci_chipset_tag_t, pcitag_t, int, pcireg_t,
bus_addr_t *, bus_size_t *, int *);
int pci_mapreg_map(const struct pci_attach_args *, int, pcireg_t, int,
bus_space_tag_t *, bus_space_handle_t *, bus_addr_t *,
bus_size_t *);
int pci_mapreg_submap(const struct pci_attach_args *, int, pcireg_t, int,
bus_size_t, bus_size_t, bus_space_tag_t *, bus_space_handle_t *,
bus_addr_t *, bus_size_t *);
int pci_find_rom(const struct pci_attach_args *, bus_space_tag_t,
bus_space_handle_t, bus_size_t,
int, bus_space_handle_t *, bus_size_t *);
int pci_get_capability(pci_chipset_tag_t, pcitag_t, int, int *, pcireg_t *);
int pci_get_ht_capability(pci_chipset_tag_t, pcitag_t, int, int *,
pcireg_t *);
int pci_get_ext_capability(pci_chipset_tag_t, pcitag_t, int, int *,
pcireg_t *);
int pci_msi_count(pci_chipset_tag_t, pcitag_t);
int pci_msix_count(pci_chipset_tag_t, pcitag_t);
#define PCI_COMPAT_EOL_VALUE (0xffffffffU)
#define PCI_COMPAT_EOL { .id = PCI_COMPAT_EOL_VALUE }
const struct device_compatible_entry *
pci_compatible_lookup_id(pcireg_t,
const struct device_compatible_entry *);
const struct device_compatible_entry *
pci_compatible_lookup(const struct pci_attach_args *,
const struct device_compatible_entry *);
int pci_compatible_match(const struct pci_attach_args *,
const struct device_compatible_entry *);
const struct device_compatible_entry *
pci_compatible_lookup_subsys(const struct pci_attach_args *,
const struct device_compatible_entry *);
int pci_compatible_match_subsys(const struct pci_attach_args *,
const struct device_compatible_entry *);
int pci_enumerate_bus(struct pci_softc *, const int *,
int (*)(const struct pci_attach_args *), struct pci_attach_args *);
#ifndef PCI_MACHDEP_ENUMERATE_BUS1
int pci_enumerate_bus1(struct pci_softc *, const int *,
int (*)(void *, const struct pci_attach_args *), void *,
struct pci_attach_args *);
#endif
int pci_probe_device1(struct pci_softc *, pcitag_t tag,
int (*)(void *, const struct pci_attach_args *), void *,
struct pci_attach_args *);
void pci_devinfo(pcireg_t, pcireg_t, int, char *, size_t);
void pci_aprint_devinfo_fancy(const struct pci_attach_args *,
const char *, const char *, int);
#define pci_aprint_devinfo(pap, naive) \
pci_aprint_devinfo_fancy(pap, naive, NULL, 0);
void pci_conf_print(pci_chipset_tag_t, pcitag_t,
void (*)(pci_chipset_tag_t, pcitag_t, const pcireg_t *));
const struct pci_quirkdata *
pci_lookup_quirkdata(pci_vendor_id_t, pci_product_id_t);
struct proc;
int pci_devioctl(pci_chipset_tag_t, pcitag_t, u_long, void *,
int flag, struct lwp *);
#define PCI_PWR_D0 0
#define PCI_PWR_D1 1
#define PCI_PWR_D2 2
#define PCI_PWR_D3 3
int pci_powerstate(pci_chipset_tag_t, pcitag_t, const int *, int *);
int pci_vpd_read(pci_chipset_tag_t, pcitag_t, int, int, pcireg_t *);
int pci_vpd_write(pci_chipset_tag_t, pcitag_t, int, int, pcireg_t *);
int pci_find_device(struct pci_attach_args *,
int (*match)(const struct pci_attach_args *));
int pci_find_device1(struct pci_attach_args *,
int (*match)(void *, const struct pci_attach_args *), void *);
int pci_dma64_available(const struct pci_attach_args *);
void pci_conf_capture(pci_chipset_tag_t, pcitag_t, struct pci_conf_state *);
void pci_conf_restore(pci_chipset_tag_t, pcitag_t, struct pci_conf_state *);
int pci_get_powerstate(pci_chipset_tag_t, pcitag_t, pcireg_t *);
int pci_set_powerstate(pci_chipset_tag_t, pcitag_t, pcireg_t);
int pci_activate(pci_chipset_tag_t, pcitag_t, device_t,
int (*)(pci_chipset_tag_t, pcitag_t, device_t, pcireg_t));
int pci_activate_null(pci_chipset_tag_t, pcitag_t, device_t, pcireg_t);
int pci_chipset_tag_create(pci_chipset_tag_t, uint64_t,
const struct pci_overrides *,
void *, pci_chipset_tag_t *);
void pci_chipset_tag_destroy(pci_chipset_tag_t);
int pci_bus_devorder(pci_chipset_tag_t, int, uint8_t *, int);
void *pci_intr_establish_xname(pci_chipset_tag_t, pci_intr_handle_t,
int, int (*)(void *), void *, const char *);
#ifndef __HAVE_PCI_MSI_MSIX
typedef enum {
PCI_INTR_TYPE_INTX = 0,
PCI_INTR_TYPE_MSI,
PCI_INTR_TYPE_MSIX,
PCI_INTR_TYPE_SIZE,
} pci_intr_type_t;
pci_intr_type_t
pci_intr_type(pci_chipset_tag_t, pci_intr_handle_t);
int pci_intr_alloc(const struct pci_attach_args *, pci_intr_handle_t **,
int *, pci_intr_type_t);
void pci_intr_release(pci_chipset_tag_t, pci_intr_handle_t *, int);
int pci_intx_alloc(const struct pci_attach_args *, pci_intr_handle_t **);
int pci_msi_alloc(const struct pci_attach_args *, pci_intr_handle_t **,
int *);
int pci_msi_alloc_exact(const struct pci_attach_args *,
pci_intr_handle_t **, int);
int pci_msix_alloc(const struct pci_attach_args *, pci_intr_handle_t **,
int *);
int pci_msix_alloc_exact(const struct pci_attach_args *,
pci_intr_handle_t **, int);
int pci_msix_alloc_map(const struct pci_attach_args *, pci_intr_handle_t **,
u_int *, int);
#endif
int pcimatch(device_t, cfdata_t, void *);
void pciattach(device_t, device_t, void *);
int pcidetach(device_t, int);
void pcidevdetached(device_t, device_t);
int pcirescan(device_t, const char *, const int *);
#define PCI_INTR_MPSAFE 1
int pci_intr_setattr(pci_chipset_tag_t, pci_intr_handle_t *, int, uint64_t);
#define PCI_INTRSTR_LEN 64
#endif
#endif