blob: 7fd8eaa8714dfd9400269117b34749645086aaf4 [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
23};
24
Thomas Gleixner07156502008-05-12 15:43:37 +020025extern int pci_routeirq;
Ingo Molnar7a9787e2008-10-28 16:26:12 +010026extern int noioapicquirk;
27extern int noioapicreroute;
Thomas Gleixner07156502008-05-12 15:43:37 +020028
Jesse Barnes23b90cf2010-08-17 09:15:24 -070029#ifdef CONFIG_PCI
30
31#ifdef CONFIG_PCI_DOMAINS
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070032static inline int pci_domain_nr(struct pci_bus *bus)
33{
34 struct pci_sysdata *sd = bus->sysdata;
35 return sd->domain;
36}
37
38static inline int pci_proc_domain(struct pci_bus *bus)
39{
40 return pci_domain_nr(bus);
41}
Jesse Barnes23b90cf2010-08-17 09:15:24 -070042#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070043
44/* Can be used to override the logic in pci_scan_bus for skipping
45 already-configured bus numbers - to be used for buggy BIOSes
46 or architectures with incomplete PCI setup by the loader */
47
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070048extern unsigned int pcibios_assign_all_busses(void);
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020049extern int pci_legacy_init(void);
50# ifdef CONFIG_ACPI
51# define x86_default_pci_init pci_acpi_init
52# else
53# define x86_default_pci_init pci_legacy_init
54# endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070055#else
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020056# define pcibios_assign_all_busses() 0
57# define x86_default_pci_init NULL
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070058#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070059
60extern unsigned long pci_mem_start;
61#define PCIBIOS_MIN_IO 0x1000
62#define PCIBIOS_MIN_MEM (pci_mem_start)
63
64#define PCIBIOS_MIN_CARDBUS_IO 0x4000
65
Matthieu Castet5bd5a452010-11-16 22:31:26 +010066extern int pcibios_enabled;
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070067void pcibios_config_init(void);
Bjorn Helgaas49886cf2014-01-28 16:40:36 -070068void pcibios_scan_root(int bus);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070069
70void pcibios_set_master(struct pci_dev *dev);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070071struct irq_routing_table *pcibios_get_irq_routing_table(void);
72int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq);
73
74
75#define HAVE_PCI_MMAP
76extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
Joe Perches69bdb7b2008-03-23 01:03:04 -070077 enum pci_mmap_state mmap_state,
78 int write_combine);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070079
80
81#ifdef CONFIG_PCI
Thomas Gleixner376ff032008-01-30 13:30:16 +010082extern void early_quirks(void);
Thomas Gleixner376ff032008-01-30 13:30:16 +010083#else
84static inline void early_quirks(void) { }
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070085#endif
86
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -080087extern void pci_iommu_alloc(void);
88
Stefano Stabellini294ee6f2010-10-06 16:12:28 -040089#ifdef CONFIG_PCI_MSI
Stefano Stabellini294ee6f2010-10-06 16:12:28 -040090/* implemented in arch/x86/kernel/apic/io_apic. */
Joerg Roedel5afba622012-09-26 12:44:38 +020091struct msi_desc;
Stefano Stabellini294ee6f2010-10-06 16:12:28 -040092int native_setup_msi_irqs(struct pci_dev *dev, int nvec, int type);
93void native_teardown_msi_irq(unsigned int irq);
DuanZhenzhongac8344c2013-12-04 13:09:16 +080094void native_restore_msi_irqs(struct pci_dev *dev);
Stefano Stabellini294ee6f2010-10-06 16:12:28 -040095#else
96#define native_setup_msi_irqs NULL
97#define native_teardown_msi_irq NULL
Stefano Stabellini294ee6f2010-10-06 16:12:28 -040098#endif
Michael Ellerman11df1f02009-01-19 11:31:00 +110099
Joerg Roedel67796bf2009-04-02 15:55:55 +0200100#define PCI_DMA_BUS_IS_PHYS (dma_ops->is_phys)
101
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700102#endif /* __KERNEL__ */
103
Joerg Roedel67796bf2009-04-02 15:55:55 +0200104#ifdef CONFIG_X86_64
David Howellsa1ce3922012-10-02 18:01:25 +0100105#include <asm/pci_64.h>
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200106#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700107
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700108/* generic pci stuff */
109#include <asm-generic/pci.h>
110
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100111#ifdef CONFIG_NUMA
112/* Returns the node based on pci bus */
Rusty Russell393d68f2008-12-26 22:23:38 +1030113static inline int __pcibus_to_node(const struct pci_bus *bus)
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100114{
Rusty Russell393d68f2008-12-26 22:23:38 +1030115 const struct pci_sysdata *sd = bus->sysdata;
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700116
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100117 return sd->node;
118}
119
Rusty Russell393d68f2008-12-26 22:23:38 +1030120static inline const struct cpumask *
121cpumask_of_pcibus(const struct pci_bus *bus)
122{
David Rientjes7715a1e2009-09-18 03:41:10 -0700123 int node;
124
125 node = __pcibus_to_node(bus);
126 return (node == -1) ? cpu_online_mask :
127 cpumask_of_node(node);
Rusty Russell393d68f2008-12-26 22:23:38 +1030128}
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100129#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700130
Matthew Garrettdd5fc852012-12-05 14:33:26 -0700131struct pci_setup_rom {
132 struct setup_data data;
133 uint16_t vendor;
134 uint16_t devid;
135 uint64_t pcilen;
136 unsigned long segment;
137 unsigned long bus;
138 unsigned long device;
139 unsigned long function;
140 uint8_t romdata[0];
141};
142
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700143#endif /* _ASM_X86_PCI_H */