]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/exports.h
Merge branch 'master' of /home/wd/git/u-boot/custodians
[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*);
3eb90bad 19void __udelay(unsigned long);
27b207fd 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
bedd8403 36#include <spi.h>
27b207fd
WD
37
38void app_startup(char **);
39
40#endif /* ifndef __ASSEMBLY__ */
41
42enum {
43#define EXPORT_FUNC(x) XF_ ## x ,
44#include <_exports.h>
45#undef EXPORT_FUNC
46
47 XF_MAX
48};
49
3469424c 50#define XF_VERSION 6
27b207fd 51
77846748
WD
52#if defined(CONFIG_I386)
53extern gd_t *global_data;
54#endif
55
c83bf6a2 56#endif /* __EXPORTS_H__ */