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