NetBSD/sys/arch/pmppc/include/bus.h
augustss 1331023854 Add some files for the Artesyn PMPPC board. This is a PowerPC based
Mezzanine PCI board.
NOTE: this is not yet all the files needed for the port.
2002-05-30 08:51:06 +00:00

21 lines
461 B
C

/* $NetBSD: bus.h,v 1.1 2002/05/30 08:51:14 augustss Exp $ */
#ifndef _PMPPC_BUS_H_
#define _PMPPC_BUS_H_
#include <powerpc/bus.h>
/*
* Address conversion as seen from a PCI master.
*/
#define PHYS_TO_PCI_MEM(x) (x)
#define PCI_MEM_TO_PHYS(x) (x)
extern const struct powerpc_bus_space pmppc_mem_tag;
extern const struct powerpc_bus_space pmppc_pci_io_tag;
void pmppc_bus_space_init(void);
void pmppc_bus_space_mallocok(void);
#endif /* _PMPPC_BUS_H_ */