diff options
Diffstat (limited to 'arch/tile/lib/exports.c')
-rw-r--r-- | arch/tile/lib/exports.c | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/arch/tile/lib/exports.c b/arch/tile/lib/exports.c new file mode 100644 index 000000000000..af8e70e2a0ce --- /dev/null +++ b/arch/tile/lib/exports.c | |||
@@ -0,0 +1,78 @@ | |||
1 | /* | ||
2 | * Copyright 2010 Tilera Corporation. All Rights Reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation, version 2. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, but | ||
9 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or | ||
11 | * NON INFRINGEMENT. See the GNU General Public License for | ||
12 | * more details. | ||
13 | * | ||
14 | * Exports from assembler code and from libtile-cc. | ||
15 | */ | ||
16 | |||
17 | #include <linux/module.h> | ||
18 | |||
19 | /* arch/tile/lib/usercopy.S */ | ||
20 | #include <linux/uaccess.h> | ||
21 | EXPORT_SYMBOL(__get_user_1); | ||
22 | EXPORT_SYMBOL(__get_user_2); | ||
23 | EXPORT_SYMBOL(__get_user_4); | ||
24 | EXPORT_SYMBOL(__put_user_1); | ||
25 | EXPORT_SYMBOL(__put_user_2); | ||
26 | EXPORT_SYMBOL(__put_user_4); | ||
27 | EXPORT_SYMBOL(__put_user_8); | ||
28 | EXPORT_SYMBOL(strnlen_user_asm); | ||
29 | EXPORT_SYMBOL(strncpy_from_user_asm); | ||
30 | EXPORT_SYMBOL(clear_user_asm); | ||
31 | |||
32 | /* arch/tile/kernel/entry.S */ | ||
33 | #include <linux/kernel.h> | ||
34 | #include <asm/processor.h> | ||
35 | EXPORT_SYMBOL(current_text_addr); | ||
36 | EXPORT_SYMBOL(dump_stack); | ||
37 | |||
38 | /* arch/tile/lib/__memcpy.S */ | ||
39 | /* NOTE: on TILE64, these symbols appear in arch/tile/lib/memcpy_tile64.c */ | ||
40 | EXPORT_SYMBOL(memcpy); | ||
41 | EXPORT_SYMBOL(__copy_to_user_inatomic); | ||
42 | EXPORT_SYMBOL(__copy_from_user_inatomic); | ||
43 | EXPORT_SYMBOL(__copy_from_user_zeroing); | ||
44 | |||
45 | /* hypervisor glue */ | ||
46 | #include <hv/hypervisor.h> | ||
47 | EXPORT_SYMBOL(hv_dev_open); | ||
48 | EXPORT_SYMBOL(hv_dev_pread); | ||
49 | EXPORT_SYMBOL(hv_dev_pwrite); | ||
50 | EXPORT_SYMBOL(hv_dev_close); | ||
51 | |||
52 | /* -ltile-cc */ | ||
53 | uint32_t __udivsi3(uint32_t dividend, uint32_t divisor); | ||
54 | EXPORT_SYMBOL(__udivsi3); | ||
55 | int32_t __divsi3(int32_t dividend, int32_t divisor); | ||
56 | EXPORT_SYMBOL(__divsi3); | ||
57 | uint64_t __udivdi3(uint64_t dividend, uint64_t divisor); | ||
58 | EXPORT_SYMBOL(__udivdi3); | ||
59 | int64_t __divdi3(int64_t dividend, int64_t divisor); | ||
60 | EXPORT_SYMBOL(__divdi3); | ||
61 | uint32_t __umodsi3(uint32_t dividend, uint32_t divisor); | ||
62 | EXPORT_SYMBOL(__umodsi3); | ||
63 | int32_t __modsi3(int32_t dividend, int32_t divisor); | ||
64 | EXPORT_SYMBOL(__modsi3); | ||
65 | uint64_t __umoddi3(uint64_t dividend, uint64_t divisor); | ||
66 | EXPORT_SYMBOL(__umoddi3); | ||
67 | int64_t __moddi3(int64_t dividend, int64_t divisor); | ||
68 | EXPORT_SYMBOL(__moddi3); | ||
69 | #ifndef __tilegx__ | ||
70 | uint64_t __ll_mul(uint64_t n0, uint64_t n1); | ||
71 | EXPORT_SYMBOL(__ll_mul); | ||
72 | #endif | ||
73 | #ifndef __tilegx__ | ||
74 | int64_t __muldi3(int64_t, int64_t); | ||
75 | EXPORT_SYMBOL(__muldi3); | ||
76 | uint64_t __lshrdi3(uint64_t, unsigned int); | ||
77 | EXPORT_SYMBOL(__lshrdi3); | ||
78 | #endif | ||