]>
Commit | Line | Data |
---|---|---|
c83bf6a2 WD |
1 | #ifndef __EXPORTS_H__ |
2 | #define __EXPORTS_H__ | |
27b207fd WD |
3 | |
4 | #ifndef __ASSEMBLY__ | |
5 | ||
49cad547 MD |
6 | struct spi_slave; |
7 | ||
27b207fd WD |
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*); | |
d9c27253 | 14 | int printf(const char* fmt, ...); |
49cad547 | 15 | void install_hdlr(int, interrupt_handler_t, void*); |
27b207fd WD |
16 | void free_hdlr(int); |
17 | void *malloc(size_t); | |
90594919 | 18 | #ifndef CONFIG_SYS_MALLOC_SIMPLE |
27b207fd | 19 | void free(void*); |
90594919 | 20 | #endif |
3eb90bad | 21 | void __udelay(unsigned long); |
27b207fd | 22 | unsigned long get_timer(unsigned long); |
d9c27253 | 23 | int vprintf(const char *, va_list); |
49cad547 | 24 | unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base); |
a7fd0d9f | 25 | int strict_strtoul(const char *cp, unsigned int base, unsigned long *res); |
84b5e802 WD |
26 | char *getenv (const char *name); |
27 | int setenv (const char *varname, const char *varvalue); | |
49cad547 MD |
28 | long simple_strtol(const char *cp, char **endp, unsigned int base); |
29 | int strcmp(const char *cs, const char *ct); | |
3ec44111 | 30 | unsigned long ustrtoul(const char *cp, char **endp, unsigned int base); |
7df54d31 | 31 | unsigned long long ustrtoull(const char *cp, char **endp, unsigned int base); |
49cad547 MD |
32 | #if defined(CONFIG_CMD_I2C) && \ |
33 | (!defined(CONFIG_DM_I2C) || defined(CONFIG_DM_I2C_COMPAT)) | |
4f7cb08e WD |
34 | int i2c_write (uchar, uint, int , uchar* , int); |
35 | int i2c_read (uchar, uint, int , uchar* , int); | |
068b60a0 | 36 | #endif |
27b207fd | 37 | |
54841ab5 | 38 | void app_startup(char * const *); |
27b207fd WD |
39 | |
40 | #endif /* ifndef __ASSEMBLY__ */ | |
41 | ||
49cad547 MD |
42 | struct jt_funcs { |
43 | #define EXPORT_FUNC(impl, res, func, ...) res(*func)(__VA_ARGS__); | |
27b207fd WD |
44 | #include <_exports.h> |
45 | #undef EXPORT_FUNC | |
27b207fd WD |
46 | }; |
47 | ||
49cad547 MD |
48 | |
49 | #define XF_VERSION 7 | |
27b207fd | 50 | |
fea25720 | 51 | #if defined(CONFIG_X86) |
77846748 WD |
52 | extern gd_t *global_data; |
53 | #endif | |
54 | ||
c83bf6a2 | 55 | #endif /* __EXPORTS_H__ */ |