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/vmalloc.h>
10 #include <linux/irq.h>
11 #include <asm/sections.h>
12 #include <asm/processor.h>
13 #include <asm/uaccess.h>
14 #include <asm/checksum.h>
16 #include <asm/delay.h>
17 #include <asm/tlbflush.h>
18 #include <asm/cacheflush.h>
19 #include <asm/ftrace.h>
21 extern int dump_fpu(struct pt_regs *, elf_fpregset_t *);
22 extern struct hw_interrupt_type no_irq_type;
24 /* platform dependent support */
25 EXPORT_SYMBOL(dump_fpu);
26 EXPORT_SYMBOL(kernel_thread);
27 EXPORT_SYMBOL(irq_desc);
28 EXPORT_SYMBOL(no_irq_type);
30 EXPORT_SYMBOL(strlen);
34 EXPORT_SYMBOL(pci_alloc_consistent);
35 EXPORT_SYMBOL(pci_free_consistent);
39 EXPORT_SYMBOL(memchr);
40 EXPORT_SYMBOL(memcpy);
41 EXPORT_SYMBOL(memset);
42 EXPORT_SYMBOL(memmove);
43 EXPORT_SYMBOL(__copy_user);
46 EXPORT_SYMBOL(get_vm_area);
49 EXPORT_SYMBOL(__udelay);
50 EXPORT_SYMBOL(__ndelay);
51 EXPORT_SYMBOL(__const_udelay);
53 #define DECLARE_EXPORT(name) extern void name(void);EXPORT_SYMBOL(name)
55 /* These symbols are generated by the compiler itself */
56 DECLARE_EXPORT(__udivsi3);
57 DECLARE_EXPORT(__sdivsi3);
58 DECLARE_EXPORT(__ashrsi3);
59 DECLARE_EXPORT(__ashlsi3);
60 DECLARE_EXPORT(__ashrdi3);
61 DECLARE_EXPORT(__ashldi3);
62 DECLARE_EXPORT(__ashiftrt_r4_6);
63 DECLARE_EXPORT(__ashiftrt_r4_7);
64 DECLARE_EXPORT(__ashiftrt_r4_8);
65 DECLARE_EXPORT(__ashiftrt_r4_9);
66 DECLARE_EXPORT(__ashiftrt_r4_10);
67 DECLARE_EXPORT(__ashiftrt_r4_11);
68 DECLARE_EXPORT(__ashiftrt_r4_12);
69 DECLARE_EXPORT(__ashiftrt_r4_13);
70 DECLARE_EXPORT(__ashiftrt_r4_14);
71 DECLARE_EXPORT(__ashiftrt_r4_15);
72 DECLARE_EXPORT(__ashiftrt_r4_20);
73 DECLARE_EXPORT(__ashiftrt_r4_21);
74 DECLARE_EXPORT(__ashiftrt_r4_22);
75 DECLARE_EXPORT(__ashiftrt_r4_23);
76 DECLARE_EXPORT(__ashiftrt_r4_24);
77 DECLARE_EXPORT(__ashiftrt_r4_27);
78 DECLARE_EXPORT(__ashiftrt_r4_30);
79 DECLARE_EXPORT(__lshrsi3);
80 DECLARE_EXPORT(__lshrdi3);
81 DECLARE_EXPORT(__movstrSI8);
82 DECLARE_EXPORT(__movstrSI12);
83 DECLARE_EXPORT(__movstrSI16);
84 DECLARE_EXPORT(__movstrSI20);
85 DECLARE_EXPORT(__movstrSI24);
86 DECLARE_EXPORT(__movstrSI28);
87 DECLARE_EXPORT(__movstrSI32);
88 DECLARE_EXPORT(__movstrSI36);
89 DECLARE_EXPORT(__movstrSI40);
90 DECLARE_EXPORT(__movstrSI44);
91 DECLARE_EXPORT(__movstrSI48);
92 DECLARE_EXPORT(__movstrSI52);
93 DECLARE_EXPORT(__movstrSI56);
94 DECLARE_EXPORT(__movstrSI60);
96 DECLARE_EXPORT(__movmem);
98 DECLARE_EXPORT(__movstr);
102 DECLARE_EXPORT(__movmem_i4_even);
103 DECLARE_EXPORT(__movmem_i4_odd);
104 DECLARE_EXPORT(__movmemSI12_i4);
106 #if (__GNUC_MINOR__ >= 2 || defined(__GNUC_STM_RELEASE__))
108 * GCC >= 4.2 emits these for division, as do GCC 4.1.x versions of the ST
109 * compiler which include backported patches.
111 DECLARE_EXPORT(__udiv_qrnnd_16);
112 #if !defined(CONFIG_CPU_SH2)
113 DECLARE_EXPORT(__sdivsi3_i4i);
114 DECLARE_EXPORT(__udivsi3_i4i);
118 DECLARE_EXPORT(__movstr_i4_even);
119 DECLARE_EXPORT(__movstr_i4_odd);
120 DECLARE_EXPORT(__movstrSI12_i4);
121 #endif /* __GNUC__ == 4 */
123 #if !defined(CONFIG_CACHE_OFF) && (defined(CONFIG_CPU_SH4) || \
124 defined(CONFIG_SH7705_CACHE_32KB))
125 /* needed by some modules */
126 EXPORT_SYMBOL(flush_cache_all);
127 EXPORT_SYMBOL(flush_cache_range);
128 EXPORT_SYMBOL(flush_dcache_page);
129 EXPORT_SYMBOL(__flush_purge_region);
132 #if !defined(CONFIG_CACHE_OFF) && defined(CONFIG_MMU) && \
133 (defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB))
134 EXPORT_SYMBOL(clear_user_page);
138 EXPORT_SYMBOL(mcount);
140 EXPORT_SYMBOL(csum_partial);
141 EXPORT_SYMBOL(csum_partial_copy_generic);
143 EXPORT_SYMBOL(csum_ipv6_magic);
145 EXPORT_SYMBOL(clear_page);
146 EXPORT_SYMBOL(copy_page);
147 EXPORT_SYMBOL(__clear_user);
148 EXPORT_SYMBOL(_ebss);
149 EXPORT_SYMBOL(empty_zero_page);