wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 1 | #ifndef __EXPORTS_H__ |
| 2 | #define __EXPORTS_H__ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 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); |
wdenk | f5300ab | 2003-09-12 15:35:15 +0000 | [diff] [blame] | 21 | void vprintf(const char *, va_list); |
| 22 | void do_reset (void); |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 23 | #if (CONFIG_COMMANDS & CFG_CMD_I2C) |
| 24 | int i2c_write (uchar, uint, int , uchar* , int); |
| 25 | int i2c_read (uchar, uint, int , uchar* , int); |
| 26 | #endif /* CFG_CMD_I2C */ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 27 | |
| 28 | void app_startup(char **); |
| 29 | |
| 30 | #endif /* ifndef __ASSEMBLY__ */ |
| 31 | |
| 32 | enum { |
| 33 | #define EXPORT_FUNC(x) XF_ ## x , |
| 34 | #include <_exports.h> |
| 35 | #undef EXPORT_FUNC |
| 36 | |
| 37 | XF_MAX |
| 38 | }; |
| 39 | |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 40 | #define XF_VERSION 2 |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 41 | |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 42 | #if defined(CONFIG_I386) |
| 43 | extern gd_t *global_data; |
| 44 | #endif |
| 45 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 46 | #endif /* __EXPORTS_H__ */ |