2004-01-06 22:38:14 +00:00
|
|
|
#ifndef __EXPORTS_H__
|
|
|
|
#define __EXPORTS_H__
|
2003-07-24 23:38:38 +00:00
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
2015-06-28 05:33:59 +00:00
|
|
|
#ifdef CONFIG_PHY_AQUANTIA
|
2018-07-17 20:02:30 +00:00
|
|
|
#include <phy_interface.h>
|
2015-06-28 05:33:59 +00:00
|
|
|
#endif
|
2003-07-24 23:38:38 +00:00
|
|
|
|
2015-01-26 22:22:54 +00:00
|
|
|
struct spi_slave;
|
|
|
|
|
2003-07-24 23:38:38 +00:00
|
|
|
/* 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, ...);
|
2015-01-26 22:22:54 +00:00
|
|
|
void install_hdlr(int, interrupt_handler_t, void*);
|
2003-07-24 23:38:38 +00:00
|
|
|
void free_hdlr(int);
|
|
|
|
void *malloc(size_t);
|
2015-09-13 12:45:15 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(SYS_MALLOC_SIMPLE)
|
2003-07-24 23:38:38 +00:00
|
|
|
void free(void*);
|
2015-03-03 15:03:01 +00:00
|
|
|
#endif
|
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);
|
2015-01-26 22:22:54 +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);
|
2017-08-03 18:22:12 +00:00
|
|
|
char *env_get(const char *name);
|
2017-08-03 18:22:09 +00:00
|
|
|
int env_set(const char *varname, const char *value);
|
2015-01-26 22:22:54 +00:00
|
|
|
long simple_strtol(const char *cp, char **endp, unsigned int base);
|
|
|
|
int strcmp(const char *cs, const char *ct);
|
2012-12-11 10:09:42 +00:00
|
|
|
unsigned long ustrtoul(const char *cp, char **endp, unsigned int base);
|
2013-01-27 22:59:24 +00:00
|
|
|
unsigned long long ustrtoull(const char *cp, char **endp, unsigned int base);
|
2019-07-29 06:58:00 +00:00
|
|
|
#if defined(CONFIG_CMD_I2C) && !defined(CONFIG_DM_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
|
2015-06-28 05:33:59 +00:00
|
|
|
#ifdef CONFIG_PHY_AQUANTIA
|
|
|
|
struct mii_dev *mdio_get_current_dev(void);
|
|
|
|
struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask,
|
|
|
|
phy_interface_t interface);
|
|
|
|
struct phy_device *mdio_phydev_for_ethname(const char *ethname);
|
|
|
|
int miiphy_set_current_dev(const char *devname);
|
|
|
|
#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__ */
|
|
|
|
|
2015-01-26 22:22:54 +00:00
|
|
|
struct jt_funcs {
|
|
|
|
#define EXPORT_FUNC(impl, res, func, ...) res(*func)(__VA_ARGS__);
|
2003-07-24 23:38:38 +00:00
|
|
|
#include <_exports.h>
|
|
|
|
#undef EXPORT_FUNC
|
|
|
|
};
|
|
|
|
|
2015-01-26 22:22:54 +00:00
|
|
|
|
2016-09-07 09:56:07 +00:00
|
|
|
#define XF_VERSION 9
|
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__ */
|