2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2002-11-02 23:30:20 +00:00
|
|
|
/*
|
2019-08-02 15:44:27 +00:00
|
|
|
* Common header file for U-Boot
|
|
|
|
*
|
|
|
|
* This file still includes quite a bit of stuff that should be in separate
|
2019-11-14 19:57:43 +00:00
|
|
|
* headers. Please think before adding more things.
|
2019-11-14 19:57:30 +00:00
|
|
|
* Patches to remove things are welcome.
|
2019-08-02 15:44:27 +00:00
|
|
|
*
|
2009-05-16 08:47:45 +00:00
|
|
|
* (C) Copyright 2000-2009
|
2002-11-02 23:30:20 +00:00
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COMMON_H_
|
2012-01-06 06:36:44 +00:00
|
|
|
#define __COMMON_H_ 1
|
2002-11-02 23:30:20 +00:00
|
|
|
|
2009-07-23 22:17:48 +00:00
|
|
|
#ifndef __ASSEMBLY__ /* put C only stuff in this section */
|
|
|
|
|
2002-11-02 23:30:20 +00:00
|
|
|
typedef volatile unsigned long vu_long;
|
2004-01-04 16:28:35 +00:00
|
|
|
typedef volatile unsigned short vu_short;
|
2002-11-02 23:30:20 +00:00
|
|
|
typedef volatile unsigned char vu_char;
|
|
|
|
|
|
|
|
#include <config.h>
|
2016-04-04 09:07:33 +00:00
|
|
|
#include <errno.h>
|
2016-12-27 15:36:00 +00:00
|
|
|
#include <time.h>
|
2010-10-26 12:34:52 +00:00
|
|
|
#include <asm-offsets.h>
|
2002-11-02 23:30:20 +00:00
|
|
|
#include <linux/bitops.h>
|
2017-09-16 05:10:45 +00:00
|
|
|
#include <linux/bug.h>
|
2016-12-27 15:35:59 +00:00
|
|
|
#include <linux/delay.h>
|
2002-11-02 23:30:20 +00:00
|
|
|
#include <linux/types.h>
|
printk: collect printk stuff into <linux/printk.h> with loglevel support
When we import code from Linux, with regular re-sync planned, we want
to use printk() and pr_*(). U-Boot does not support them in a clean
way. So, people end up with local macros, or compat headers here and
there, then we occasionally see build errors of definition conflicts.
We have include/linux/compat.h, but putting all sorts of unrelated
things into a single header is just a temporal workaround. Hence this
patch, to find the best home for all printk variants. If you want to
use printk() and friends, please include <linux/printk.h>. This header
is self-contained, and pulls in only a few headers.
When I was testing this clean-up, I noticed the image size exceeded
its platform limit on some boards. This is because all pr_*() that
were previously defined as no-op in include/linux/mtd/mtd.h (unless
CONFIG_MTD_DEBUG is set), are now enabled.
To make such boards happy, this commit also implements CONFIG_LOGLEVEL.
The concept is similar to the kernel parameter "loglevel". (Actually,
the Kconfig help message was taken from kernel-paremeter.txt of Linux)
Messages with a loglevel smaller than console loglevel will be printed.
The difference is the loglevel is build-time determined. To save the
image size, lower priority pr_*() are compiled out. I set the default
of CONFIG_LOGLEVEL to 6, i.e. pr_notice and higher priority messages
are compiled in.
I adjusted CONFIG_LOGLEVEL to avoid build error for some boards.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
[trini: Add in SPL_LOGLEVEL that is the same as LOGLEVEL]
Signed-off-by: Tom Rini <trini@konsulko.com>
2017-09-16 05:10:40 +00:00
|
|
|
#include <linux/printk.h>
|
2002-11-02 23:30:20 +00:00
|
|
|
#include <linux/string.h>
|
2012-09-27 15:08:15 +00:00
|
|
|
#include <linux/stringify.h>
|
2002-11-02 23:30:20 +00:00
|
|
|
#include <asm/ptrace.h>
|
|
|
|
#include <stdarg.h>
|
2017-09-16 05:10:39 +00:00
|
|
|
#include <stdio.h>
|
include: move various macros to include/linux/kernel.h
U-Boot has imported various utility macros from Linux
scattering them to various places without consistency.
In include/common.h are min, max, min3, max3, ARRAY_SIZE, ALIGN,
container_of, DIV_ROUND_UP, etc.
In include/linux/compat.h are min_t, max_t, round_up, round_down,
etc.
We also have duplicated defines of min_t in some *.c files.
Moreover, we are suffering from too cluttered include/common.h.
This commit moves various macros that originate in
include/linux/kernel.h of Linux to their original position.
Note:
This commit simply moves the macros; the macros roundup,
min, max, min2, max3, ARRAY_SIZE are different
from those of Linux at this point.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
2014-11-06 18:03:28 +00:00
|
|
|
#include <linux/kernel.h>
|
2017-05-17 14:23:05 +00:00
|
|
|
|
2002-11-02 23:30:20 +00:00
|
|
|
#include <part.h>
|
|
|
|
#include <flash.h>
|
|
|
|
#include <image.h>
|
|
|
|
|
2014-02-27 01:03:19 +00:00
|
|
|
#ifdef __LP64__
|
|
|
|
#define CONFIG_SYS_SUPPORT_64BIT_DATA
|
|
|
|
#endif
|
|
|
|
|
2017-12-04 20:48:20 +00:00
|
|
|
#include <log.h>
|
2011-06-29 09:49:34 +00:00
|
|
|
|
2004-01-06 22:38:14 +00:00
|
|
|
#include <asm/u-boot.h> /* boot information for Linux kernel */
|
2002-11-02 23:30:20 +00:00
|
|
|
#include <asm/global_data.h> /* global data used for startup functions */
|
|
|
|
|
2018-03-13 12:57:00 +00:00
|
|
|
/* startup functions, used in:
|
|
|
|
* common/board_f.c
|
2018-03-13 12:57:01 +00:00
|
|
|
* common/init/board_init.c
|
2018-03-13 12:57:02 +00:00
|
|
|
* common/board_r.c
|
2018-03-13 12:57:03 +00:00
|
|
|
* common/board_info.c
|
2018-03-13 12:57:00 +00:00
|
|
|
*/
|
2018-03-09 17:28:12 +00:00
|
|
|
#include <init.h>
|
|
|
|
|
2002-11-02 23:30:20 +00:00
|
|
|
/*
|
|
|
|
* Function Prototypes
|
|
|
|
*/
|
2004-01-06 22:38:14 +00:00
|
|
|
void hang (void) __attribute__ ((noreturn));
|
2002-11-02 23:30:20 +00:00
|
|
|
|
2015-04-29 02:25:07 +00:00
|
|
|
#include <display_options.h>
|
2002-11-02 23:30:20 +00:00
|
|
|
|
2013-05-08 08:06:01 +00:00
|
|
|
/**
|
2014-07-12 13:24:06 +00:00
|
|
|
* arch_fixup_fdt() - Write arch-specific information to fdt
|
2013-05-08 08:06:01 +00:00
|
|
|
*
|
2014-07-12 13:24:06 +00:00
|
|
|
* Defined in arch/$(ARCH)/lib/bootm-fdt.c
|
2013-05-08 08:06:01 +00:00
|
|
|
*
|
|
|
|
* @blob: FDT blob to write to
|
|
|
|
* @return 0 if ok, or -ve FDT_ERR_... on failure
|
|
|
|
*/
|
2014-07-12 13:24:06 +00:00
|
|
|
int arch_fixup_fdt(void *blob);
|
2013-05-08 08:06:01 +00:00
|
|
|
|
2009-04-01 21:34:12 +00:00
|
|
|
/* common/cmd_source.c */
|
|
|
|
int source (ulong addr, const char *fit_uname);
|
2002-11-02 23:30:20 +00:00
|
|
|
|
2004-01-06 22:38:14 +00:00
|
|
|
extern ulong load_addr; /* Default Load Address */
|
2011-10-21 18:51:38 +00:00
|
|
|
extern ulong save_addr; /* Default Save Address */
|
|
|
|
extern ulong save_size; /* Default Save Size */
|
2002-11-02 23:30:20 +00:00
|
|
|
|
2003-07-24 23:38:38 +00:00
|
|
|
/* common/exports.c */
|
|
|
|
void jumptable_init(void);
|
|
|
|
|
2009-05-20 08:35:14 +00:00
|
|
|
/* common/kallsysm.c */
|
|
|
|
const char *symbol_lookup(unsigned long addr, unsigned long *caddr);
|
|
|
|
|
2004-01-06 22:38:14 +00:00
|
|
|
/* common/memsize.c */
|
2011-07-03 05:55:33 +00:00
|
|
|
long get_ram_size (long *, long);
|
2014-02-11 19:57:26 +00:00
|
|
|
phys_size_t get_effective_memsize(void);
|
2004-01-06 22:38:14 +00:00
|
|
|
|
2002-11-02 23:30:20 +00:00
|
|
|
/* $(BOARD)/$(BOARD).c */
|
|
|
|
void reset_phy (void);
|
2004-01-06 22:38:14 +00:00
|
|
|
void fdc_hw_init (void);
|
2002-11-02 23:30:20 +00:00
|
|
|
|
2018-04-15 17:51:26 +00:00
|
|
|
#if !defined(CONFIG_ENV_EEPROM_IS_ON_I2C) && defined(CONFIG_SYS_I2C_EEPROM_ADDR)
|
2008-10-16 13:01:15 +00:00
|
|
|
# define CONFIG_SYS_DEF_EEPROM_ADDR CONFIG_SYS_I2C_EEPROM_ADDR
|
2010-01-07 07:55:40 +00:00
|
|
|
#endif
|
2002-11-02 23:30:20 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#if defined(CONFIG_SYS_DRAM_TEST)
|
2002-11-02 23:30:20 +00:00
|
|
|
int testdram(void);
|
2008-10-16 13:01:15 +00:00
|
|
|
#endif /* CONFIG_SYS_DRAM_TEST */
|
2002-11-02 23:30:20 +00:00
|
|
|
|
2013-04-11 09:35:53 +00:00
|
|
|
#if defined(CONFIG_ARM)
|
|
|
|
void relocate_code(ulong);
|
|
|
|
#else
|
|
|
|
void relocate_code(ulong, gd_t *, ulong) __attribute__ ((noreturn));
|
2013-04-11 09:35:43 +00:00
|
|
|
#endif
|
2017-05-17 14:23:06 +00:00
|
|
|
|
2017-10-05 12:13:38 +00:00
|
|
|
void s_init(void);
|
|
|
|
|
2002-11-02 23:30:20 +00:00
|
|
|
void upmconfig (unsigned int, unsigned int *, unsigned int);
|
|
|
|
ulong get_tbclk (void);
|
2014-09-01 11:50:48 +00:00
|
|
|
void reset_misc (void);
|
2005-04-03 17:23:39 +00:00
|
|
|
void reset_cpu (ulong addr);
|
2007-08-16 03:30:26 +00:00
|
|
|
void ft_cpu_setup(void *blob, bd_t *bd);
|
|
|
|
void ft_pci_setup(void *blob, bd_t *bd);
|
|
|
|
|
2002-11-02 23:30:20 +00:00
|
|
|
/* $(CPU)/speed.c */
|
|
|
|
int get_clocks (void);
|
|
|
|
ulong get_bus_freq (ulong);
|
2010-09-20 14:05:31 +00:00
|
|
|
int get_serial_clock(void);
|
2002-11-02 23:30:20 +00:00
|
|
|
|
2011-08-23 11:06:56 +00:00
|
|
|
/* lib/uuid.c */
|
2014-04-02 08:20:03 +00:00
|
|
|
#include <uuid.h>
|
2011-08-23 11:06:56 +00:00
|
|
|
|
2010-04-13 03:28:05 +00:00
|
|
|
/* lib/vsprintf.c */
|
2011-11-02 09:52:07 +00:00
|
|
|
#include <vsprintf.h>
|
2002-11-02 23:30:20 +00:00
|
|
|
|
2012-05-23 08:01:04 +00:00
|
|
|
/* lib/net_utils.c */
|
|
|
|
#include <net.h>
|
|
|
|
|
2012-01-14 15:24:44 +00:00
|
|
|
#include <bootstage.h>
|
2002-11-02 23:30:20 +00:00
|
|
|
|
2017-01-02 11:48:30 +00:00
|
|
|
#else /* __ASSEMBLY__ */
|
|
|
|
|
|
|
|
#endif /* __ASSEMBLY__ */
|
2009-07-23 22:17:48 +00:00
|
|
|
|
|
|
|
/* Put only stuff here that the assembler can digest */
|
|
|
|
|
|
|
|
#ifdef CONFIG_POST
|
|
|
|
#define CONFIG_HAS_POST
|
2010-09-20 06:51:53 +00:00
|
|
|
#ifndef CONFIG_POST_ALT_LIST
|
|
|
|
#define CONFIG_POST_STD_LIST
|
|
|
|
#endif
|
2009-07-23 22:17:48 +00:00
|
|
|
#endif
|
|
|
|
|
2011-09-02 13:45:28 +00:00
|
|
|
#define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1))
|
2008-06-16 18:58:53 +00:00
|
|
|
|
2015-06-23 21:38:31 +00:00
|
|
|
/*
|
|
|
|
* check_member() - Check the offset of a structure member
|
|
|
|
*
|
|
|
|
* @structure: Name of structure (e.g. global_data)
|
|
|
|
* @member: Name of member (e.g. baudrate)
|
|
|
|
* @offset: Expected offset in bytes
|
|
|
|
*/
|
|
|
|
#define check_member(structure, member, offset) _Static_assert( \
|
|
|
|
offsetof(struct structure, member) == offset, \
|
|
|
|
"`struct " #structure "` offset for `" #member "` is not " #offset)
|
|
|
|
|
2015-08-04 18:33:52 +00:00
|
|
|
/* Avoid using CONFIG_EFI_STUB directly as we may boot from other loaders */
|
|
|
|
#ifdef CONFIG_EFI_STUB
|
|
|
|
#define ll_boot_init() false
|
|
|
|
#else
|
|
|
|
#define ll_boot_init() true
|
|
|
|
#endif
|
|
|
|
|
2011-07-08 10:44:25 +00:00
|
|
|
/* Pull in stuff for the build system */
|
|
|
|
#ifdef DO_DEPS_ONLY
|
2019-08-02 15:44:25 +00:00
|
|
|
# include <env_internal.h>
|
2011-07-08 10:44:25 +00:00
|
|
|
#endif
|
|
|
|
|
2002-11-02 23:30:20 +00:00
|
|
|
#endif /* __COMMON_H_ */
|