]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/exports.c
* Implement new mechanism to export U-Boot's functions to standalone
[people/ms/u-boot.git] / common / exports.c
CommitLineData
27b207fd
WD
1#include <common.h>
2#include <exports.h>
3
4static void dummy(void)
5{
6}
7
8unsigned long get_version(void)
9{
10 return XF_VERSION;
11}
12
13void jumptable_init (void)
14{
15 DECLARE_GLOBAL_DATA_PTR;
16 int i;
17
18 gd->jt = (void **) malloc (XF_MAX * sizeof (void *));
19 for (i = 0; i < XF_MAX; i++)
20 gd->jt[i] = (void *) dummy;
21
22 gd->jt[XF_get_version] = (void *) get_version;
23 gd->jt[XF_malloc] = (void *) malloc;
24 gd->jt[XF_free] = (void *) free;
25 gd->jt[XF_get_timer] = (void *)get_timer;
26 gd->jt[XF_udelay] = (void *)udelay;
27#if defined(CONFIG_I386) || defined(CONFIG_PPC)
28 gd->jt[XF_install_hdlr] = (void *) irq_install_handler;
29 gd->jt[XF_free_hdlr] = (void *) irq_free_handler;
30#endif
31}