]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/exports.h
arm: spl: Allow board_init_r() to run with a larger stack
[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
49cad547
MD
6struct spi_slave;
7
27b207fd
WD
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, ...);
49cad547 15void install_hdlr(int, interrupt_handler_t, void*);
27b207fd
WD
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);
49cad547 22unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base);
a7fd0d9f 23int strict_strtoul(const char *cp, unsigned int base, unsigned long *res);
84b5e802
WD
24char *getenv (const char *name);
25int setenv (const char *varname, const char *varvalue);
49cad547
MD
26long simple_strtol(const char *cp, char **endp, unsigned int base);
27int strcmp(const char *cs, const char *ct);
3ec44111 28unsigned long ustrtoul(const char *cp, char **endp, unsigned int base);
7df54d31 29unsigned long long ustrtoull(const char *cp, char **endp, unsigned int base);
49cad547
MD
30#if defined(CONFIG_CMD_I2C) && \
31 (!defined(CONFIG_DM_I2C) || defined(CONFIG_DM_I2C_COMPAT))
4f7cb08e
WD
32int i2c_write (uchar, uint, int , uchar* , int);
33int i2c_read (uchar, uint, int , uchar* , int);
068b60a0 34#endif
27b207fd 35
54841ab5 36void app_startup(char * const *);
27b207fd
WD
37
38#endif /* ifndef __ASSEMBLY__ */
39
49cad547
MD
40struct jt_funcs {
41#define EXPORT_FUNC(impl, res, func, ...) res(*func)(__VA_ARGS__);
27b207fd
WD
42#include <_exports.h>
43#undef EXPORT_FUNC
27b207fd
WD
44};
45
49cad547
MD
46
47#define XF_VERSION 7
27b207fd 48
fea25720 49#if defined(CONFIG_X86)
77846748
WD
50extern gd_t *global_data;
51#endif
52
c83bf6a2 53#endif /* __EXPORTS_H__ */