diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /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.h | 32 |
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 | |||
3 | extern ia64_mv_send_ipi_t ia64_send_ipi; | ||
4 | extern ia64_mv_global_tlb_purge_t ia64_global_tlb_purge; | ||
5 | extern ia64_mv_local_vector_to_irq __ia64_local_vector_to_irq; | ||
6 | extern ia64_mv_pci_get_legacy_mem_t ia64_pci_get_legacy_mem; | ||
7 | extern ia64_mv_pci_legacy_read_t ia64_pci_legacy_read; | ||
8 | extern ia64_mv_pci_legacy_write_t ia64_pci_legacy_write; | ||
9 | |||
10 | extern ia64_mv_inb_t __ia64_inb; | ||
11 | extern ia64_mv_inw_t __ia64_inw; | ||
12 | extern ia64_mv_inl_t __ia64_inl; | ||
13 | extern ia64_mv_outb_t __ia64_outb; | ||
14 | extern ia64_mv_outw_t __ia64_outw; | ||
15 | extern ia64_mv_outl_t __ia64_outl; | ||
16 | extern ia64_mv_mmiowb_t __ia64_mmiowb; | ||
17 | extern ia64_mv_readb_t __ia64_readb; | ||
18 | extern ia64_mv_readw_t __ia64_readw; | ||
19 | extern ia64_mv_readl_t __ia64_readl; | ||
20 | extern ia64_mv_readq_t __ia64_readq; | ||
21 | extern ia64_mv_readb_t __ia64_readb_relaxed; | ||
22 | extern ia64_mv_readw_t __ia64_readw_relaxed; | ||
23 | extern ia64_mv_readl_t __ia64_readl_relaxed; | ||
24 | extern 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 | |||
32 | MACHVEC_DEFINE(MACHVEC_PLATFORM_NAME) | ||