]>
Commit | Line | Data |
---|---|---|
c83bf6a2 WD |
1 | #ifndef __EXPORTS_H__ |
2 | #define __EXPORTS_H__ | |
27b207fd WD |
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); | |
f5300ab2 WD |
21 | void vprintf(const char *, va_list); |
22 | void do_reset (void); | |
d7c2a02d DZ |
23 | unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base); |
24 | char *getenv (char *name); | |
75678c80 | 25 | int setenv (char *varname, char *varvalue); |
8092fef4 MK |
26 | long simple_strtol(const char *cp,char **endp,unsigned int base); |
27 | int strcmp(const char * cs,const char * ct); | |
c74b2108 SK |
28 | #ifdef CONFIG_HAS_UID |
29 | void forceenv (char *varname, char *varvalue); | |
30 | #endif | |
639221c7 | 31 | #if defined(CONFIG_CMD_I2C) |
4f7cb08e WD |
32 | int i2c_write (uchar, uint, int , uchar* , int); |
33 | int i2c_read (uchar, uint, int , uchar* , int); | |
068b60a0 | 34 | #endif |
27b207fd WD |
35 | |
36 | void app_startup(char **); | |
37 | ||
38 | #endif /* ifndef __ASSEMBLY__ */ | |
39 | ||
40 | enum { | |
41 | #define EXPORT_FUNC(x) XF_ ## x , | |
42 | #include <_exports.h> | |
43 | #undef EXPORT_FUNC | |
44 | ||
45 | XF_MAX | |
46 | }; | |
47 | ||
8092fef4 | 48 | #define XF_VERSION 4 |
27b207fd | 49 | |
77846748 WD |
50 | #if defined(CONFIG_I386) |
51 | extern gd_t *global_data; | |
52 | #endif | |
53 | ||
c83bf6a2 | 54 | #endif /* __EXPORTS_H__ */ |