1 #include <linux/module.h>
3 #include <linux/user.h>
4 #include <linux/elfcore.h>
5 #include <linux/sched.h>
7 #include <linux/interrupt.h>
8 #include <linux/smp_lock.h>
9 #include <linux/vmalloc.h>
10 #include <linux/pci.h>
11 #include <linux/irq.h>
13 #include <asm/semaphore.h>
14 #include <asm/processor.h>
15 #include <asm/uaccess.h>
16 #include <asm/checksum.h>
18 #include <asm/delay.h>
19 #include <asm/tlbflush.h>
20 #include <asm/cacheflush.h>
22 extern int dump_fpu(struct pt_regs
*, elf_fpregset_t
*);
23 extern struct hw_interrupt_type no_irq_type
;
27 /* platform dependent support */
28 EXPORT_SYMBOL(dump_fpu
);
29 EXPORT_SYMBOL(kernel_thread
);
30 EXPORT_SYMBOL(irq_desc
);
31 EXPORT_SYMBOL(no_irq_type
);
33 EXPORT_SYMBOL(strlen
);
37 EXPORT_SYMBOL(pci_alloc_consistent
);
38 EXPORT_SYMBOL(pci_free_consistent
);
42 EXPORT_SYMBOL(memchr
);
43 EXPORT_SYMBOL(memcpy
);
44 EXPORT_SYMBOL(memset
);
45 EXPORT_SYMBOL(memmove
);
46 EXPORT_SYMBOL(__copy_user
);
47 EXPORT_SYMBOL(boot_cpu_data
);
50 EXPORT_SYMBOL(get_vm_area
);
53 /* semaphore exports */
55 EXPORT_SYMBOL(__down
);
56 EXPORT_SYMBOL(__down_interruptible
);
58 EXPORT_SYMBOL(__udelay
);
59 EXPORT_SYMBOL(__ndelay
);
60 EXPORT_SYMBOL(__const_udelay
);
62 EXPORT_SYMBOL(__div64_32
);
64 #define DECLARE_EXPORT(name) extern void name(void);EXPORT_SYMBOL(name)
66 /* These symbols are generated by the compiler itself */
67 DECLARE_EXPORT(__udivsi3
);
68 DECLARE_EXPORT(__udivdi3
);
69 DECLARE_EXPORT(__sdivsi3
);
70 DECLARE_EXPORT(__ashrdi3
);
71 DECLARE_EXPORT(__ashldi3
);
72 DECLARE_EXPORT(__lshrdi3
);
73 DECLARE_EXPORT(__movstrSI16
);
75 DECLARE_EXPORT(__movmem
);
77 DECLARE_EXPORT(__movstr
);
82 DECLARE_EXPORT(__movmem_i4_even
);
83 DECLARE_EXPORT(__movmem_i4_odd
);
84 DECLARE_EXPORT(__movmemSI12_i4
);
86 DECLARE_EXPORT(__movstr_i4_even
);
87 DECLARE_EXPORT(__movstr_i4_odd
);
88 DECLARE_EXPORT(__movstrSI12_i4
);
89 #endif /* __GNUC__ == 4 */
92 #if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
93 /* needed by some modules */
94 EXPORT_SYMBOL(flush_cache_all
);
95 EXPORT_SYMBOL(flush_cache_range
);
96 EXPORT_SYMBOL(flush_dcache_page
);
97 EXPORT_SYMBOL(__flush_purge_region
);
100 #if defined(CONFIG_MMU) && (defined(CONFIG_CPU_SH4) || \
101 defined(CONFIG_SH7705_CACHE_32KB))
102 EXPORT_SYMBOL(clear_user_page
);
105 EXPORT_SYMBOL(__down_trylock
);
108 EXPORT_SYMBOL(synchronize_irq
);
111 EXPORT_SYMBOL(csum_partial
);
113 EXPORT_SYMBOL(csum_ipv6_magic
);
115 EXPORT_SYMBOL(clear_page
);