summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sparc/shared/include/grpci.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/sparc/shared/include/grpci.h')
-rw-r--r--c/src/lib/libbsp/sparc/shared/include/grpci.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/c/src/lib/libbsp/sparc/shared/include/grpci.h b/c/src/lib/libbsp/sparc/shared/include/grpci.h
deleted file mode 100644
index 2321706200..0000000000
--- a/c/src/lib/libbsp/sparc/shared/include/grpci.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef __GRPCI_H__
-#define __GRPCI_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/* Register the GRPCI driver to the Driver Manager */
-extern void grpci_register_drv(void);
-
-/* Transfer data using GRPCI DMA unit from AMBA to PCI space. Blocks until
- * operation completes.
- */
-int grpci_dma_to_pci(
- unsigned int ahb_addr,
- unsigned int pci_addr,
- unsigned int len);
-
-/* Transfer data using GRPCI DMA unit from PCI to AMBA space. Blocks until
- * operation completes.
- */
-int grpci_dma_from_pci(
- unsigned int ahb_addr,
- unsigned int pci_addr,
- unsigned int len);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif