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/user.h> |
| 4 | #include <linux/elfcore.h> |
| 5 | #include <linux/sched.h> |
| 6 | #include <linux/in6.h> |
| 7 | #include <linux/interrupt.h> |
| 8 | #include <linux/smp_lock.h> |
| 9 | #include <linux/pm.h> |
| 10 | #include <linux/kernel.h> |
| 11 | #include <linux/string.h> |
| 12 | #include <linux/tty.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/irq.h> |
| 21 | #include <asm/pgtable.h> |
| 22 | #include <asm/fasttimer.h> |
| 23 | |
| 24 | extern void dump_thread(struct pt_regs *, struct user *); |
| 25 | extern unsigned long get_cmos_time(void); |
| 26 | extern void __Udiv(void); |
| 27 | extern void __Umod(void); |
| 28 | extern void __Div(void); |
| 29 | extern void __Mod(void); |
| 30 | extern void __ashrdi3(void); |
| 31 | extern void iounmap(void *addr); |
| 32 | |
| 33 | /* Platform dependent support */ |
| 34 | EXPORT_SYMBOL(dump_thread); |
| 35 | EXPORT_SYMBOL(enable_irq); |
| 36 | EXPORT_SYMBOL(disable_irq); |
| 37 | EXPORT_SYMBOL(kernel_thread); |
| 38 | EXPORT_SYMBOL(get_cmos_time); |
| 39 | EXPORT_SYMBOL(loops_per_usec); |
| 40 | |
| 41 | /* String functions */ |
| 42 | EXPORT_SYMBOL(memcmp); |
| 43 | EXPORT_SYMBOL(memmove); |
| 44 | EXPORT_SYMBOL(strpbrk); |
| 45 | EXPORT_SYMBOL(strstr); |
| 46 | EXPORT_SYMBOL(strcpy); |
| 47 | EXPORT_SYMBOL(strchr); |
| 48 | EXPORT_SYMBOL(strcmp); |
| 49 | EXPORT_SYMBOL(strlen); |
| 50 | EXPORT_SYMBOL(strcat); |
| 51 | EXPORT_SYMBOL(strncat); |
| 52 | EXPORT_SYMBOL(strncmp); |
| 53 | EXPORT_SYMBOL(strncpy); |
| 54 | |
| 55 | /* Math functions */ |
| 56 | EXPORT_SYMBOL(__Udiv); |
| 57 | EXPORT_SYMBOL(__Umod); |
| 58 | EXPORT_SYMBOL(__Div); |
| 59 | EXPORT_SYMBOL(__Mod); |
| 60 | EXPORT_SYMBOL(__ashrdi3); |
| 61 | |
| 62 | /* Memory functions */ |
| 63 | EXPORT_SYMBOL(__ioremap); |
| 64 | EXPORT_SYMBOL(iounmap); |
| 65 | |
| 66 | /* Semaphore functions */ |
| 67 | EXPORT_SYMBOL(__up); |
| 68 | EXPORT_SYMBOL(__down); |
| 69 | EXPORT_SYMBOL(__down_interruptible); |
| 70 | EXPORT_SYMBOL(__down_trylock); |
| 71 | |
| 72 | /* Export shadow registers for the CPU I/O pins */ |
| 73 | EXPORT_SYMBOL(genconfig_shadow); |
| 74 | EXPORT_SYMBOL(port_pa_data_shadow); |
| 75 | EXPORT_SYMBOL(port_pa_dir_shadow); |
| 76 | EXPORT_SYMBOL(port_pb_data_shadow); |
| 77 | EXPORT_SYMBOL(port_pb_dir_shadow); |
| 78 | EXPORT_SYMBOL(port_pb_config_shadow); |
| 79 | EXPORT_SYMBOL(port_g_data_shadow); |
| 80 | |
| 81 | /* Userspace access functions */ |
| 82 | EXPORT_SYMBOL(__copy_user_zeroing); |
| 83 | EXPORT_SYMBOL(__copy_user); |
| 84 | |
| 85 | /* Cache flush functions */ |
| 86 | EXPORT_SYMBOL(flush_etrax_cache); |
| 87 | EXPORT_SYMBOL(prepare_rx_descriptor); |
| 88 | |
| 89 | #undef memcpy |
| 90 | #undef memset |
| 91 | extern void * memset(void *, int, __kernel_size_t); |
| 92 | extern void * memcpy(void *, const void *, __kernel_size_t); |
| 93 | EXPORT_SYMBOL(memcpy); |
| 94 | EXPORT_SYMBOL(memset); |
| 95 | |
| 96 | #ifdef CONFIG_ETRAX_FAST_TIMER |
| 97 | /* Fast timer functions */ |
| 98 | EXPORT_SYMBOL(fast_timer_list); |
| 99 | EXPORT_SYMBOL(start_one_shot_timer); |
| 100 | EXPORT_SYMBOL(del_fast_timer); |
| 101 | EXPORT_SYMBOL(schedule_usleep); |
| 102 | #endif |
| 103 | |