[BACK]Return to pci.h CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / arch / m68knommu / include / asm

File: [Development] / linux-2.6-xfs / arch / m68knommu / include / asm / pci.h (download)

Revision 1.1, Fri Oct 3 17:46:45 2008 UTC (9 years ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD

Merge up to 2.6.27-rc8
Merge of 2.6.x-xfs-melb:linux:32254b by kenmcd.

#ifndef M68KNOMMU_PCI_H
#define	M68KNOMMU_PCI_H

#include <asm-m68k/pci.h>

#ifdef CONFIG_COMEMPCI
/*
 *	These are pretty much arbitary with the CoMEM implementation.
 *	We have the whole address space to ourselves.
 */
#define PCIBIOS_MIN_IO		0x100
#define PCIBIOS_MIN_MEM		0x00010000

#define pcibios_scan_all_fns(a, b)	0

/*
 * Return whether the given PCI device DMA address mask can
 * be supported properly.  For example, if your device can
 * only drive the low 24-bits during PCI bus mastering, then
 * you would pass 0x00ffffff as the mask to this function.
 */
static inline int pci_dma_supported(struct pci_dev *hwdev, u64 mask)
{
	return 1;
}

#endif /* CONFIG_COMEMPCI */

#endif /* M68KNOMMU_PCI_H */