]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/exports.h
ARM: add flat device tree support
[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*);
d9c27253 14int printf(const char* fmt, ...);
27b207fd
WD
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);
d9c27253 21int vprintf(const char *, va_list);
f5300ab2 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);
639221c7 29#if defined(CONFIG_CMD_I2C)
4f7cb08e
WD
30int i2c_write (uchar, uint, int , uchar* , int);
31int i2c_read (uchar, uint, int , uchar* , int);
068b60a0 32#endif
bedd8403 33#include <spi.h>
27b207fd 34
54841ab5 35void app_startup(char * const *);
27b207fd
WD
36
37#endif /* ifndef __ASSEMBLY__ */
38
39enum {
40#define EXPORT_FUNC(x) XF_ ## x ,
41#include <_exports.h>
42#undef EXPORT_FUNC
43
44 XF_MAX
45};
46
3469424c 47#define XF_VERSION 6
27b207fd 48
77846748
WD
49#if defined(CONFIG_I386)
50extern gd_t *global_data;
51#endif
52
c83bf6a2 53#endif /* __EXPORTS_H__ */