diff options
author | fishsoupisgood <github@madingley.org> | 2019-04-29 01:17:54 +0100 |
---|---|---|
committer | fishsoupisgood <github@madingley.org> | 2019-05-27 03:43:43 +0100 |
commit | 3f2546b2ef55b661fd8dd69682b38992225e86f6 (patch) | |
tree | 65ca85f13617aee1dce474596800950f266a456c /roms/u-boot/common/exports.c | |
download | qemu-master.tar.gz qemu-master.tar.bz2 qemu-master.zip |
Diffstat (limited to 'roms/u-boot/common/exports.c')
-rw-r--r-- | roms/u-boot/common/exports.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/roms/u-boot/common/exports.c b/roms/u-boot/common/exports.c new file mode 100644 index 00000000..b97ca483 --- /dev/null +++ b/roms/u-boot/common/exports.c @@ -0,0 +1,43 @@ +#include <common.h> +#include <exports.h> +#include <spi.h> + +DECLARE_GLOBAL_DATA_PTR; + +__attribute__((unused)) static void dummy(void) +{ +} + +unsigned long get_version(void) +{ + return XF_VERSION; +} + +/* Reuse _exports.h with a little trickery to avoid bitrot */ +#define EXPORT_FUNC(sym) gd->jt[XF_##sym] = (void *)sym; + +#if !defined(CONFIG_X86) && !defined(CONFIG_PPC) +# define install_hdlr dummy +# define free_hdlr dummy +#else /* kludge for non-standard function naming */ +# define install_hdlr irq_install_handler +# define free_hdlr irq_free_handler +#endif +#ifndef CONFIG_CMD_I2C +# define i2c_write dummy +# define i2c_read dummy +#endif +#ifndef CONFIG_CMD_SPI +# define spi_init dummy +# define spi_setup_slave dummy +# define spi_free_slave dummy +# define spi_claim_bus dummy +# define spi_release_bus dummy +# define spi_xfer dummy +#endif + +void jumptable_init(void) +{ + gd->jt = malloc(XF_MAX * sizeof(void *)); +#include <_exports.h> +} |