Linux Audio

Check our new training course

Loading...
v4.17
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#ifndef _ASM_X86_PCI_H
  3#define _ASM_X86_PCI_H
  4
  5#include <linux/mm.h> /* for struct page */
  6#include <linux/types.h>
  7#include <linux/slab.h>
  8#include <linux/string.h>
  9#include <linux/scatterlist.h>
 10#include <asm/io.h>
 11#include <asm/pat.h>
 12#include <asm/x86_init.h>
 13
 14#ifdef __KERNEL__
 15
 16struct pci_sysdata {
 17	int		domain;		/* PCI domain */
 18	int		node;		/* NUMA node */
 19#ifdef CONFIG_ACPI
 20	struct acpi_device *companion;	/* ACPI companion device */
 21#endif
 22#ifdef CONFIG_X86_64
 23	void		*iommu;		/* IOMMU private data */
 24#endif
 25#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
 26	void		*fwnode;	/* IRQ domain for MSI assignment */
 27#endif
 28#if IS_ENABLED(CONFIG_VMD)
 29	bool vmd_domain;		/* True if in Intel VMD domain */
 30#endif
 31};
 32
 33extern int pci_routeirq;
 34extern int noioapicquirk;
 35extern int noioapicreroute;
 36
 37#ifdef CONFIG_PCI
 38
 39#ifdef CONFIG_PCI_DOMAINS
 40static inline int pci_domain_nr(struct pci_bus *bus)
 41{
 42	struct pci_sysdata *sd = bus->sysdata;
 43
 44	return sd->domain;
 45}
 46
 47static inline int pci_proc_domain(struct pci_bus *bus)
 48{
 49	return pci_domain_nr(bus);
 50}
 51#endif
 52
 53#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
 54static inline void *_pci_root_bus_fwnode(struct pci_bus *bus)
 55{
 56	struct pci_sysdata *sd = bus->sysdata;
 57
 58	return sd->fwnode;
 59}
 60
 61#define pci_root_bus_fwnode	_pci_root_bus_fwnode
 62#endif
 63
 64static inline bool is_vmd(struct pci_bus *bus)
 65{
 66#if IS_ENABLED(CONFIG_VMD)
 67	struct pci_sysdata *sd = bus->sysdata;
 68
 69	return sd->vmd_domain;
 70#else
 71	return false;
 72#endif
 73}
 74
 75/* Can be used to override the logic in pci_scan_bus for skipping
 76   already-configured bus numbers - to be used for buggy BIOSes
 77   or architectures with incomplete PCI setup by the loader */
 78
 79extern unsigned int pcibios_assign_all_busses(void);
 80extern int pci_legacy_init(void);
 
 
 
 
 
 81#else
 82static inline int pcibios_assign_all_busses(void) { return 0; }
 
 83#endif
 84
 85extern unsigned long pci_mem_start;
 86#define PCIBIOS_MIN_IO		0x1000
 87#define PCIBIOS_MIN_MEM		(pci_mem_start)
 88
 89#define PCIBIOS_MIN_CARDBUS_IO	0x4000
 90
 91extern int pcibios_enabled;
 
 92void pcibios_scan_root(int bus);
 93
 
 
 94struct irq_routing_table *pcibios_get_irq_routing_table(void);
 95int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq);
 96
 97
 98#define HAVE_PCI_MMAP
 99#define arch_can_pci_mmap_wc()	pat_enabled()
100#define ARCH_GENERIC_PCI_MMAP_RESOURCE
 
 
101
102#ifdef CONFIG_PCI
103extern void early_quirks(void);
 
 
 
 
 
 
 
104#else
105static inline void early_quirks(void) { }
106#endif
107
108extern void pci_iommu_alloc(void);
109
110#ifdef CONFIG_PCI_MSI
111/* implemented in arch/x86/kernel/apic/io_apic. */
112struct msi_desc;
113int native_setup_msi_irqs(struct pci_dev *dev, int nvec, int type);
114void native_teardown_msi_irq(unsigned int irq);
115void native_restore_msi_irqs(struct pci_dev *dev);
 
 
116#else
117#define native_setup_msi_irqs		NULL
118#define native_teardown_msi_irq		NULL
119#endif
120
121#define PCI_DMA_BUS_IS_PHYS (dma_ops->is_phys)
122
123#endif  /* __KERNEL__ */
124
125#ifdef CONFIG_X86_64
126#include <asm/pci_64.h>
127#endif
 
 
 
