Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 */ |
Kenji Kaneshige | 694f88e | 2009-11-25 21:06:15 +0900 | [diff] [blame] | 13 | #define PCIE_ANY_PORT (~0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
| 15 | /* Service Type */ |
Rafael J. Wysocki | b43d451 | 2009-01-24 00:23:22 +0100 | [diff] [blame] | 16 | #define PCIE_PORT_SERVICE_PME_SHIFT 0 /* Power Management Event */ |
| 17 | #define PCIE_PORT_SERVICE_PME (1 << PCIE_PORT_SERVICE_PME_SHIFT) |
| 18 | #define PCIE_PORT_SERVICE_AER_SHIFT 1 /* Advanced Error Reporting */ |
| 19 | #define PCIE_PORT_SERVICE_AER (1 << PCIE_PORT_SERVICE_AER_SHIFT) |
| 20 | #define PCIE_PORT_SERVICE_HP_SHIFT 2 /* Native Hotplug */ |
| 21 | #define PCIE_PORT_SERVICE_HP (1 << PCIE_PORT_SERVICE_HP_SHIFT) |
| 22 | #define PCIE_PORT_SERVICE_VC_SHIFT 3 /* Virtual Channel */ |
| 23 | #define PCIE_PORT_SERVICE_VC (1 << PCIE_PORT_SERVICE_VC_SHIFT) |
Keith Busch | 10126ac | 2016-05-02 15:10:31 -0500 | [diff] [blame] | 24 | #define PCIE_PORT_SERVICE_DPC_SHIFT 4 /* Downstream Port Containment */ |
| 25 | #define PCIE_PORT_SERVICE_DPC (1 << PCIE_PORT_SERVICE_DPC_SHIFT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | struct pcie_device { |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 28 | int irq; /* Service IRQ/MSI/MSI-X Vector */ |
Rafael J. Wysocki | 2210636 | 2009-01-13 14:46:46 +0100 | [diff] [blame] | 29 | struct pci_dev *port; /* Root/Upstream/Downstream Port */ |
| 30 | u32 service; /* Port service this device represents */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | void *priv_data; /* Service Private Data */ |
| 32 | struct device device; /* Generic Device Interface */ |
| 33 | }; |
| 34 | #define to_pcie_device(d) container_of(d, struct pcie_device, device) |
| 35 | |
| 36 | static inline void set_service_data(struct pcie_device *dev, void *data) |
| 37 | { |
| 38 | dev->priv_data = data; |
| 39 | } |
| 40 | |
| 41 | static inline void* get_service_data(struct pcie_device *dev) |
| 42 | { |
| 43 | return dev->priv_data; |
| 44 | } |
| 45 | |
| 46 | struct pcie_port_service_driver { |
| 47 | const char *name; |
Rafael J. Wysocki | 0516c8b | 2009-01-13 14:44:19 +0100 | [diff] [blame] | 48 | int (*probe) (struct pcie_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | void (*remove) (struct pcie_device *dev); |
Rafael J. Wysocki | 3a3c244 | 2009-02-15 22:32:48 +0100 | [diff] [blame] | 50 | int (*suspend) (struct pcie_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | int (*resume) (struct pcie_device *dev); |
| 52 | |
Zhang, Yanmin | 6c2b374 | 2006-07-31 15:21:33 +0800 | [diff] [blame] | 53 | /* Service Error Recovery Handler */ |
Stephen Hemminger | 4945302 | 2012-09-07 09:33:14 -0700 | [diff] [blame] | 54 | const struct pci_error_handlers *err_handler; |
Zhang, Yanmin | 6c2b374 | 2006-07-31 15:21:33 +0800 | [diff] [blame] | 55 | |
| 56 | /* Link Reset Capability - AER service driver specific */ |
| 57 | pci_ers_result_t (*reset_link) (struct pci_dev *dev); |
| 58 | |
Rafael J. Wysocki | 2210636 | 2009-01-13 14:46:46 +0100 | [diff] [blame] | 59 | int port_type; /* Type of the port this driver can handle */ |
| 60 | u32 service; /* Port service this device represents */ |
| 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | struct device_driver driver; |
| 63 | }; |
| 64 | #define to_service_driver(d) \ |
| 65 | container_of(d, struct pcie_port_service_driver, driver) |
| 66 | |
Bjorn Helgaas | f39d5b7 | 2013-04-12 12:02:59 -0600 | [diff] [blame] | 67 | int pcie_port_service_register(struct pcie_port_service_driver *new); |
| 68 | void pcie_port_service_unregister(struct pcie_port_service_driver *new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
| 70 | #endif /* _PCIEPORT_IF_H_ */ |