wdenk | 87249ba | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 1 | #ifndef __EXPORTS_H__ |
| 2 | #define __EXPORTS_H__ |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 3 | |
Simon Glass | 9b61c7c | 2019-11-14 12:57:41 -0700 | [diff] [blame] | 4 | #include <irq_func.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 5 | #include <asm/global_data.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 6 | #include <linux/delay.h> |
Simon Glass | 9b61c7c | 2019-11-14 12:57:41 -0700 | [diff] [blame] | 7 | |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 8 | #ifndef __ASSEMBLY__ |
Prabhakar Kushwaha | 7b3a6bc | 2015-06-28 11:03:59 +0530 | [diff] [blame] | 9 | #ifdef CONFIG_PHY_AQUANTIA |
Simon Glass | 5e6201b | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 10 | #include <env.h> |
Joe Hershberger | f5581fb | 2018-07-17 15:02:30 -0500 | [diff] [blame] | 11 | #include <phy_interface.h> |
Prabhakar Kushwaha | 7b3a6bc | 2015-06-28 11:03:59 +0530 | [diff] [blame] | 12 | #endif |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 13 | |
Simon Glass | 8f3f761 | 2019-11-14 12:57:42 -0700 | [diff] [blame] | 14 | #include <irq_func.h> |
| 15 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 16 | struct cmd_tbl; |
Martin Dorwig | cb2c286 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 17 | struct spi_slave; |
| 18 | |
Ovidiu Panait | 036f0f1 | 2020-11-28 10:43:15 +0200 | [diff] [blame] | 19 | /** |
| 20 | * jumptable_init() - Set up the jump table for use by the API |
| 21 | * |
| 22 | * It is called during the generic post-relocation init sequence. |
| 23 | * |
| 24 | * Return: 0 if OK |
| 25 | */ |
| 26 | int jumptable_init(void); |
Simon Glass | 6ba0392 | 2019-12-28 10:44:46 -0700 | [diff] [blame] | 27 | |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 28 | /* These are declarations of exported functions available in C code */ |
| 29 | unsigned long get_version(void); |
| 30 | int getc(void); |
| 31 | int tstc(void); |
| 32 | void putc(const char); |
| 33 | void puts(const char*); |
Wolfgang Denk | 318ef5c | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 34 | int printf(const char* fmt, ...); |
Martin Dorwig | cb2c286 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 35 | void install_hdlr(int, interrupt_handler_t, void*); |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 36 | void free_hdlr(int); |
| 37 | void *malloc(size_t); |
Hans de Goede | 9f9df6f | 2015-09-13 14:45:15 +0200 | [diff] [blame] | 38 | #if !CONFIG_IS_ENABLED(SYS_MALLOC_SIMPLE) |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 39 | void free(void*); |
Simon Glass | f5f2b0e | 2015-03-03 08:03:01 -0700 | [diff] [blame] | 40 | #endif |
Ingo van Lil | f0f778a | 2009-11-24 14:09:21 +0100 | [diff] [blame] | 41 | void __udelay(unsigned long); |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 42 | unsigned long get_timer(unsigned long); |
Wolfgang Denk | 318ef5c | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 43 | int vprintf(const char *, va_list); |
Martin Dorwig | cb2c286 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 44 | unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base); |
Heiko Schocher | 8d4f35a | 2011-05-02 21:33:49 +0000 | [diff] [blame] | 45 | int strict_strtoul(const char *cp, unsigned int base, unsigned long *res); |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 46 | char *env_get(const char *name); |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 47 | int env_set(const char *varname, const char *value); |
Martin Dorwig | cb2c286 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 48 | long simple_strtol(const char *cp, char **endp, unsigned int base); |
| 49 | int strcmp(const char *cs, const char *ct); |
Lukasz Majewski | 99180d6 | 2012-12-11 11:09:42 +0100 | [diff] [blame] | 50 | unsigned long ustrtoul(const char *cp, char **endp, unsigned int base); |
Piotr Wilczek | 219ad3c | 2013-01-27 22:59:24 +0000 | [diff] [blame] | 51 | unsigned long long ustrtoull(const char *cp, char **endp, unsigned int base); |
Igor Opaniuk | f7c9176 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 52 | #if defined(CONFIG_CMD_I2C) && !CONFIG_IS_ENABLED(DM_I2C) |
wdenk | 4cc02a8 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 53 | int i2c_write (uchar, uint, int , uchar* , int); |
| 54 | int i2c_read (uchar, uint, int , uchar* , int); |
Jon Loeliger | 07efe2a | 2007-07-10 10:27:39 -0500 | [diff] [blame] | 55 | #endif |
Prabhakar Kushwaha | 7b3a6bc | 2015-06-28 11:03:59 +0530 | [diff] [blame] | 56 | #ifdef CONFIG_PHY_AQUANTIA |
| 57 | struct mii_dev *mdio_get_current_dev(void); |
Marek BehĂșn | 3927efb | 2022-04-07 00:33:08 +0200 | [diff] [blame] | 58 | struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask); |
Prabhakar Kushwaha | 7b3a6bc | 2015-06-28 11:03:59 +0530 | [diff] [blame] | 59 | struct phy_device *mdio_phydev_for_ethname(const char *ethname); |
| 60 | int miiphy_set_current_dev(const char *devname); |
| 61 | #endif |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 62 | |
Wolfgang Denk | 6262d021 | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 63 | void app_startup(char * const *); |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 64 | |
| 65 | #endif /* ifndef __ASSEMBLY__ */ |
| 66 | |
Martin Dorwig | cb2c286 | 2015-01-26 15:22:54 -0700 | [diff] [blame] | 67 | struct jt_funcs { |
| 68 | #define EXPORT_FUNC(impl, res, func, ...) res(*func)(__VA_ARGS__); |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 69 | #include <_exports.h> |
| 70 | #undef EXPORT_FUNC |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 71 | }; |
| 72 | |
Shaohui Xie | fd4d7bb | 2016-09-07 17:56:07 +0800 | [diff] [blame] | 73 | #define XF_VERSION 9 |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 74 | |
Graeme Russ | cbfce1d | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 75 | #if defined(CONFIG_X86) |
wdenk | b846356 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 76 | extern gd_t *global_data; |
| 77 | #endif |
| 78 | |
wdenk | 87249ba | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 79 | #endif /* __EXPORTS_H__ */ |