2004-01-06 22:38:14 +00:00
|
|
|
#ifndef __EXPORTS_H__
|
|
|
|
#define __EXPORTS_H__
|
2003-07-24 23:38:38 +00:00
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
|
|
|
/* These are declarations of exported functions available in C code */
|
|
|
|
unsigned long get_version(void);
|
|
|
|
int getc(void);
|
|
|
|
int tstc(void);
|
|
|
|
void putc(const char);
|
|
|
|
void puts(const char*);
|
2010-06-20 15:14:14 +00:00
|
|
|
int printf(const char* fmt, ...);
|
2010-10-27 10:31:09 +00:00
|
|
|
void install_hdlr(int, void (*interrupt_handler_t)(void *), void*);
|
2003-07-24 23:38:38 +00:00
|
|
|
void free_hdlr(int);
|
|
|
|
void *malloc(size_t);
|
|
|
|
void free(void*);
|
2009-11-24 13:09:21 +00:00
|
|
|
void __udelay(unsigned long);
|
2003-07-24 23:38:38 +00:00
|
|
|
unsigned long get_timer(unsigned long);
|
2010-06-20 15:14:14 +00:00
|
|
|
int vprintf(const char *, va_list);
|
2006-09-01 13:00:02 +00:00
|
|
|
unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base);
|
2011-05-02 21:33:49 +00:00
|
|
|
int strict_strtoul(const char *cp, unsigned int base, unsigned long *res);
|
2011-07-29 12:42:18 +00:00
|
|
|
char *getenv (const char *name);
|
|
|
|
int setenv (const char *varname, const char *varvalue);
|
2006-12-12 13:26:01 +00:00
|
|
|
long simple_strtol(const char *cp,char **endp,unsigned int base);
|
|
|
|
int strcmp(const char * cs,const char * ct);
|
2008-11-19 15:32:36 +00:00
|
|
|
int ustrtoul(const char *cp, char **endp, unsigned int base);
|
2007-07-09 22:15:49 +00:00
|
|
|
#if defined(CONFIG_CMD_I2C)
|
2003-09-11 23:06:34 +00:00
|
|
|
int i2c_write (uchar, uint, int , uchar* , int);
|
|
|
|
int i2c_read (uchar, uint, int , uchar* , int);
|
2007-07-10 15:27:39 +00:00
|
|
|
#endif
|
2003-07-24 23:38:38 +00:00
|
|
|
|
2010-06-28 20:00:46 +00:00
|
|
|
void app_startup(char * const *);
|
2003-07-24 23:38:38 +00:00
|
|
|
|
|
|
|
#endif /* ifndef __ASSEMBLY__ */
|
|
|
|
|
|
|
|
enum {
|
|
|
|
#define EXPORT_FUNC(x) XF_ ## x ,
|
|
|
|
#include <_exports.h>
|
|
|
|
#undef EXPORT_FUNC
|
|
|
|
|
|
|
|
XF_MAX
|
|
|
|
};
|
|
|
|
|
2009-09-21 16:20:37 +00:00
|
|
|
#define XF_VERSION 6
|
2003-07-24 23:38:38 +00:00
|
|
|
|
2011-04-13 09:43:28 +00:00
|
|
|
#if defined(CONFIG_X86)
|
2003-07-26 08:08:08 +00:00
|
|
|
extern gd_t *global_data;
|
|
|
|
#endif
|
|
|
|
|
2004-01-06 22:38:14 +00:00
|
|
|
#endif /* __EXPORTS_H__ */
|