blob: a3832079508e34fd45cf995ba13d8d97453632d6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File: pcieport_if.h
3 * Purpose: PCI Express Port Bus Driver's IF Data Structure
4 *
5 * Copyright (C) 2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7 */
8
9#ifndef _PCIEPORT_IF_H_
10#define _PCIEPORT_IF_H_
11
12/* Port Type */
13#define PCIE_RC_PORT 4 /* Root port of RC */
14#define PCIE_SW_UPSTREAM_PORT 5 /* Upstream port of Switch */
15#define PCIE_SW_DOWNSTREAM_PORT 6 /* Downstream port of Switch */
16#define PCIE_ANY_PORT 7
17
18/* Service Type */
19#define PCIE_PORT_SERVICE_PME 1 /* Power Management Event */
20#define PCIE_PORT_SERVICE_AER 2 /* Advanced Error Reporting */
21#define PCIE_PORT_SERVICE_HP 4 /* Native Hotplug */
22#define PCIE_PORT_SERVICE_VC 8 /* Virtual Channel */
23
24/* Root/Upstream/Downstream Port's Interrupt Mode */
Rafael J. Wysocki90e9cd52009-01-13 14:39:39 +010025#define PCIE_PORT_NO_IRQ (-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define PCIE_PORT_INTx_MODE 0
27#define PCIE_PORT_MSI_MODE 1
28#define PCIE_PORT_MSIX_MODE 2
29
Rafael J. Wysocki22106362009-01-13 14:46:46 +010030struct pcie_port_data {
31 int port_type; /* Type of the port */
32 int port_irq_mode; /* [0:INTx | 1:MSI | 2:MSI-X] */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
35struct pcie_device {
36 int irq; /* Service IRQ/MSI/MSI-X Vector */
Rafael J. Wysocki22106362009-01-13 14:46:46 +010037 struct pci_dev *port; /* Root/Upstream/Downstream Port */
38 u32 service; /* Port service this device represents */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 void *priv_data; /* Service Private Data */
40 struct device device; /* Generic Device Interface */
41};
42#define to_pcie_device(d) container_of(d, struct pcie_device, device)
43
44static inline void set_service_data(struct pcie_device *dev, void *data)
45{
46 dev->priv_data = data;
47}
48
49static inline void* get_service_data(struct pcie_device *dev)
50{
51 return dev->priv_data;
52}
53
54struct pcie_port_service_driver {
55 const char *name;
Rafael J. Wysocki0516c8b2009-01-13 14:44:19 +010056 int (*probe) (struct pcie_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 void (*remove) (struct pcie_device *dev);
Pavel Machek7f4927c2005-04-16 15:25:33 -070058 int (*suspend) (struct pcie_device *dev, pm_message_t state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 int (*resume) (struct pcie_device *dev);
60
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080061 /* Service Error Recovery Handler */
62 struct pci_error_handlers *err_handler;
63
64 /* Link Reset Capability - AER service driver specific */
65 pci_ers_result_t (*reset_link) (struct pci_dev *dev);
66
Rafael J. Wysocki22106362009-01-13 14:46:46 +010067 int port_type; /* Type of the port this driver can handle */
68 u32 service; /* Port service this device represents */
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 struct device_driver driver;
71};
72#define to_service_driver(d) \
73 container_of(d, struct pcie_port_service_driver, driver)
74
75extern int pcie_port_service_register(struct pcie_port_service_driver *new);
76extern void pcie_port_service_unregister(struct pcie_port_service_driver *new);
77
78#endif /* _PCIEPORT_IF_H_ */