GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / xtensa / include / asm / pci.h
blob4609b0f15f1fb56232c6d80cd3e6e865037fadd4
1 /*
2 * linux/include/asm-xtensa/pci.h
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
8 * Copyright (C) 2001 - 2005 Tensilica Inc.
9 */
11 #ifndef _XTENSA_PCI_H
12 #define _XTENSA_PCI_H
14 #ifdef __KERNEL__
16 /* Can be used to override the logic in pci_scan_bus for skipping
17 * already-configured bus numbers - to be used for buggy BIOSes
18 * or architectures with incomplete PCI setup by the loader
21 #define pcibios_assign_all_busses() 0
23 extern struct pci_controller* pcibios_alloc_controller(void);
25 static inline void pcibios_set_master(struct pci_dev *dev)
27 /* No special bus mastering setup handling */
30 static inline void pcibios_penalize_isa_irq(int irq)
32 /* We don't do dynamic PCI IRQ allocation */
35 /* Assume some values. (We should revise them, if necessary) */
37 #define PCIBIOS_MIN_IO 0x2000
38 #define PCIBIOS_MIN_MEM 0x10000000
40 /* Dynamic DMA mapping stuff.
41 * Xtensa has everything mapped statically like x86.
44 #include <linux/types.h>
45 #include <linux/slab.h>
46 #include <asm/scatterlist.h>
47 #include <linux/string.h>
48 #include <asm/io.h>
50 struct pci_dev;
52 /* The PCI address space does equal the physical memory address space.
53 * The networking and block device layers use this boolean for bounce buffer
54 * decisions.
57 #define PCI_DMA_BUS_IS_PHYS (1)
59 /* Map a range of PCI memory or I/O space for a device into user space */
60 int pci_mmap_page_range(struct pci_dev *pdev, struct vm_area_struct *vma,
61 enum pci_mmap_state mmap_state, int write_combine);
63 /* Tell drivers/pci/proc.c that we have pci_mmap_page_range() */
64 #define HAVE_PCI_MMAP 1
66 #endif /* __KERNEL__ */
68 /* Implement the pci_ DMA API in terms of the generic device dma_ one */
69 #include <asm-generic/pci-dma-compat.h>
71 /* Generic PCI */
72 #include <asm-generic/pci.h>
74 #endif /* _XTENSA_PCI_H */