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 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 char *getenv (char *name); 24 int setenv (char *varname, char *varvalue); 25 long simple_strtol(const char *cp,char **endp,unsigned int base); 26 int strcmp(const char * cs,const char * ct); 27 int ustrtoul(const char *cp, char **endp, unsigned int base); 28 #if defined(CONFIG_CMD_I2C) 29 int i2c_write (uchar, uint, int , uchar* , int); 30 int i2c_read (uchar, uint, int , uchar* , int); 31 #endif 32 #include <spi.h> 33 34 void app_startup(char * const *); 35 36 #endif /* ifndef __ASSEMBLY__ */ 37 38 enum { 39 #define EXPORT_FUNC(x) XF_ ## x , 40 #include <_exports.h> 41 #undef EXPORT_FUNC 42 43 XF_MAX 44 }; 45 46 #define XF_VERSION 6 47 48 #if defined(CONFIG_I386) 49 extern gd_t *global_data; 50 #endif 51 52 #endif /* __EXPORTS_H__ */ 53