2004-01-06 22:38:14 +00:00
|
|
|
#ifndef __EXPORTS_H__
|
|
|
|
#define __EXPORTS_H__
|
2003-07-24 23:38:38 +00:00
|
|
|
|
2019-11-14 12:57:41 -07:00
|
|
|
#include <irq_func.h>
|
2020-10-30 21:38:53 -06:00
|
|
|
#include <asm/global_data.h>
|
2020-05-10 11:40:11 -06:00
|
|
|
#include <linux/delay.h>
|
2019-11-14 12:57:41 -07:00
|
|
|
|
2003-07-24 23:38:38 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
2015-06-28 11:03:59 +05:30
|
|
|
#ifdef CONFIG_PHY_AQUANTIA
|
2019-08-01 09:46:51 -06:00
|
|
|
#include <env.h>
|
2018-07-17 15:02:30 -05:00
|
|
|
#include <phy_interface.h>
|
2015-06-28 11:03:59 +05:30
|
|
|
#endif
|
2003-07-24 23:38:38 +00:00
|
|
|
|
2019-11-14 12:57:42 -07:00
|
|
|
#include <irq_func.h>
|
|
|
|
|
2020-05-10 11:40:03 -06:00
|
|
|
struct cmd_tbl;
|
2015-01-26 15:22:54 -07:00
|
|
|
struct spi_slave;
|
|
|
|
|
2020-11-28 10:43:15 +02:00
|
|
|
/**
|
|
|
|
* jumptable_init() - Set up the jump table for use by the API
|
|
|
|
*
|
|
|
|
* It is called during the generic post-relocation init sequence.
|
|
|
|
*
|
|
|
|
* Return: 0 if OK
|
|
|
|
*/
|
|
|
|
int jumptable_init(void);
|
2019-12-28 10:44:46 -07:00
|
|
|
|
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 17:14:14 +02:00
|
|
|
int printf(const char* fmt, ...);
|
2015-01-26 15:22:54 -07: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 14:45:15 +02:00
|
|
|
#if !CONFIG_IS_ENABLED(SYS_MALLOC_SIMPLE)
|
2003-07-24 23:38:38 +00:00
|
|
|
void free(void*);
|
2015-03-03 08:03:01 -07:00
|
|
|
#endif
|
2009-11-24 14:09:21 +01:00
|
|
|
void __udelay(unsigned long);
|
2003-07-24 23:38:38 +00:00
|
|
|
unsigned long get_timer(unsigned long);
|
2010-06-20 17:14:14 +02:00
|
|
|
int vprintf(const char *, va_list);
|
2015-01-26 15:22:54 -07: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 12:22:12 -06:00
|
|
|
char *env_get(const char *name);
|
2017-08-03 12:22:09 -06:00
|
|
|
int env_set(const char *varname, const char *value);
|
2015-01-26 15:22:54 -07:00
|
|
|
long simple_strtol(const char *cp, char **endp, unsigned int base);
|
|
|
|
int strcmp(const char *cs, const char *ct);
|
2012-12-11 11:09:42 +01: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);
|
2021-02-09 13:52:45 +02:00
|
|
|
#if defined(CONFIG_CMD_I2C) && !CONFIG_IS_ENABLED(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 10:27:39 -05:00
|
|
|
#endif
|
2015-06-28 11:03:59 +05:30
|
|
|
#ifdef CONFIG_PHY_AQUANTIA
|
|
|
|
struct mii_dev *mdio_get_current_dev(void);
|
2022-04-07 00:33:08 +02:00
|
|
|
struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask);
|
2015-06-28 11:03:59 +05:30
|
|
|
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 22:00:46 +02:00
|
|
|
void app_startup(char * const *);
|
2003-07-24 23:38:38 +00:00
|
|
|
|
|
|
|
#endif /* ifndef __ASSEMBLY__ */
|
|
|
|
|
2015-01-26 15:22:54 -07: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 15:22:54 -07:00
|
|
|
|
2016-09-07 17:56:07 +08:00
|
|
|
#define XF_VERSION 9
|
2003-07-24 23:38:38 +00:00
|
|
|
|
2011-04-13 19:43:28 +10: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__ */
|