blob: 84bc56b7a058270b118033c2d0b98dec9c70babc [file] [log] [blame]
wdenk27b207f2003-07-24 23:38:38 +00001#ifndef __MON_SYS_CALL_H__
2#define __MON_SYS_CALL_H__
3
4#ifndef __ASSEMBLY__
5
6#include <common.h>
7
8/* These are declarations of exported functions available in C code */
9unsigned long get_version(void);
10int getc(void);
11int tstc(void);
12void putc(const char);
13void puts(const char*);
14void printf(const char* fmt, ...);
15void install_hdlr(int, interrupt_handler_t*, void*);
16void free_hdlr(int);
17void *malloc(size_t);
18void free(void*);
19void udelay(unsigned long);
20unsigned long get_timer(unsigned long);
wdenk4f7cb082003-09-11 23:06:34 +000021#if (CONFIG_COMMANDS & CFG_CMD_I2C)
22int i2c_write (uchar, uint, int , uchar* , int);
23int i2c_read (uchar, uint, int , uchar* , int);
24#endif /* CFG_CMD_I2C */
wdenk27b207f2003-07-24 23:38:38 +000025
26void app_startup(char **);
27
28#endif /* ifndef __ASSEMBLY__ */
29
30enum {
31#define EXPORT_FUNC(x) XF_ ## x ,
32#include <_exports.h>
33#undef EXPORT_FUNC
34
35 XF_MAX
36};
37
wdenk4f7cb082003-09-11 23:06:34 +000038#define XF_VERSION 2
wdenk27b207f2003-07-24 23:38:38 +000039
wdenk77846742003-07-26 08:08:08 +000040#if defined(CONFIG_I386)
41extern gd_t *global_data;
42#endif
43
wdenk27b207f2003-07-24 23:38:38 +000044#endif