powerpc/powernv: remove the unused pnv_pci_set_p2p function
[linux-2.6-block.git] / arch / powerpc / include / asm / pnv-pci.h
CommitLineData
80c49c7e
IM
1/*
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>
89379f16 14#include <linux/pci_hotplug.h>
4ee11c1a 15#include <linux/irq.h>
ec249dd8 16#include <misc/cxl-base.h>
ea0d856c 17#include <asm/opal-api.h>
80c49c7e 18
066bcd78 19#define PCI_SLOT_ID_PREFIX (1UL << 63)
ebe22531
GS
20#define PCI_SLOT_ID(phb_id, bdfn) \
21 (PCI_SLOT_ID_PREFIX | ((uint64_t)(bdfn) << 16) | (phb_id))
22
7e19bf32 23extern int pnv_pci_get_slot_id(struct device_node *np, uint64_t *id);
ea0d856c
GS
24extern 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);
7e19bf32 29
d6a90bb8
PB
30extern int pnv_pci_enable_tunnel(struct pci_dev *dev, uint64_t *asnind);
31extern int pnv_pci_disable_tunnel(struct pci_dev *dev);
32extern int pnv_pci_set_tunnel_bar(struct pci_dev *dev, uint64_t addr,
33 int enable);
34extern int pnv_pci_get_as_notify_info(struct task_struct *task, u32 *lpid,
35 u32 *pid, u32 *tid);
1212aa1c 36int pnv_phb_to_cxl_mode(struct pci_dev *dev, uint64_t mode);
80c49c7e
IM
37int pnv_cxl_ioda_msi_setup(struct pci_dev *dev, unsigned int hwirq,
38 unsigned int virq);
39int pnv_cxl_alloc_hwirqs(struct pci_dev *dev, int num);
40void pnv_cxl_release_hwirqs(struct pci_dev *dev, int hwirq, int num);
41int pnv_cxl_get_irq_count(struct pci_dev *dev);
6f963ec2 42struct device_node *pnv_pci_get_phb_node(struct pci_dev *dev);
4ee11c1a
SW
43int64_t pnv_opal_pci_msi_eoi(struct irq_chip *chip, unsigned int hw_irq);
44bool is_pnv_opal_msi(struct irq_chip *chip);
80c49c7e
IM
45
46#ifdef CONFIG_CXL_BASE
47int pnv_cxl_alloc_hwirq_ranges(struct cxl_irq_ranges *irqs,
48 struct pci_dev *dev, int num);
49void pnv_cxl_release_hwirq_ranges(struct cxl_irq_ranges *irqs,
50 struct pci_dev *dev);
51#endif
52
89379f16
AD
53struct pnv_php_slot {
54 struct hotplug_slot slot;
89379f16
AD
55 uint64_t id;
56 char *name;
57 int slot_no;
454593e5
GS
58 unsigned int flags;
59#define PNV_PHP_FLAG_BROKEN_PDC 0x1
89379f16
AD
60 struct kref kref;
61#define PNV_PHP_STATE_INITIALIZED 0
62#define PNV_PHP_STATE_REGISTERED 1
63#define PNV_PHP_STATE_POPULATED 2
64#define PNV_PHP_STATE_OFFLINE 3
65 int state;
360aebd8
GS
66 int irq;
67 struct workqueue_struct *wq;
89379f16
AD
68 struct device_node *dn;
69 struct pci_dev *pdev;
70 struct pci_bus *bus;
71 bool power_state_check;
a7da2161 72 u8 attention_state;
89379f16
AD
73 void *fdt;
74 void *dt;
75 struct of_changeset ocs;
76 struct pnv_php_slot *parent;
77 struct list_head children;
78 struct list_head link;
79};
80extern struct pnv_php_slot *pnv_php_find_slot(struct device_node *dn);
81extern int pnv_php_set_slot_power_state(struct hotplug_slot *slot,
82 uint8_t state);
83
80c49c7e 84#endif