blob: d395540ff8948f112a8de16774f2b17bfb1dd695 [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>
8#include <asm/scatterlist.h>
9#include <asm/io.h>
10
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070011#ifdef __KERNEL__
12
13struct pci_sysdata {
14 int domain; /* PCI domain */
15 int node; /* NUMA node */
16#ifdef CONFIG_X86_64
Joe Perches69bdb7b2008-03-23 01:03:04 -070017 void *iommu; /* IOMMU private data */
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070018#endif
19};
20
Thomas Gleixner07156502008-05-12 15:43:37 +020021extern int pci_routeirq;
Ingo Molnar7a9787e2008-10-28 16:26:12 +010022extern int noioapicquirk;
23extern int noioapicreroute;
Thomas Gleixner07156502008-05-12 15:43:37 +020024
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070025/* scan a bus after allocating a pci_sysdata for it */
Yinghai Lu871d5f82008-02-19 03:20:09 -080026extern struct pci_bus *pci_scan_bus_on_node(int busno, struct pci_ops *ops,
27 int node);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070028extern struct pci_bus *pci_scan_bus_with_sysdata(int busno);
29
Jesse Barnes23b90cf2010-08-17 09:15:24 -070030#ifdef CONFIG_PCI
31
32#ifdef CONFIG_PCI_DOMAINS
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070033static inline int pci_domain_nr(struct pci_bus *bus)
34{
35 struct pci_sysdata *sd = bus->sysdata;
36 return sd->domain;
37}
38
39static inline int pci_proc_domain(struct pci_bus *bus)
40{
41 return pci_domain_nr(bus);
42}
Jesse Barnes23b90cf2010-08-17 09:15:24 -070043#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070044
45/* Can be used to override the logic in pci_scan_bus for skipping
46 already-configured bus numbers - to be used for buggy BIOSes
47 or architectures with incomplete PCI setup by the loader */
48
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070049extern unsigned int pcibios_assign_all_busses(void);
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020050extern int pci_legacy_init(void);
51# ifdef CONFIG_ACPI
52# define x86_default_pci_init pci_acpi_init
53# else
54# define x86_default_pci_init pci_legacy_init
55# endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070056#else
Thomas Gleixnerb72d0db2009-08-29 16:24:51 +020057# define pcibios_assign_all_busses() 0
58# define x86_default_pci_init NULL
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070059#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070060
61extern unsigned long pci_mem_start;
62#define PCIBIOS_MIN_IO 0x1000
63#define PCIBIOS_MIN_MEM (pci_mem_start)
64
65#define PCIBIOS_MIN_CARDBUS_IO 0x4000
66
67void pcibios_config_init(void);
Joe Perches69bdb7b2008-03-23 01:03:04 -070068struct pci_bus *pcibios_scan_root(int bus);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070069
70void pcibios_set_master(struct pci_dev *dev);
71void pcibios_penalize_isa_irq(int irq, int active);
72struct irq_routing_table *pcibios_get_irq_routing_table(void);
73int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq);
74
75
76#define HAVE_PCI_MMAP
77extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
Joe Perches69bdb7b2008-03-23 01:03:04 -070078 enum pci_mmap_state mmap_state,
79 int write_combine);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070080
81
82#ifdef CONFIG_PCI
Thomas Gleixner376ff032008-01-30 13:30:16 +010083extern void early_quirks(void);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070084static inline void pci_dma_burst_advice(struct pci_dev *pdev,
85 enum pci_dma_burst_strategy *strat,
86 unsigned long *strategy_parameter)
87{
88 *strat = PCI_DMA_BURST_INFINITY;
89 *strategy_parameter = ~0UL;
90}
Thomas Gleixner376ff032008-01-30 13:30:16 +010091#else
92static inline void early_quirks(void) { }
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070093#endif
94
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -080095extern void pci_iommu_alloc(void);
96
Michael Ellerman11df1f02009-01-19 11:31:00 +110097/* MSI arch hook */
98#define arch_setup_msi_irqs arch_setup_msi_irqs
99
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
105#include "pci_64.h"
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200106#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700107
Yinghai Luc252a5b2010-02-10 01:20:19 -0800108void dma32_reserve_bootmem(void);
109
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700110/* implement the pci_ DMA API in terms of the generic device dma_ one */
111#include <asm-generic/pci-dma-compat.h>
112
113/* generic pci stuff */
114#include <asm-generic/pci.h>
Yinghai Lu1f82de12009-04-23 20:48:32 -0700115#define PCIBIOS_MAX_MEM_32 0xffffffff
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700116
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100117#ifdef CONFIG_NUMA
118/* Returns the node based on pci bus */
Rusty Russell393d68f2008-12-26 22:23:38 +1030119static inline int __pcibus_to_node(const struct pci_bus *bus)
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100120{
Rusty Russell393d68f2008-12-26 22:23:38 +1030121 const struct pci_sysdata *sd = bus->sysdata;
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700122
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100123 return sd->node;
124}
125
Rusty Russell393d68f2008-12-26 22:23:38 +1030126static inline const struct cpumask *
127cpumask_of_pcibus(const struct pci_bus *bus)
128{
David Rientjes7715a1e2009-09-18 03:41:10 -0700129 int node;
130
131 node = __pcibus_to_node(bus);
132 return (node == -1) ? cpu_online_mask :
133 cpumask_of_node(node);
Rusty Russell393d68f2008-12-26 22:23:38 +1030134}
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100135#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700136
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700137#endif /* _ASM_X86_PCI_H */