aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-ia64/machvec_init.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-ia64/machvec_init.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'include/asm-ia64/machvec_init.h')
-rw-r--r--include/asm-ia64/machvec_init.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/asm-ia64/machvec_init.h b/include/asm-ia64/machvec_init.h
new file mode 100644
index 000000000000..2d36f6840f0b
--- /dev/null
+++ b/include/asm-ia64/machvec_init.h
@@ -0,0 +1,32 @@
1#include <asm/machvec.h>
2
3extern ia64_mv_send_ipi_t ia64_send_ipi;
4extern ia64_mv_global_tlb_purge_t ia64_global_tlb_purge;
5extern ia64_mv_local_vector_to_irq __ia64_local_vector_to_irq;
6extern ia64_mv_pci_get_legacy_mem_t ia64_pci_get_legacy_mem;
7extern ia64_mv_pci_legacy_read_t ia64_pci_legacy_read;
8extern ia64_mv_pci_legacy_write_t ia64_pci_legacy_write;
9
10extern ia64_mv_inb_t __ia64_inb;
11extern ia64_mv_inw_t __ia64_inw;
12extern ia64_mv_inl_t __ia64_inl;
13extern ia64_mv_outb_t __ia64_outb;
14extern ia64_mv_outw_t __ia64_outw;
15extern ia64_mv_outl_t __ia64_outl;
16extern ia64_mv_mmiowb_t __ia64_mmiowb;
17extern ia64_mv_readb_t __ia64_readb;
18extern ia64_mv_readw_t __ia64_readw;
19extern ia64_mv_readl_t __ia64_readl;
20extern ia64_mv_readq_t __ia64_readq;
21extern ia64_mv_readb_t __ia64_readb_relaxed;
22extern ia64_mv_readw_t __ia64_readw_relaxed;
23extern ia64_mv_readl_t __ia64_readl_relaxed;
24extern ia64_mv_readq_t __ia64_readq_relaxed;
25
26#define MACHVEC_HELPER(name) \
27 struct ia64_machine_vector machvec_##name __attribute__ ((unused, __section__ (".machvec"))) \
28 = MACHVEC_INIT(name);
29
30#define MACHVEC_DEFINE(name) MACHVEC_HELPER(name)
31
32MACHVEC_DEFINE(MACHVEC_PLATFORM_NAME)