128
129/* generic pci stuff */
130#include <asm-generic/pci.h>
131
132#ifdef CONFIG_NUMA
133/* Returns the node based on pci bus */
134static inline int __pcibus_to_node(const struct pci_bus *bus)
135{
136	const struct pci_sysdata *sd = bus->sysdata;
137
138	return sd->node;
139}
140
141static inline const struct cpumask *
142cpumask_of_pcibus(const struct pci_bus *bus)
143{
144	int node;
145
146	node = __pcibus_to_node(bus);
147	return (node == -1) ? cpu_online_mask :
148			      cpumask_of_node(node);
149}
150#endif
151
152struct pci_setup_rom {
153	struct setup_data data;
154	uint16_t vendor;
155	uint16_t devid;
156	uint64_t pcilen;
157	unsigned long segment;
158	unsigned long bus;
159	unsigned long device;
160	unsigned long function;
161	uint8_t romdata[0];
162};
163
164#endif /* _ASM_X86_PCI_H */
v3.15
 
  1#ifndef _ASM_X86_PCI_H
  2#define _ASM_X86_PCI_H
  3
  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#include <asm/x86_init.h>
 11
 12#ifdef __KERNEL__
 13
 14struct pci_sysdata {
 15	int		domain;		/* PCI domain */
 16	int		node;		/* NUMA node */
 17#ifdef CONFIG_ACPI
 18	struct acpi_device *companion;	/* ACPI companion device */
 19#endif
 20#ifdef CONFIG_X86_64
 21	void		*iommu;		/* IOMMU private data */
 22#endif
 
 
 
 
 
 
 23};
 24
 25extern int pci_routeirq;
 26extern int noioapicquirk;
 27extern int noioapicreroute;
 28
 29#ifdef CONFIG_PCI
 30
 31#ifdef CONFIG_PCI_DOMAINS
 32static 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}
 42#endif
 43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 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
 48extern unsigned int pcibios_assign_all_busses(void);
 49extern 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
 55#else
 56# define pcibios_assign_all_busses()	0
 57# define x86_default_pci_init		NULL
 58#endif
 59
 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
 66extern int pcibios_enabled;
 67void pcibios_config_init(void);
 68void pcibios_scan_root(int bus);
 69
 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,
 78			       enum pci_mmap_state mmap_state,
 79			       int write_combine);
 80
 81
 82#ifdef CONFIG_PCI
 83extern void early_quirks(void);
 84static 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}
 91#else
 92static inline void early_quirks(void) { }
 93#endif
 94
 95extern void pci_iommu_alloc(void);
 96
 97#ifdef CONFIG_PCI_MSI
 98/* implemented in arch/x86/kernel/apic/io_apic. */
 99struct msi_desc;
100int native_setup_msi_irqs(struct pci_dev *dev, int nvec, int type);
101void native_teardown_msi_irq(unsigned int irq);
102void native_restore_msi_irqs(struct pci_dev *dev);
103int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc,
104		  unsigned int irq_base, unsigned int irq_offset);
105#else
106#define native_setup_msi_irqs		NULL
107#define native_teardown_msi_irq		NULL
108#endif
109
110#define PCI_DMA_BUS_IS_PHYS (dma_ops->is_phys)
111
112#endif  /* __KERNEL__ */
113
114#ifdef CONFIG_X86_64
115#include <asm/pci_64.h>
116#endif
117
118/* implement the pci_ DMA API in terms of the generic device dma_ one */
119#include <asm-generic/pci-dma-compat.h>
120
121/* generic pci stuff */
122#include <asm-generic/pci.h>
123
124#ifdef CONFIG_NUMA
125/* Returns the node based on pci bus */
126static inline int __pcibus_to_node(const struct pci_bus *bus)
127{
128	const struct pci_sysdata *sd = bus->sysdata;
129
130	return sd->node;
131}
132
133static inline const struct cpumask *
134cpumask_of_pcibus(const struct pci_bus *bus)
135{
136	int node;
137
138	node = __pcibus_to_node(bus);
139	return (node == -1) ? cpu_online_mask :
140			      cpumask_of_node(node);
141}
142#endif
143
144struct pci_setup_rom {
145	struct setup_data data;
146	uint16_t vendor;
147	uint16_t devid;
148	uint64_t pcilen;
149	unsigned long segment;
150	unsigned long bus;
151	unsigned long device;
152	unsigned long function;
153	uint8_t romdata[0];
154};
155
156#endif /* _ASM_X86_PCI_H */