/*1* linux/include/asm-xtensa/pci.h2*3* This file is subject to the terms and conditions of the GNU General Public4* License. See the file "COPYING" in the main directory of this archive5* for more details.6*7* Copyright (C) 2001 - 2005 Tensilica Inc.8*/910#ifndef _XTENSA_PCI_H11#define _XTENSA_PCI_H1213/* Can be used to override the logic in pci_scan_bus for skipping14* already-configured bus numbers - to be used for buggy BIOSes15* or architectures with incomplete PCI setup by the loader16*/1718#define pcibios_assign_all_busses() 01920/* Assume some values. (We should revise them, if necessary) */2122#define PCIBIOS_MIN_IO 0x200023#define PCIBIOS_MIN_MEM 0x100000002425/* Dynamic DMA mapping stuff.26* Xtensa has everything mapped statically like x86.27*/2829#include <linux/types.h>30#include <linux/slab.h>31#include <linux/scatterlist.h>32#include <linux/string.h>33#include <asm/io.h>3435/* The PCI address space does equal the physical memory address space.36* The networking and block device layers use this boolean for bounce buffer37* decisions.38*/3940/* Tell PCI code what kind of PCI resource mappings we support */41#define HAVE_PCI_MMAP 142#define ARCH_GENERIC_PCI_MMAP_RESOURCE 143#define arch_can_pci_mmap_io() 14445#endif /* _XTENSA_PCI_H */464748