wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 1 | #ifndef __EXPORTS_H__ |
| 2 | #define __EXPORTS_H__ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 3 | |
| 4 | #ifndef __ASSEMBLY__ |
| 5 | |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 6 | struct spi_slave; |
| 7 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 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*); |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 14 | int printf(const char* fmt, ...); |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 15 | void install_hdlr(int, interrupt_handler_t, void*); |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 16 | void free_hdlr(int); |
| 17 | void *malloc(size_t); |
Simon Glass | 9059491 | 2015-03-03 08:03:01 -0700 | [diff] [blame] | 18 | #ifndef CONFIG_SYS_MALLOC_SIMPLE |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 19 | void free(void*); |
Simon Glass | 9059491 | 2015-03-03 08:03:01 -0700 | [diff] [blame] | 20 | #endif |
Ingo van Lil | 3eb90ba | 2009-11-24 14:09:21 +0100 | [diff] [blame] | 21 | void __udelay(unsigned long); |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 22 | unsigned long get_timer(unsigned long); |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 23 | int vprintf(const char *, va_list); |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 24 | unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base); |
Heiko Schocher | a7fd0d9 | 2011-05-02 21:33:49 +0000 | [diff] [blame] | 25 | int strict_strtoul(const char *cp, unsigned int base, unsigned long *res); |
Wolfgang Denk | 84b5e80 | 2011-07-29 14:42:18 +0200 | [diff] [blame] | 26 | char *getenv (const char *name); |
| 27 | int setenv (const char *varname, const char *varvalue); |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 28 | long simple_strtol(const char *cp, char **endp, unsigned int base); |
| 29 | int strcmp(const char *cs, const char *ct); |
Lukasz Majewski | 3ec4411 | 2012-12-11 11:09:42 +0100 | [diff] [blame] | 30 | unsigned long ustrtoul(const char *cp, char **endp, unsigned int base); |
Piotr Wilczek | 7df54d3 | 2013-01-27 22:59:24 +0000 | [diff] [blame] | 31 | unsigned long long ustrtoull(const char *cp, char **endp, unsigned int base); |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 32 | #if defined(CONFIG_CMD_I2C) && \ |
| 33 | (!defined(CONFIG_DM_I2C) || defined(CONFIG_DM_I2C_COMPAT)) |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 34 | int i2c_write (uchar, uint, int , uchar* , int); |
| 35 | int i2c_read (uchar, uint, int , uchar* , int); |
Jon Loeliger | 068b60a | 2007-07-10 10:27:39 -0500 | [diff] [blame] | 36 | #endif |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 37 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 38 | void app_startup(char * const *); |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 39 | |
| 40 | #endif /* ifndef __ASSEMBLY__ */ |
| 41 | |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 42 | struct jt_funcs { |
| 43 | #define EXPORT_FUNC(impl, res, func, ...) res(*func)(__VA_ARGS__); |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 44 | #include <_exports.h> |
| 45 | #undef EXPORT_FUNC |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 46 | }; |
| 47 | |
Martin Dorwig | 49cad54 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 48 | |
| 49 | #define XF_VERSION 7 |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 50 | |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 51 | #if defined(CONFIG_X86) |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 52 | extern gd_t *global_data; |
| 53 | #endif |
| 54 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 55 | #endif /* __EXPORTS_H__ */ |