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