-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
powerpc/powerpc: Add new PCIe functions for allocating cxl interrupts
This adds a number of functions for allocating IRQs under powernv PCIe for cxl. Signed-off-by: Ian Munsie <imunsie@au1.ibm.com> Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
- Loading branch information
Ian Munsie
authored and
Michael Ellerman
committed
Oct 8, 2014
1 parent
1cd258d
commit 80c49c7
Showing
2 changed files
with
185 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright 2014 IBM Corp. | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; either version | ||
* 2 of the License, or (at your option) any later version. | ||
*/ | ||
|
||
#ifndef _ASM_PNV_PCI_H | ||
#define _ASM_PNV_PCI_H | ||
|
||
#include <linux/pci.h> | ||
#include <misc/cxl.h> | ||
|
||
int pnv_phb_to_cxl(struct pci_dev *dev); | ||
int pnv_cxl_ioda_msi_setup(struct pci_dev *dev, unsigned int hwirq, | ||
unsigned int virq); | ||
int pnv_cxl_alloc_hwirqs(struct pci_dev *dev, int num); | ||
void pnv_cxl_release_hwirqs(struct pci_dev *dev, int hwirq, int num); | ||
int pnv_cxl_get_irq_count(struct pci_dev *dev); | ||
struct device_node *pnv_pci_to_phb_node(struct pci_dev *dev); | ||
|
||
#ifdef CONFIG_CXL_BASE | ||
int pnv_cxl_alloc_hwirq_ranges(struct cxl_irq_ranges *irqs, | ||
struct pci_dev *dev, int num); | ||
void pnv_cxl_release_hwirq_ranges(struct cxl_irq_ranges *irqs, | ||
struct pci_dev *dev); | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters