portdrv.h 3.5 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
L
Linus Torvalds 已提交
2 3
/*
 * File:	portdrv.h
4
 * Purpose:	PCI Express Port Bus Driver's Data Structures
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12
 *
 * Copyright (C) 2004 Intel
 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
 */

#ifndef _PORTDRV_H_
#define _PORTDRV_H_

13 14
#include <linux/compiler.h>

15
extern bool pcie_ports_native;
16

17 18 19 20 21 22 23
/* Service Type */
#define PCIE_PORT_SERVICE_PME_SHIFT	0	/* Power Management Event */
#define PCIE_PORT_SERVICE_PME		(1 << PCIE_PORT_SERVICE_PME_SHIFT)
#define PCIE_PORT_SERVICE_AER_SHIFT	1	/* Advanced Error Reporting */
#define PCIE_PORT_SERVICE_AER		(1 << PCIE_PORT_SERVICE_AER_SHIFT)
#define PCIE_PORT_SERVICE_HP_SHIFT	2	/* Native Hotplug */
#define PCIE_PORT_SERVICE_HP		(1 << PCIE_PORT_SERVICE_HP_SHIFT)
24
#define PCIE_PORT_SERVICE_DPC_SHIFT	3	/* Downstream Port Containment */
25 26
#define PCIE_PORT_SERVICE_DPC		(1 << PCIE_PORT_SERVICE_DPC_SHIFT)

27
#define PCIE_PORT_DEVICE_MAXSERVICES   4
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74

/* Port Type */
#define PCIE_ANY_PORT			(~0)

struct pcie_device {
	int		irq;	    /* Service IRQ/MSI/MSI-X Vector */
	struct pci_dev *port;	    /* Root/Upstream/Downstream Port */
	u32		service;    /* Port service this device represents */
	void		*priv_data; /* Service Private Data */
	struct device	device;     /* Generic Device Interface */
};
#define to_pcie_device(d) container_of(d, struct pcie_device, device)

static inline void set_service_data(struct pcie_device *dev, void *data)
{
	dev->priv_data = data;
}

static inline void *get_service_data(struct pcie_device *dev)
{
	return dev->priv_data;
}

struct pcie_port_service_driver {
	const char *name;
	int (*probe) (struct pcie_device *dev);
	void (*remove) (struct pcie_device *dev);
	int (*suspend) (struct pcie_device *dev);
	int (*resume) (struct pcie_device *dev);

	/* Device driver may resume normal operations */
	void (*error_resume)(struct pci_dev *dev);

	/* Link Reset Capability - AER service driver specific */
	pci_ers_result_t (*reset_link) (struct pci_dev *dev);

	int port_type;  /* Type of the port this driver can handle */
	u32 service;    /* Port service this device represents */

	struct device_driver driver;
};
#define to_service_driver(d) \
	container_of(d, struct pcie_port_service_driver, driver)

int pcie_port_service_register(struct pcie_port_service_driver *new);
void pcie_port_service_unregister(struct pcie_port_service_driver *new);

75
/*
76 77 78
 * The PCIe Capability Interrupt Message Number (PCIe r3.1, sec 7.8.2) must
 * be one of the first 32 MSI-X entries.  Per PCI r3.0, sec 6.8.3.1, MSI
 * supports a maximum of 32 vectors per function.
79
 */
80
#define PCIE_PORT_MAX_MSI_ENTRIES	32
L
Linus Torvalds 已提交
81

82
#define get_descriptor_id(type, service) (((type - 4) << 8) | service)
L
Linus Torvalds 已提交
83 84

extern struct bus_type pcie_port_bus_type;
85
int pcie_port_device_register(struct pci_dev *dev);
L
Linus Torvalds 已提交
86
#ifdef CONFIG_PM
87 88
int pcie_port_device_suspend(struct device *dev);
int pcie_port_device_resume(struct device *dev);
L
Linus Torvalds 已提交
89
#endif
90 91 92
void pcie_port_device_remove(struct pci_dev *dev);
int __must_check pcie_port_bus_register(void);
void pcie_port_bus_unregister(void);
L
Linus Torvalds 已提交
93

94 95
struct pci_dev;

96 97 98 99 100 101 102 103 104 105 106 107
#ifdef CONFIG_PCIE_PME
extern bool pcie_pme_msi_disabled;

static inline void pcie_pme_disable_msi(void)
{
	pcie_pme_msi_disabled = true;
}

static inline bool pcie_pme_no_msi(void)
{
	return pcie_pme_msi_disabled;
}
108

109
void pcie_pme_interrupt_enable(struct pci_dev *dev, bool enable);
110 111 112
#else /* !CONFIG_PCIE_PME */
static inline void pcie_pme_disable_msi(void) {}
static inline bool pcie_pme_no_msi(void) { return false; }
113
static inline void pcie_pme_interrupt_enable(struct pci_dev *dev, bool en) {}
114 115
#endif /* !CONFIG_PCIE_PME */

L
Linus Torvalds 已提交
116
#endif /* _PORTDRV_H_ */