blob: 810cc9a8169f3dc8c9688180bae1f73b0f0331e6 [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>
Michael Neulingec249dd2015-05-27 16:07:16 +100014#include <misc/cxl-base.h>
Ian Munsie80c49c72014-10-08 19:54:57 +110015
Gavin Shanebe22532016-05-20 16:41:38 +100016#define PCI_SLOT_ID_PREFIX 0x8000000000000000
17#define PCI_SLOT_ID(phb_id, bdfn) \
18 (PCI_SLOT_ID_PREFIX | ((uint64_t)(bdfn) << 16) | (phb_id))
19
Gavin Shan7e19bf32016-05-20 16:41:40 +100020extern int pnv_pci_get_slot_id(struct device_node *np, uint64_t *id);
21
Ryan Grimm1212aa12015-01-19 11:52:50 -060022int pnv_phb_to_cxl_mode(struct pci_dev *dev, uint64_t mode);
Ian Munsie80c49c72014-10-08 19:54:57 +110023int pnv_cxl_ioda_msi_setup(struct pci_dev *dev, unsigned int hwirq,
24 unsigned int virq);
25int pnv_cxl_alloc_hwirqs(struct pci_dev *dev, int num);
26void pnv_cxl_release_hwirqs(struct pci_dev *dev, int hwirq, int num);
27int pnv_cxl_get_irq_count(struct pci_dev *dev);
Ryan Grimm6f963ec2015-01-28 20:16:04 -060028struct device_node *pnv_pci_get_phb_node(struct pci_dev *dev);
Ian Munsie80c49c72014-10-08 19:54:57 +110029
30#ifdef CONFIG_CXL_BASE
31int pnv_cxl_alloc_hwirq_ranges(struct cxl_irq_ranges *irqs,
32 struct pci_dev *dev, int num);
33void pnv_cxl_release_hwirq_ranges(struct cxl_irq_ranges *irqs,
34 struct pci_dev *dev);
35#endif
36
37#endif