]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/exports.h
UBI: Add basic UBI support to U-Boot (Part 6/8)
[people/ms/u-boot.git] / include / exports.h
CommitLineData
c83bf6a2
WD
1#ifndef __EXPORTS_H__
2#define __EXPORTS_H__
27b207fd
WD
3
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);
f5300ab2
WD
21void vprintf(const char *, va_list);
22void do_reset (void);
d7c2a02d
DZ
23unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base);
24char *getenv (char *name);
75678c80 25int setenv (char *varname, char *varvalue);
8092fef4
MK
26long simple_strtol(const char *cp,char **endp,unsigned int base);
27int strcmp(const char * cs,const char * ct);
7e6ee7ad 28int ustrtoul(const char *cp, char **endp, unsigned int base);
c74b2108
SK
29#ifdef CONFIG_HAS_UID
30void forceenv (char *varname, char *varvalue);
31#endif
639221c7 32#if defined(CONFIG_CMD_I2C)
4f7cb08e
WD
33int i2c_write (uchar, uint, int , uchar* , int);
34int i2c_read (uchar, uint, int , uchar* , int);
068b60a0 35#endif
27b207fd
WD
36
37void app_startup(char **);
38
39#endif /* ifndef __ASSEMBLY__ */
40
41enum {
42#define EXPORT_FUNC(x) XF_ ## x ,
43#include <_exports.h>
44#undef EXPORT_FUNC
45
46 XF_MAX
47};
48
8092fef4 49#define XF_VERSION 4
27b207fd 50
77846748
WD
51#if defined(CONFIG_I386)
52extern gd_t *global_data;
53#endif
54
c83bf6a2 55#endif /* __EXPORTS_H__ */