xref: /openbmc/u-boot/include/exports.h (revision 69df3c4d)
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 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 void vprintf(const char *, va_list);
22 void do_reset (void);
23 unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base);
24 char *getenv (char *name);
25 void setenv (char *varname, char *varvalue);
26 #if (CONFIG_COMMANDS & CFG_CMD_I2C)
27 int i2c_write (uchar, uint, int , uchar* , int);
28 int i2c_read (uchar, uint, int , uchar* , int);
29 #endif	/* CFG_CMD_I2C */
30 
31 void app_startup(char **);
32 
33 #endif    /* ifndef __ASSEMBLY__ */
34 
35 enum {
36 #define EXPORT_FUNC(x) XF_ ## x ,
37 #include <_exports.h>
38 #undef EXPORT_FUNC
39 
40 	XF_MAX
41 };
42 
43 #define XF_VERSION	3
44 
45 #if defined(CONFIG_I386)
46 extern gd_t *global_data;
47 #endif
48 
49 #endif	/* __EXPORTS_H__ */
50