1 #ifndef __MON_SYS_CALL_H__ 2 #define __MON_SYS_CALL_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 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); 21 #if (CONFIG_COMMANDS & CFG_CMD_I2C) 22 int i2c_write (uchar, uint, int , uchar* , int); 23 int i2c_read (uchar, uint, int , uchar* , int); 24 #endif /* CFG_CMD_I2C */ 25 26 void app_startup(char **); 27 28 #endif /* ifndef __ASSEMBLY__ */ 29 30 enum { 31 #define EXPORT_FUNC(x) XF_ ## x , 32 #include <_exports.h> 33 #undef EXPORT_FUNC 34 35 XF_MAX 36 }; 37 38 #define XF_VERSION 2 39 40 #if defined(CONFIG_I386) 41 extern gd_t *global_data; 42 #endif 43 44 #endif 45