Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/config.h> |
| 2 | #include <linux/module.h> |
| 3 | #include <linux/smp.h> |
| 4 | #include <linux/user.h> |
| 5 | #include <linux/elfcore.h> |
| 6 | #include <linux/sched.h> |
| 7 | #include <linux/in6.h> |
| 8 | #include <linux/interrupt.h> |
| 9 | #include <linux/smp_lock.h> |
| 10 | #include <linux/vmalloc.h> |
| 11 | #include <linux/pci.h> |
| 12 | #include <linux/irq.h> |
| 13 | |
| 14 | #include <asm/semaphore.h> |
| 15 | #include <asm/processor.h> |
| 16 | #include <asm/uaccess.h> |
| 17 | #include <asm/checksum.h> |
| 18 | #include <asm/io.h> |
| 19 | #include <asm/delay.h> |
| 20 | #include <asm/tlbflush.h> |
| 21 | #include <asm/cacheflush.h> |
| 22 | #include <asm/checksum.h> |
| 23 | |
| 24 | extern void dump_thread(struct pt_regs *, struct user *); |
| 25 | extern int dump_fpu(struct pt_regs *, elf_fpregset_t *); |
| 26 | extern struct hw_interrupt_type no_irq_type; |
| 27 | |
| 28 | EXPORT_SYMBOL(sh_mv); |
| 29 | |
| 30 | /* platform dependent support */ |
| 31 | EXPORT_SYMBOL(dump_thread); |
| 32 | EXPORT_SYMBOL(dump_fpu); |
| 33 | EXPORT_SYMBOL(iounmap); |
| 34 | EXPORT_SYMBOL(enable_irq); |
| 35 | EXPORT_SYMBOL(disable_irq); |
| 36 | EXPORT_SYMBOL(probe_irq_mask); |
| 37 | EXPORT_SYMBOL(kernel_thread); |
| 38 | EXPORT_SYMBOL(disable_irq_nosync); |
| 39 | EXPORT_SYMBOL(irq_desc); |
| 40 | EXPORT_SYMBOL(no_irq_type); |
| 41 | |
| 42 | EXPORT_SYMBOL(strpbrk); |
| 43 | EXPORT_SYMBOL(strstr); |
| 44 | EXPORT_SYMBOL(strlen); |
| 45 | EXPORT_SYMBOL(strnlen); |
| 46 | EXPORT_SYMBOL(strchr); |
| 47 | EXPORT_SYMBOL(strcat); |
| 48 | EXPORT_SYMBOL(strncat); |
| 49 | |
| 50 | /* PCI exports */ |
| 51 | #ifdef CONFIG_PCI |
| 52 | EXPORT_SYMBOL(pci_alloc_consistent); |
| 53 | EXPORT_SYMBOL(pci_free_consistent); |
| 54 | #endif |
| 55 | |
| 56 | /* mem exports */ |
| 57 | EXPORT_SYMBOL(memchr); |
| 58 | EXPORT_SYMBOL(memcpy); |
| 59 | EXPORT_SYMBOL(memcpy_fromio); |
| 60 | EXPORT_SYMBOL(memcpy_toio); |
| 61 | EXPORT_SYMBOL(memset); |
| 62 | EXPORT_SYMBOL(memset_io); |
| 63 | EXPORT_SYMBOL(memmove); |
| 64 | EXPORT_SYMBOL(memcmp); |
| 65 | EXPORT_SYMBOL(memscan); |
| 66 | EXPORT_SYMBOL(__copy_user); |
| 67 | EXPORT_SYMBOL(boot_cpu_data); |
| 68 | |
| 69 | #ifdef CONFIG_MMU |
| 70 | EXPORT_SYMBOL(get_vm_area); |
| 71 | #endif |
| 72 | |
| 73 | /* semaphore exports */ |
| 74 | EXPORT_SYMBOL(__up); |
| 75 | EXPORT_SYMBOL(__down); |
| 76 | EXPORT_SYMBOL(__down_interruptible); |
| 77 | |
| 78 | EXPORT_SYMBOL(__udelay); |
| 79 | EXPORT_SYMBOL(__ndelay); |
| 80 | EXPORT_SYMBOL(__const_udelay); |
| 81 | |
| 82 | EXPORT_SYMBOL(__div64_32); |
| 83 | |
| 84 | #define DECLARE_EXPORT(name) extern void name(void);EXPORT_SYMBOL(name) |
| 85 | |
| 86 | /* These symbols are generated by the compiler itself */ |
| 87 | DECLARE_EXPORT(__udivsi3); |
| 88 | DECLARE_EXPORT(__udivdi3); |
| 89 | DECLARE_EXPORT(__sdivsi3); |
| 90 | DECLARE_EXPORT(__ashrdi3); |
| 91 | DECLARE_EXPORT(__ashldi3); |
| 92 | DECLARE_EXPORT(__lshrdi3); |
| 93 | DECLARE_EXPORT(__movstr); |
| 94 | |
| 95 | EXPORT_SYMBOL(strcpy); |
| 96 | |
| 97 | #ifdef CONFIG_CPU_SH4 |
| 98 | DECLARE_EXPORT(__movstr_i4_even); |
| 99 | DECLARE_EXPORT(__movstr_i4_odd); |
| 100 | DECLARE_EXPORT(__movstrSI12_i4); |
| 101 | |
| 102 | /* needed by some modules */ |
| 103 | EXPORT_SYMBOL(flush_cache_all); |
| 104 | EXPORT_SYMBOL(flush_cache_range); |
| 105 | EXPORT_SYMBOL(flush_dcache_page); |
| 106 | EXPORT_SYMBOL(__flush_purge_region); |
| 107 | #endif |
| 108 | |
| 109 | #if defined(CONFIG_SH7705_CACHE_32KB) |
| 110 | EXPORT_SYMBOL(flush_cache_all); |
| 111 | EXPORT_SYMBOL(flush_cache_range); |
| 112 | EXPORT_SYMBOL(flush_dcache_page); |
| 113 | EXPORT_SYMBOL(__flush_purge_region); |
| 114 | #endif |
| 115 | |
| 116 | EXPORT_SYMBOL(flush_tlb_page); |
| 117 | EXPORT_SYMBOL(__down_trylock); |
| 118 | |
| 119 | #ifdef CONFIG_SMP |
| 120 | EXPORT_SYMBOL(synchronize_irq); |
| 121 | #endif |
| 122 | |
| 123 | EXPORT_SYMBOL(csum_partial); |
| 124 | EXPORT_SYMBOL(csum_ipv6_magic); |
| 125 | EXPORT_SYMBOL(consistent_sync); |
| 126 | EXPORT_SYMBOL(clear_page); |