blob: b5a85f1bb3053f9347d8922f15e2b26cde128386 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Ian Munsie80c49c72014-10-08 19:54:57 +11002/*
3 * Copyright 2014 IBM Corp.
Ian Munsie80c49c72014-10-08 19:54:57 +11004 */
5
6#ifndef _ASM_PNV_PCI_H
7#define _ASM_PNV_PCI_H
8
9#include <linux/pci.h>
Andrew Donnellan89379f12016-07-14 07:17:12 +100010#include <linux/pci_hotplug.h>
Suresh Warrier4ee11c12016-08-19 15:35:49 +100011#include <linux/irq.h>
Michael Neulingec249dd2015-05-27 16:07:16 +100012#include <misc/cxl-base.h>
Gavin Shanea0d8562016-05-20 16:41:41 +100013#include <asm/opal-api.h>
Ian Munsie80c49c72014-10-08 19:54:57 +110014
Gavin Shan066bcd72016-08-02 14:10:31 +100015#define PCI_SLOT_ID_PREFIX (1UL << 63)
Gavin Shanebe22532016-05-20 16:41:38 +100016#define PCI_SLOT_ID(phb_id, bdfn) \
17 (PCI_SLOT_ID_PREFIX | ((uint64_t)(bdfn) << 16) | (phb_id))
18
Gavin Shan7e19bf32016-05-20 16:41:40 +100019extern int pnv_pci_get_slot_id(struct device_node *np, uint64_t *id);
Gavin Shanea0d8562016-05-20 16:41:41 +100020extern int pnv_pci_get_device_tree(uint32_t phandle, void *buf, uint64_t len);
21extern int pnv_pci_get_presence_state(uint64_t id, uint8_t *state);
22extern int pnv_pci_get_power_state(uint64_t id, uint8_t *state);
23extern int pnv_pci_set_power_state(uint64_t id, uint8_t state,
24 struct opal_msg *msg);
Frederic Barrat25529102017-08-04 11:55:14 +020025extern int pnv_pci_set_p2p(struct pci_dev *initiator, struct pci_dev *target,
26 u64 desc);
Gavin Shan7e19bf32016-05-20 16:41:40 +100027
Philippe Bergheaudd6a90bb2018-03-02 10:56:11 +010028extern int pnv_pci_enable_tunnel(struct pci_dev *dev, uint64_t *asnind);
29extern int pnv_pci_disable_tunnel(struct pci_dev *dev);
30extern int pnv_pci_set_tunnel_bar(struct pci_dev *dev, uint64_t addr,
31 int enable);
32extern int pnv_pci_get_as_notify_info(struct task_struct *task, u32 *lpid,
33 u32 *pid, u32 *tid);
Ryan Grimm1212aa12015-01-19 11:52:50 -060034int pnv_phb_to_cxl_mode(struct pci_dev *dev, uint64_t mode);
Ian Munsie80c49c72014-10-08 19:54:57 +110035int pnv_cxl_ioda_msi_setup(struct pci_dev *dev, unsigned int hwirq,
36 unsigned int virq);
37int pnv_cxl_alloc_hwirqs(struct pci_dev *dev, int num);
38void pnv_cxl_release_hwirqs(struct pci_dev *dev, int hwirq, int num);
39int pnv_cxl_get_irq_count(struct pci_dev *dev);
Ryan Grimm6f963ec2015-01-28 20:16:04 -060040struct device_node *pnv_pci_get_phb_node(struct pci_dev *dev);
Suresh Warrier4ee11c12016-08-19 15:35:49 +100041int64_t pnv_opal_pci_msi_eoi(struct irq_chip *chip, unsigned int hw_irq);
42bool is_pnv_opal_msi(struct irq_chip *chip);
Ian Munsie80c49c72014-10-08 19:54:57 +110043
44#ifdef CONFIG_CXL_BASE
45int pnv_cxl_alloc_hwirq_ranges(struct cxl_irq_ranges *irqs,
46 struct pci_dev *dev, int num);
47void pnv_cxl_release_hwirq_ranges(struct cxl_irq_ranges *irqs,
48 struct pci_dev *dev);
Ian Munsie80c49c72014-10-08 19:54:57 +110049#endif
50
Andrew Donnellan89379f12016-07-14 07:17:12 +100051struct pnv_php_slot {
52 struct hotplug_slot slot;
Andrew Donnellan89379f12016-07-14 07:17:12 +100053 uint64_t id;
54 char *name;
55 int slot_no;
Gavin Shan454593e2017-01-11 11:50:08 +110056 unsigned int flags;
57#define PNV_PHP_FLAG_BROKEN_PDC 0x1
Andrew Donnellan89379f12016-07-14 07:17:12 +100058 struct kref kref;
59#define PNV_PHP_STATE_INITIALIZED 0
60#define PNV_PHP_STATE_REGISTERED 1
61#define PNV_PHP_STATE_POPULATED 2
62#define PNV_PHP_STATE_OFFLINE 3
63 int state;
Gavin Shan360aebd2016-09-28 14:34:58 +100064 int irq;
65 struct workqueue_struct *wq;
Andrew Donnellan89379f12016-07-14 07:17:12 +100066 struct device_node *dn;
67 struct pci_dev *pdev;
68 struct pci_bus *bus;
69 bool power_state_check;
Lukas Wunnera7da2162018-09-08 09:59:01 +020070 u8 attention_state;
Andrew Donnellan89379f12016-07-14 07:17:12 +100071 void *fdt;
72 void *dt;
73 struct of_changeset ocs;
74 struct pnv_php_slot *parent;
75 struct list_head children;
76 struct list_head link;
77};
78extern struct pnv_php_slot *pnv_php_find_slot(struct device_node *dn);
79extern int pnv_php_set_slot_power_state(struct hotplug_slot *slot,
80 uint8_t state);
81
Ian Munsie80c49c72014-10-08 19:54:57 +110082#endif