blob: 0eaf66e1838f4b6a69a455dbd93c24343ce8a3dd [file] [log] [blame]
wdenkc83bf6a2004-01-06 22:38:14 +00001#ifndef __EXPORTS_H__
2#define __EXPORTS_H__
wdenk27b207f2003-07-24 23:38:38 +00003
4#ifndef __ASSEMBLY__
5
6#include <common.h>
7
8/* These are declarations of exported functions available in C code */
9unsigned long get_version(void);
10int getc(void);
11int tstc(void);
12void putc(const char);
13void puts(const char*);
14void printf(const char* fmt, ...);
15void install_hdlr(int, interrupt_handler_t*, void*);
16void free_hdlr(int);
17void *malloc(size_t);
18void free(void*);
19void udelay(unsigned long);
20unsigned long get_timer(unsigned long);
wdenkf5300ab2003-09-12 15:35:15 +000021void vprintf(const char *, va_list);
22void do_reset (void);
wdenk4f7cb082003-09-11 23:06:34 +000023#if (CONFIG_COMMANDS & CFG_CMD_I2C)
24int i2c_write (uchar, uint, int , uchar* , int);
25int i2c_read (uchar, uint, int , uchar* , int);
26#endif /* CFG_CMD_I2C */
wdenk27b207f2003-07-24 23:38:38 +000027
28void app_startup(char **);
29
30#endif /* ifndef __ASSEMBLY__ */
31
32enum {
33#define EXPORT_FUNC(x) XF_ ## x ,
34#include <_exports.h>
35#undef EXPORT_FUNC
36
37 XF_MAX
38};
39
wdenk4f7cb082003-09-11 23:06:34 +000040#define XF_VERSION 2
wdenk27b207f2003-07-24 23:38:38 +000041
wdenk77846742003-07-26 08:08:08 +000042#if defined(CONFIG_I386)
43extern gd_t *global_data;
44#endif
45
wdenkc83bf6a2004-01-06 22:38:14 +000046#endif /* __EXPORTS_H__ */