mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
b44b30260f
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>
107 lines
3 KiB
C
107 lines
3 KiB
C
/*
|
|
* Copyright (C) 2015-2016 Socionext Inc.
|
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __MACH_INIT_H
|
|
#define __MACH_INIT_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
#define UNIPHIER_MAX_NR_DRAM_CH 3
|
|
|
|
struct uniphier_dram_ch {
|
|
unsigned long size;
|
|
unsigned int width;
|
|
};
|
|
|
|
struct uniphier_board_data {
|
|
unsigned int dram_freq;
|
|
struct uniphier_dram_ch dram_ch[UNIPHIER_MAX_NR_DRAM_CH];
|
|
unsigned int flags;
|
|
|
|
#define UNIPHIER_BD_DRAM_SPARSE BIT(9)
|
|
#define UNIPHIER_BD_DDR3PLUS BIT(8)
|
|
};
|
|
|
|
const struct uniphier_board_data *uniphier_get_board_param(void);
|
|
|
|
int uniphier_ld4_init(const struct uniphier_board_data *bd);
|
|
int uniphier_pro4_init(const struct uniphier_board_data *bd);
|
|
int uniphier_sld8_init(const struct uniphier_board_data *bd);
|
|
int uniphier_pro5_init(const struct uniphier_board_data *bd);
|
|
int uniphier_pxs2_init(const struct uniphier_board_data *bd);
|
|
|
|
#if defined(CONFIG_MICRO_SUPPORT_CARD)
|
|
void uniphier_sbc_init_admulti(void);
|
|
void uniphier_sbc_init_savepin(void);
|
|
void uniphier_ld4_sbc_init(void);
|
|
void uniphier_pxs2_sbc_init(void);
|
|
void uniphier_ld11_sbc_init(void);
|
|
#else
|
|
static inline void uniphier_sbc_init_admulti(void)
|
|
{
|
|
}
|
|
|
|
static inline void uniphier_sbc_init_savepin(void)
|
|
{
|
|
}
|
|
|
|
static inline void uniphier_ld4_sbc_init(void)
|
|
{
|
|
}
|
|
|
|
static inline void uniphier_pxs2_sbc_init(void)
|
|
{
|
|
}
|
|
|
|
static inline void uniphier_ld11_sbc_init(void)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
void uniphier_ld4_bcu_init(const struct uniphier_board_data *bd);
|
|
|
|
int uniphier_memconf_2ch_init(const struct uniphier_board_data *bd);
|
|
int uniphier_memconf_3ch_init(const struct uniphier_board_data *bd);
|
|
|
|
int uniphier_ld4_dpll_init(const struct uniphier_board_data *bd);
|
|
int uniphier_pro4_dpll_init(const struct uniphier_board_data *bd);
|
|
int uniphier_sld8_dpll_init(const struct uniphier_board_data *bd);
|
|
int uniphier_pro5_dpll_init(const struct uniphier_board_data *bd);
|
|
int uniphier_pxs2_dpll_init(const struct uniphier_board_data *bd);
|
|
|
|
void uniphier_ld4_early_clk_init(void);
|
|
|
|
void uniphier_ld4_dram_clk_init(void);
|
|
void uniphier_pro5_dram_clk_init(void);
|
|
void uniphier_pxs2_dram_clk_init(void);
|
|
|
|
int uniphier_ld4_umc_init(const struct uniphier_board_data *bd);
|
|
int uniphier_pro4_umc_init(const struct uniphier_board_data *bd);
|
|
int uniphier_sld8_umc_init(const struct uniphier_board_data *bd);
|
|
int uniphier_pro5_umc_init(const struct uniphier_board_data *bd);
|
|
int uniphier_pxs2_umc_init(const struct uniphier_board_data *bd);
|
|
|
|
void uniphier_ld4_pll_init(void);
|
|
void uniphier_pro4_pll_init(void);
|
|
void uniphier_ld11_pll_init(void);
|
|
void uniphier_ld20_pll_init(void);
|
|
void uniphier_pxs3_pll_init(void);
|
|
|
|
void uniphier_ld4_clk_init(void);
|
|
void uniphier_pro4_clk_init(void);
|
|
void uniphier_pro5_clk_init(void);
|
|
void uniphier_pxs2_clk_init(void);
|
|
void uniphier_ld11_clk_init(void);
|
|
void uniphier_ld20_clk_init(void);
|
|
void uniphier_pxs3_clk_init(void);
|
|
|
|
unsigned int uniphier_boot_device_raw(void);
|
|
int uniphier_have_internal_stm(void);
|
|
int uniphier_boot_from_backend(void);
|
|
int uniphier_pin_init(const char *pinconfig_name);
|
|
|
|
#endif /* __MACH_INIT_H */
|