1 /* 2 * linux/arch/unicore32/kernel/ksyms.c 3 * 4 * Code specific to PKUnity SoC and UniCore ISA 5 * 6 * Copyright (C) 2001-2010 GUAN Xue-tao 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License version 2 as 10 * published by the Free Software Foundation. 11 */ 12 #include <linux/module.h> 13 #include <linux/sched.h> 14 #include <linux/string.h> 15 #include <linux/cryptohash.h> 16 #include <linux/delay.h> 17 #include <linux/in6.h> 18 #include <linux/syscalls.h> 19 #include <linux/uaccess.h> 20 #include <linux/io.h> 21 22 #include <asm/checksum.h> 23 #include <asm/system.h> 24 25 #include "ksyms.h" 26 27 EXPORT_SYMBOL(find_next_zero_bit); 28 EXPORT_SYMBOL(find_next_bit); 29 30 EXPORT_SYMBOL(__backtrace); 31 32 /* platform dependent support */ 33 EXPORT_SYMBOL(__udelay); 34 EXPORT_SYMBOL(__const_udelay); 35 36 /* networking */ 37 EXPORT_SYMBOL(csum_partial); 38 EXPORT_SYMBOL(csum_partial_copy_from_user); 39 EXPORT_SYMBOL(csum_partial_copy_nocheck); 40 EXPORT_SYMBOL(__csum_ipv6_magic); 41 42 /* io */ 43 #ifndef __raw_readsb 44 EXPORT_SYMBOL(__raw_readsb); 45 #endif 46 #ifndef __raw_readsw 47 EXPORT_SYMBOL(__raw_readsw); 48 #endif 49 #ifndef __raw_readsl 50 EXPORT_SYMBOL(__raw_readsl); 51 #endif 52 #ifndef __raw_writesb 53 EXPORT_SYMBOL(__raw_writesb); 54 #endif 55 #ifndef __raw_writesw 56 EXPORT_SYMBOL(__raw_writesw); 57 #endif 58 #ifndef __raw_writesl 59 EXPORT_SYMBOL(__raw_writesl); 60 #endif 61 62 /* string / mem functions */ 63 EXPORT_SYMBOL(strchr); 64 EXPORT_SYMBOL(strrchr); 65 EXPORT_SYMBOL(memset); 66 EXPORT_SYMBOL(memcpy); 67 EXPORT_SYMBOL(memmove); 68 EXPORT_SYMBOL(memchr); 69 70 /* user mem (segment) */ 71 EXPORT_SYMBOL(__strnlen_user); 72 EXPORT_SYMBOL(__strncpy_from_user); 73 74 EXPORT_SYMBOL(copy_page); 75 76 EXPORT_SYMBOL(__copy_from_user); 77 EXPORT_SYMBOL(__copy_to_user); 78 EXPORT_SYMBOL(__clear_user); 79 80 EXPORT_SYMBOL(__get_user_1); 81 EXPORT_SYMBOL(__get_user_2); 82 EXPORT_SYMBOL(__get_user_4); 83 84 EXPORT_SYMBOL(__put_user_1); 85 EXPORT_SYMBOL(__put_user_2); 86 EXPORT_SYMBOL(__put_user_4); 87 EXPORT_SYMBOL(__put_user_8); 88 89 EXPORT_SYMBOL(__ashldi3); 90 EXPORT_SYMBOL(__ashrdi3); 91 EXPORT_SYMBOL(__divsi3); 92 EXPORT_SYMBOL(__lshrdi3); 93 EXPORT_SYMBOL(__modsi3); 94 EXPORT_SYMBOL(__muldi3); 95 EXPORT_SYMBOL(__ucmpdi2); 96 EXPORT_SYMBOL(__udivsi3); 97 EXPORT_SYMBOL(__umodsi3); 98 EXPORT_SYMBOL(__bswapsi2); 99 100