D-Link DIR-505 support, fixes in Makefile
[oweals/u-boot_mod.git] / u-boot / include / exports.h
1 #ifndef __EXPORTS_H__
2 #define __EXPORTS_H__
3
4 #ifndef __ASSEMBLY__
5
6 #include <common.h>
7
8 /* These are declarations of exported functions available in C code */
9 unsigned long   get_version(void);
10 int                             getc(void);
11 int                             tstc(void);
12 void                    putc(const char);
13 void                    puts(const char*);
14 void                    printf(const char* fmt, ...);
15 void                    install_hdlr(int, interrupt_handler_t*, void*);
16 void                    free_hdlr(int);
17 void                    *malloc(size_t);
18 void                    free(void*);
19 void                    udelay(unsigned long);
20 unsigned long   get_timer(unsigned long);
21 void                    do_reset(void);
22 void                    app_startup(char **);
23
24 #endif    /* ifndef __ASSEMBLY__ */
25
26 enum {
27 #define EXPORT_FUNC(x) XF_ ## x ,
28 EXPORT_FUNC(get_version)
29 EXPORT_FUNC(getc)
30 EXPORT_FUNC(tstc)
31 EXPORT_FUNC(putc)
32 EXPORT_FUNC(puts)
33 EXPORT_FUNC(printf)
34 EXPORT_FUNC(install_hdlr)
35 EXPORT_FUNC(free_hdlr)
36 EXPORT_FUNC(malloc)
37 EXPORT_FUNC(free)
38 EXPORT_FUNC(udelay)
39 EXPORT_FUNC(get_timer)
40 EXPORT_FUNC(do_reset)
41 #undef EXPORT_FUNC
42 XF_MAX
43 };
44
45 #define XF_VERSION      2
46
47 #if defined(CONFIG_I386)
48 extern gd_t *global_data;
49 #endif
50
51 #endif  /* __EXPORTS_H__ */