blob: 6bc7b52b4aa0a05192fafcc5a031928bd319dc1a [file] [log] [blame]
Chris Metcalf867e3592010-05-28 23:09:12 -04001/*
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>
21EXPORT_SYMBOL(__get_user_1);
22EXPORT_SYMBOL(__get_user_2);
23EXPORT_SYMBOL(__get_user_4);
Chris Metcalf0707ad32010-06-25 17:04:17 -040024EXPORT_SYMBOL(__get_user_8);
Chris Metcalf867e3592010-05-28 23:09:12 -040025EXPORT_SYMBOL(__put_user_1);
26EXPORT_SYMBOL(__put_user_2);
27EXPORT_SYMBOL(__put_user_4);
28EXPORT_SYMBOL(__put_user_8);
29EXPORT_SYMBOL(strnlen_user_asm);
30EXPORT_SYMBOL(strncpy_from_user_asm);
31EXPORT_SYMBOL(clear_user_asm);
32
33/* arch/tile/kernel/entry.S */
34#include <linux/kernel.h>
35#include <asm/processor.h>
36EXPORT_SYMBOL(current_text_addr);
37EXPORT_SYMBOL(dump_stack);
38
39/* arch/tile/lib/__memcpy.S */
40/* NOTE: on TILE64, these symbols appear in arch/tile/lib/memcpy_tile64.c */
41EXPORT_SYMBOL(memcpy);
42EXPORT_SYMBOL(__copy_to_user_inatomic);
43EXPORT_SYMBOL(__copy_from_user_inatomic);
44EXPORT_SYMBOL(__copy_from_user_zeroing);
45
46/* hypervisor glue */
47#include <hv/hypervisor.h>
48EXPORT_SYMBOL(hv_dev_open);
49EXPORT_SYMBOL(hv_dev_pread);
50EXPORT_SYMBOL(hv_dev_pwrite);
51EXPORT_SYMBOL(hv_dev_close);
52
53/* -ltile-cc */
54uint32_t __udivsi3(uint32_t dividend, uint32_t divisor);
55EXPORT_SYMBOL(__udivsi3);
56int32_t __divsi3(int32_t dividend, int32_t divisor);
57EXPORT_SYMBOL(__divsi3);
58uint64_t __udivdi3(uint64_t dividend, uint64_t divisor);
59EXPORT_SYMBOL(__udivdi3);
60int64_t __divdi3(int64_t dividend, int64_t divisor);
61EXPORT_SYMBOL(__divdi3);
62uint32_t __umodsi3(uint32_t dividend, uint32_t divisor);
63EXPORT_SYMBOL(__umodsi3);
64int32_t __modsi3(int32_t dividend, int32_t divisor);
65EXPORT_SYMBOL(__modsi3);
66uint64_t __umoddi3(uint64_t dividend, uint64_t divisor);
67EXPORT_SYMBOL(__umoddi3);
68int64_t __moddi3(int64_t dividend, int64_t divisor);
69EXPORT_SYMBOL(__moddi3);
70#ifndef __tilegx__
71uint64_t __ll_mul(uint64_t n0, uint64_t n1);
72EXPORT_SYMBOL(__ll_mul);
73#endif
74#ifndef __tilegx__
75int64_t __muldi3(int64_t, int64_t);
76EXPORT_SYMBOL(__muldi3);
77uint64_t __lshrdi3(uint64_t, unsigned int);
78EXPORT_SYMBOL(__lshrdi3);
79#endif