blob: 9ab7507ca1c2ce785291525d42fc14f58a92c79e [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_PCI_H
2#define _ASM_X86_PCI_H
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -07003
4#include <linux/mm.h> /* for struct page */
5#include <linux/types.h>
6#include <linux/slab.h>
7#include <linux/string.h>
Christoph Hellwig84be4562015-05-01 12:46:15 +02008#include <linux/scatterlist.h>
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -07009#include <asm/io.h>
Stefano Stabellini294ee6f2010-10-06 16:12:28 -040010#include <asm/x86_init.h>
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070011
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070012#ifdef __KERNEL__
13
14struct pci_sysdata {
15 int domain; /* PCI domain */
16 int node; /* NUMA node */
Rafael J. Wysocki6c0cc952013-01-09 22:33:37 +010017#ifdef CONFIG_ACPI
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010018 struct acpi_device *companion; /* ACPI companion device */
Rafael J. Wysocki6c0cc952013-01-09 22:33:37 +010019#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070020#ifdef CONFIG_X86_64
Joe Perches69bdb7b2008-03-23 01:03:04 -070021 void *iommu; /* IOMMU private data */
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070022#endif
Jake Oshins92016ba2016-02-16 21:56:21 +000023#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
24 void *fwnode; /* IRQ domain for MSI assignment */
25#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070026};
27
Thomas Gleixner07156502008-05-12 15:43:37 +020028extern int pci_routeirq;
Ingo Molnar7a9787e2008-10-28 16:26:12 +010029extern int noioapicquirk;
30extern int noioapicreroute;
Thomas Gleixner07156502008-05-12 15:43:37 +020031
Jesse Barnes23b90cf2010-08-17 09:15:24 -070032#ifdef CONFIG_PCI
33
34#ifdef CONFIG_PCI_DOMAINS
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070035static inline int pci_domain_nr(struct pci_bus *bus)
36{
37 struct pci_sysdata *sd = bus->sysdata;
Jake Oshins92016ba2016-02-16 21:56:21 +000038
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070039 return sd->domain;
40}
41
42static inline int pci_proc_domain(struct pci_bus *bus)
43{
44 return pci_domain_nr(bus);
45}
Jesse Barnes23b90cf2010-08-17 09:15:24 -070046#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070047
Jake Oshins92016ba2016-02-16 21:56:21 +000048#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
49static inline void *_pci_root_bus_fwnode(struct pci_bus *bus)
50{
51 struct pci_sysdata *sd = bus->sysdata;
52
53 return sd->fwnode;
54}
55
56#define pci_root_bus_fwnode _pci_root_bus_fwnode
57#endif
58
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070059/* Can be used to override the logic in pci_scan_bus for skipping
60 already-configured bus numbers - to be used for buggy BIOSes
61 or architectures with incomplete PCI setup by the loader */
62
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070063extern unsigned int pcibios_assign_all_busses(void);
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020064extern int pci_legacy_init(void);
65# ifdef CONFIG_ACPI
66# define x86_default_pci_init pci_acpi_init
67# else
68# define x86_default_pci_init pci_legacy_init
69# endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070070#else
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020071# define pcibios_assign_all_busses() 0
72# define x86_default_pci_init NULL
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070073#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070074
75extern unsigned long pci_mem_start;
76#define PCIBIOS_MIN_IO 0x1000
77#define PCIBIOS_MIN_MEM (pci_mem_start)
78
79#define PCIBIOS_MIN_CARDBUS_IO 0x4000
80
Matthieu Castet5bd5a452010-11-16 22:31:26 +010081extern int pcibios_enabled;
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070082void pcibios_config_init(void);
Bjorn Helgaas49886cf2014-01-28 16:40:36 -070083void pcibios_scan_root(int bus);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070084
85void pcibios_set_master(struct pci_dev *dev);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070086struct irq_routing_table *pcibios_get_irq_routing_table(void);
87int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq);
88
89
90#define HAVE_PCI_MMAP
91extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
Joe Perches69bdb7b2008-03-23 01:03:04 -070092 enum pci_mmap_state mmap_state,
93 int write_combine);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070094
95
96#ifdef CONFIG_PCI
Thomas Gleixner376ff032008-01-30 13:30:16 +010097extern void early_quirks(void);
Thomas Gleixner376ff032008-01-30 13:30:16 +010098#else
99static inline void early_quirks(void) { }
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700100#endif
101
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -0800102extern void pci_iommu_alloc(void);
103
Stefano Stabellini294ee6f2010-10-06 16:12:28 -0400104#ifdef CONFIG_PCI_MSI
Stefano Stabellini294ee6f2010-10-06 16:12:28 -0400105/* implemented in arch/x86/kernel/apic/io_apic. */
Joerg Roedel5afba622012-09-26 12:44:38 +0200106struct msi_desc;
Stefano Stabellini294ee6f2010-10-06 16:12:28 -0400107int native_setup_msi_irqs(struct pci_dev *dev, int nvec, int type);
108void native_teardown_msi_irq(unsigned int irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +0800109void native_restore_msi_irqs(struct pci_dev *dev);
Stefano Stabellini294ee6f2010-10-06 16:12:28 -0400110#else
111#define native_setup_msi_irqs NULL
112#define native_teardown_msi_irq NULL
Stefano Stabellini294ee6f2010-10-06 16:12:28 -0400113#endif
Michael Ellerman11df1f02009-01-19 11:31:00 +1100114
Joerg Roedel67796bf2009-04-02 15:55:55 +0200115#define PCI_DMA_BUS_IS_PHYS (dma_ops->is_phys)
116
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700117#endif /* __KERNEL__ */
118
Joerg Roedel67796bf2009-04-02 15:55:55 +0200119#ifdef CONFIG_X86_64
David Howellsa1ce3922012-10-02 18:01:25 +0100120#include <asm/pci_64.h>
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200121#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700122
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700123/* generic pci stuff */
124#include <asm-generic/pci.h>
125
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100126#ifdef CONFIG_NUMA
127/* Returns the node based on pci bus */
Rusty Russell393d68f2008-12-26 22:23:38 +1030128static inline int __pcibus_to_node(const struct pci_bus *bus)
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100129{
Rusty Russell393d68f2008-12-26 22:23:38 +1030130 const struct pci_sysdata *sd = bus->sysdata;
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700131
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100132 return sd->node;
133}
134
Rusty Russell393d68f2008-12-26 22:23:38 +1030135static inline const struct cpumask *
136cpumask_of_pcibus(const struct pci_bus *bus)
137{
David Rientjes7715a1e2009-09-18 03:41:10 -0700138 int node;
139
140 node = __pcibus_to_node(bus);
141 return (node == -1) ? cpu_online_mask :
142 cpumask_of_node(node);
Rusty Russell393d68f2008-12-26 22:23:38 +1030143}
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100144#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700145
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700146struct pci_setup_rom {
147 struct setup_data data;
148 uint16_t vendor;
149 uint16_t devid;
150 uint64_t pcilen;
151 unsigned long segment;
152 unsigned long bus;
153 unsigned long device;
154 unsigned long function;
155 uint8_t romdata[0];
156};
157
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700158#endif /* _ASM_X86_PCI_H */