9
0
Fork 0
barebox/include/common.h

175 lines
4.5 KiB
C
Raw Normal View History

2002-11-02 23:30:20 +00:00
/*
* (C) Copyright 2000-2004
2002-11-02 23:30:20 +00:00
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2002-11-02 23:30:20 +00:00
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
#ifndef __COMMON_H_
#define __COMMON_H_ 1
#include <stdio.h>
#include <compiler.h>
2007-10-04 10:37:06 +00:00
#include <module.h>
2002-11-02 23:30:20 +00:00
#include <config.h>
#include <linux/bitops.h>
#include <linux/types.h>
#include <linux/string.h>
#include <asm/common.h>
2002-11-02 23:30:20 +00:00
#ifdef DEBUG
#define debug(fmt,args...) printf (fmt ,##args)
#define debugX(level,fmt,args...) if (DEBUG>=level) printf(fmt,##args);
2002-11-02 23:30:20 +00:00
#else
#define debug(fmt,args...)
#define debugX(level,fmt,args...)
2002-11-02 23:30:20 +00:00
#endif /* DEBUG */
#define BUG() do { \
2006-10-08 22:42:01 +00:00
printf("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __FUNCTION__); \
panic("BUG!"); \
} while (0)
#define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
typedef void (interrupt_handler_t)(void *);
2002-11-02 23:30:20 +00:00
#include <asm/u-boot.h> /* boot information for Linux kernel */
2002-11-02 23:30:20 +00:00
/*
* General Purpose Utilities
*/
#define min(X, Y) \
({ typeof (X) __x = (X), __y = (Y); \
(__x < __y) ? __x : __y; })
#define max(X, Y) \
({ typeof (X) __x = (X), __y = (Y); \
(__x > __y) ? __x : __y; })
2002-11-02 23:30:20 +00:00
/*
* Function Prototypes
*/
void reginfo(void);
2002-11-02 23:30:20 +00:00
void hang (void) __attribute__ ((noreturn));
void panic(const char *fmt, ...);
2002-11-02 23:30:20 +00:00
/* */
long int initdram (int);
char *size_human_readable(ulong size);
2002-11-02 23:30:20 +00:00
/* common/main.c */
void main_loop (void);
int run_command (const char *cmd, int flag);
int readline (const char *prompt, char *buf, int len);
2002-11-02 23:30:20 +00:00
void reset_cmd_timeout(void);
/* lib_$(ARCH)/board.c */
2002-11-02 23:30:20 +00:00
int checkboard (void);
int checkflash (void);
int checkdram (void);
int checkcpu (void);
2002-11-02 23:30:20 +00:00
char * strmhz(char *buf, long hz);
#ifdef CONFIG_AUTO_COMPLETE
int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf);
#endif
/* common/exports.c */
void jumptable_init(void);
/* common/memsize.c */
long get_ram_size (volatile long *, long);
2002-11-02 23:30:20 +00:00
#ifdef CONFIG_LWMON
extern uchar pic_read (uchar reg);
extern void pic_write (uchar reg, uchar val);
#endif
#if defined(CFG_DRAM_TEST)
int testdram(void);
#endif /* CFG_DRAM_TEST */
/* $(CPU)/cpu.c */
void reset_cpu (ulong addr);
2002-11-02 23:30:20 +00:00
/* $(CPU)/interrupts.c */
//void timer_interrupt (struct pt_regs *);
//void external_interrupt (struct pt_regs *);
2002-11-02 23:30:20 +00:00
void irq_install_handler(int, interrupt_handler_t *, void *);
void irq_free_handler (int);
2007-07-05 16:02:08 +00:00
#ifdef CONFIG_INTERRUPTS
2002-11-02 23:30:20 +00:00
void enable_interrupts (void);
int disable_interrupts (void);
2007-07-05 16:02:08 +00:00
#else
#define enable_interrupts() do {} while (0)
#define disable_interrupts() 0
#endif
2002-11-02 23:30:20 +00:00
/* lib_$(ARCH)/time.c */
void udelay (unsigned long);
void mdelay (unsigned long);
2002-11-02 23:30:20 +00:00
2007-07-05 20:12:11 +00:00
int gunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp);
/* lib_generic/vsprintf.c */
2002-11-02 23:30:20 +00:00
ulong simple_strtoul(const char *cp,char **endp,unsigned int base);
#ifdef CFG_64BIT_VSPRINTF
unsigned long long simple_strtoull(const char *cp,char **endp,unsigned int base);
#endif
2002-11-02 23:30:20 +00:00
long simple_strtol(const char *cp,char **endp,unsigned int base);
/* lib_generic/crc32.c */
2002-11-02 23:30:20 +00:00
ulong crc32 (ulong, const unsigned char *, uint);
ulong crc32_no_comp (ulong, const unsigned char *, uint);
/* common/console.c */
int ctrlc (void);
#ifdef CONFIG_SHOW_BOOT_PROGRESS
void show_boot_progress (int status);
#endif
2007-07-05 16:01:23 +00:00
#define MEMAREA_SIZE_SPECIFIED 1
struct memarea_info {
struct device_d *device;
unsigned long start;
unsigned long end;
unsigned long size;
unsigned long flags;
};
int spec_str_to_info(const char *str, struct memarea_info *info);
int parse_area_spec(const char *str, ulong *start, ulong *size);
2007-07-05 16:01:23 +00:00
/* Just like simple_strtoul(), but this one honors a K/M/G suffix */
unsigned long strtoul_suffix(const char *str, char **endp, int base);
void start_uboot(void);
int arch_execute(unsigned long address, int argc, char *argv[]);
2007-07-05 16:01:29 +00:00
int run_shell(void);
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
2002-11-02 23:30:20 +00:00
#endif /* __COMMON_H_ */