blob: de9681034353c661d3e0a6299c3c6b7c3573b832 [file] [log] [blame]
Ian Munsie80c49c72014-10-08 19:54:57 +11001/*
2 * Copyright 2014 IBM Corp.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */
9
10#ifndef _ASM_PNV_PCI_H
11#define _ASM_PNV_PCI_H
12
13#include <linux/pci.h>
Andrew Donnellan89379f12016-07-14 07:17:12 +100014#include <linux/pci_hotplug.h>
Suresh Warrier4ee11c12016-08-19 15:35:49 +100015#include <linux/irq.h>
Michael Neulingec249dd2015-05-27 16:07:16 +100016#include <misc/cxl-base.h>
Gavin Shanea0d8562016-05-20 16:41:41 +100017#include <asm/opal-api.h>
Ian Munsie80c49c72014-10-08 19:54:57 +110018
Gavin Shan066bcd72016-08-02 14:10:31 +100019#define PCI_SLOT_ID_PREFIX (1UL << 63)
Gavin Shanebe22532016-05-20 16:41:38 +100020#define PCI_SLOT_ID(phb_id, bdfn) \
21 (PCI_SLOT_ID_PREFIX | ((uint64_t)(bdfn) << 16) | (phb_id))
22
Gavin Shan7e19bf32016-05-20 16:41:40 +100023extern int pnv_pci_get_slot_id(struct device_node *np, uint64_t *id);
Gavin Shanea0d8562016-05-20 16:41:41 +100024extern int pnv_pci_get_device_tree(uint32_t phandle, void *buf, uint64_t len);
25extern int pnv_pci_get_presence_state(uint64_t id, uint8_t *state);
26extern int pnv_pci_get_power_state(uint64_t id, uint8_t *state);
27extern int pnv_pci_set_power_state(uint64_t id, uint8_t state,
28 struct opal_msg *msg);
Gavin Shan7e19bf32016-05-20 16:41:40 +100029
Ryan Grimm1212aa12015-01-19 11:52:50 -060030int pnv_phb_to_cxl_mode(struct pci_dev *dev, uint64_t mode);
Ian Munsie80c49c72014-10-08 19:54:57 +110031int pnv_cxl_ioda_msi_setup(struct pci_dev *dev, unsigned int hwirq,
32 unsigned int virq);
33int pnv_cxl_alloc_hwirqs(struct pci_dev *dev, int num);
34void pnv_cxl_release_hwirqs(struct pci_dev *dev, int hwirq, int num);
35int pnv_cxl_get_irq_count(struct pci_dev *dev);
Ryan Grimm6f963ec2015-01-28 20:16:04 -060036struct device_node *pnv_pci_get_phb_node(struct pci_dev *dev);
Suresh Warrier4ee11c12016-08-19 15:35:49 +100037int64_t pnv_opal_pci_msi_eoi(struct irq_chip *chip, unsigned int hw_irq);
38bool is_pnv_opal_msi(struct irq_chip *chip);
Ian Munsie80c49c72014-10-08 19:54:57 +110039
40#ifdef CONFIG_CXL_BASE
41int pnv_cxl_alloc_hwirq_ranges(struct cxl_irq_ranges *irqs,
42 struct pci_dev *dev, int num);
43void pnv_cxl_release_hwirq_ranges(struct cxl_irq_ranges *irqs,
44 struct pci_dev *dev);
Ian Munsie4361b032016-07-14 07:17:06 +100045
46/* Support for the cxl kernel api on the real PHB (instead of vPHB) */
47int pnv_cxl_enable_phb_kernel_api(struct pci_controller *hose, bool enable);
48bool pnv_pci_on_cxl_phb(struct pci_dev *dev);
49struct cxl_afu *pnv_cxl_phb_to_afu(struct pci_controller *hose);
50void pnv_cxl_phb_set_peer_afu(struct pci_dev *dev, struct cxl_afu *afu);
51
Ian Munsie80c49c72014-10-08 19:54:57 +110052#endif
53
Andrew Donnellan89379f12016-07-14 07:17:12 +100054struct pnv_php_slot {
55 struct hotplug_slot slot;
56 struct hotplug_slot_info slot_info;
57 uint64_t id;
58 char *name;
59 int slot_no;
Gavin Shan454593e2017-01-11 11:50:08 +110060 unsigned int flags;
61#define PNV_PHP_FLAG_BROKEN_PDC 0x1
Andrew Donnellan89379f12016-07-14 07:17:12 +100062 struct kref kref;
63#define PNV_PHP_STATE_INITIALIZED 0
64#define PNV_PHP_STATE_REGISTERED 1
65#define PNV_PHP_STATE_POPULATED 2
66#define PNV_PHP_STATE_OFFLINE 3
67 int state;
Gavin Shan360aebd2016-09-28 14:34:58 +100068 int irq;
69 struct workqueue_struct *wq;
Andrew Donnellan89379f12016-07-14 07:17:12 +100070 struct device_node *dn;
71 struct pci_dev *pdev;
72 struct pci_bus *bus;
73 bool power_state_check;
74 void *fdt;
75 void *dt;
76 struct of_changeset ocs;
77 struct pnv_php_slot *parent;
78 struct list_head children;
79 struct list_head link;
80};
81extern struct pnv_php_slot *pnv_php_find_slot(struct device_node *dn);
82extern int pnv_php_set_slot_power_state(struct hotplug_slot *slot,
83 uint8_t state);
84
Ian Munsie80c49c72014-10-08 19:54:57 +110085#endif