2015-04-15 18:54:26 +08:00
|
|
|
CONFIG_ARM=y
|
2021-08-28 09:18:30 +08:00
|
|
|
CONFIG_SKIP_LOWLEVEL_INIT=y
|
2017-03-18 21:01:44 +08:00
|
|
|
CONFIG_SYS_THUMB_BUILD=y
|
2017-03-14 09:41:36 +08:00
|
|
|
CONFIG_ARCH_VF610=y
|
2018-02-04 01:10:38 +08:00
|
|
|
CONFIG_SYS_TEXT_BASE=0x3f401000
|
2021-11-01 20:19:22 +08:00
|
|
|
CONFIG_SYS_MALLOC_LEN=0x0220000
|
2019-05-17 22:48:43 +08:00
|
|
|
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
2020-08-11 03:31:07 +08:00
|
|
|
CONFIG_NR_DRAM_BANKS=1
|
2020-12-01 01:50:32 +08:00
|
|
|
CONFIG_SYS_MEMTEST_START=0x80010000
|
|
|
|
CONFIG_SYS_MEMTEST_END=0x87c00000
|
2019-11-19 09:02:10 +08:00
|
|
|
CONFIG_ENV_SIZE=0x20000
|
|
|
|
CONFIG_ENV_OFFSET=0x180000
|
2020-01-23 02:38:00 +08:00
|
|
|
CONFIG_DM_GPIO=y
|
2020-07-28 20:46:52 +08:00
|
|
|
CONFIG_DEFAULT_DEVICE_TREE="vf610-colibri"
|
2021-06-28 22:17:29 +08:00
|
|
|
CONFIG_TARGET_COLIBRI_VF=y
|
2018-02-06 21:58:59 +08:00
|
|
|
CONFIG_ENV_VARS_UBOOT_CONFIG=y
|
2021-08-23 22:25:31 +08:00
|
|
|
CONFIG_SYS_LOAD_ADDR=0x80008000
|
2020-09-22 01:45:07 +08:00
|
|
|
CONFIG_BOOTDELAY=1
|
2020-09-14 16:01:09 +08:00
|
|
|
CONFIG_USE_PREBOOT=y
|
|
|
|
CONFIG_PREBOOT="setenv fdtfile ${soc}-colibri-${fdt_board}.dtb"
|
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 13:10:40 +08:00
|
|
|
CONFIG_LOGLEVEL=3
|
2016-11-17 00:49:23 +08:00
|
|
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
2018-03-28 20:38:17 +08:00
|
|
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
2017-01-24 04:31:21 +08:00
|
|
|
CONFIG_ARCH_MISC_INIT=y
|
2017-01-24 04:31:20 +08:00
|
|
|
CONFIG_BOARD_EARLY_INIT_F=y
|
2016-04-22 09:37:19 +08:00
|
|
|
CONFIG_HUSH_PARSER=y
|
2019-03-26 00:24:59 +08:00
|
|
|
# CONFIG_SYS_LONGHELP is not set
|
2015-09-28 20:14:15 +08:00
|
|
|
CONFIG_SYS_PROMPT="Colibri VFxx # "
|
2019-03-26 00:24:59 +08:00
|
|
|
# CONFIG_CMD_BOOTD is not set
|
|
|
|
# CONFIG_CMD_BOOTM is not set
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_BOOTZ=y
|
2019-03-26 00:24:59 +08:00
|
|
|
# CONFIG_CMD_ELF is not set
|
|
|
|
# CONFIG_CMD_IMI is not set
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_ASKENV=y
|
2016-04-23 04:41:25 +08:00
|
|
|
CONFIG_CMD_MEMTEST=y
|
2017-08-15 07:58:53 +08:00
|
|
|
CONFIG_CMD_DFU=y
|
2019-03-26 00:25:00 +08:00
|
|
|
CONFIG_CMD_DM=y
|
2019-03-26 00:24:59 +08:00
|
|
|
# CONFIG_CMD_FLASH is not set
|
2017-08-15 07:58:53 +08:00
|
|
|
CONFIG_CMD_FUSE=y
|
|
|
|
CONFIG_CMD_GPIO=y
|
2018-12-06 21:55:03 +08:00
|
|
|
# CONFIG_CMD_LOADB is not set
|
|
|
|
# CONFIG_CMD_LOADS is not set
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_MMC=y
|
2020-06-17 03:20:04 +08:00
|
|
|
CONFIG_CMD_PART=y
|
2016-04-23 04:41:25 +08:00
|
|
|
CONFIG_CMD_USB=y
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_USB_MASS_STORAGE=y
|
2015-06-23 05:15:30 +08:00
|
|
|
# CONFIG_CMD_SETEXPR is not set
|
2016-04-23 04:41:25 +08:00
|
|
|
CONFIG_CMD_DHCP=y
|
2018-12-06 21:55:03 +08:00
|
|
|
# CONFIG_CMD_NFS is not set
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_MII=y
|
2016-04-23 04:41:25 +08:00
|
|
|
CONFIG_CMD_PING=y
|
2017-04-27 12:27:55 +08:00
|
|
|
CONFIG_CMD_BMP=y
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_EXT4=y
|
|
|
|
CONFIG_CMD_FAT=y
|
|
|
|
CONFIG_CMD_FS_GENERIC=y
|
2017-10-23 05:55:07 +08:00
|
|
|
CONFIG_MTDIDS_DEFAULT="nand0=vf610_nfc"
|
|
|
|
CONFIG_MTDPARTS_DEFAULT="mtdparts=vf610_nfc:128k(vf-bcb)ro,1408k(u-boot)ro,512k(u-boot-env),-(ubi)"
|
2016-09-21 13:58:19 +08:00
|
|
|
CONFIG_CMD_UBI=y
|
2016-01-27 13:01:50 +08:00
|
|
|
CONFIG_OF_CONTROL=y
|
2020-07-03 19:48:56 +08:00
|
|
|
CONFIG_ENV_OVERWRITE=y
|
2017-08-28 19:16:32 +08:00
|
|
|
CONFIG_ENV_IS_IN_NAND=y
|
2019-11-13 11:46:36 +08:00
|
|
|
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
2018-04-02 00:37:53 +08:00
|
|
|
CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
|
2020-10-10 00:22:06 +08:00
|
|
|
CONFIG_VERSION_VARIABLE=y
|
2015-06-23 05:15:29 +08:00
|
|
|
CONFIG_DM=y
|
2016-09-20 01:31:30 +08:00
|
|
|
CONFIG_DFU_NAND=y
|
2021-06-01 19:21:47 +08:00
|
|
|
CONFIG_SYS_DFU_DATA_BUF_SIZE=0x100000
|
2016-01-27 13:01:50 +08:00
|
|
|
CONFIG_VYBRID_GPIO=y
|
2019-03-26 00:24:59 +08:00
|
|
|
# CONFIG_MMC_HW_PARTITIONING is not set
|
2019-06-21 11:42:28 +08:00
|
|
|
CONFIG_FSL_ESDHC_IMX=y
|
2019-12-05 06:18:38 +08:00
|
|
|
CONFIG_MTD=y
|
2019-10-04 01:50:04 +08:00
|
|
|
CONFIG_DM_MTD=y
|
2015-05-09 01:07:11 +08:00
|
|
|
CONFIG_NAND_VF610_NFC=y
|
2019-03-26 00:25:01 +08:00
|
|
|
CONFIG_NAND_VF610_NFC_DT=y
|
2015-05-09 01:07:11 +08:00
|
|
|
CONFIG_SYS_NAND_VF610_NFC_60_ECC_BYTES=y
|
2021-09-23 02:50:34 +08:00
|
|
|
CONFIG_SYS_NAND_ONFI_DETECTION=y
|
2016-09-21 13:58:19 +08:00
|
|
|
CONFIG_MTD_UBI_FASTMAP=y
|
2017-08-02 08:19:59 +08:00
|
|
|
CONFIG_PHYLIB=y
|
2017-08-02 08:20:00 +08:00
|
|
|
CONFIG_PHY_MICREL=y
|
2019-03-06 20:48:27 +08:00
|
|
|
CONFIG_PHY_MICREL_KSZ8XXX=y
|
2019-03-26 00:25:01 +08:00
|
|
|
CONFIG_DM_ETH=y
|
|
|
|
CONFIG_FEC_MXC=y
|
2018-07-21 12:03:57 +08:00
|
|
|
CONFIG_MII=y
|
2019-03-26 00:25:00 +08:00
|
|
|
CONFIG_PINCTRL=y
|
|
|
|
CONFIG_PINCTRL_VYBRID=y
|
|
|
|
CONFIG_DM_REGULATOR=y
|
|
|
|
CONFIG_DM_REGULATOR_FIXED=y
|
2016-09-09 04:11:59 +08:00
|
|
|
CONFIG_DM_SERIAL=y
|
2016-01-14 11:39:00 +08:00
|
|
|
CONFIG_FSL_LPUART=y
|
2016-03-25 22:39:47 +08:00
|
|
|
CONFIG_USB=y
|
2017-05-13 10:33:28 +08:00
|
|
|
CONFIG_USB_EHCI_HCD=y
|
2016-10-18 10:12:37 +08:00
|
|
|
CONFIG_USB_STORAGE=y
|
2016-03-25 22:39:47 +08:00
|
|
|
CONFIG_USB_GADGET=y
|
2017-09-07 14:58:08 +08:00
|
|
|
CONFIG_USB_GADGET_MANUFACTURER="Toradex"
|
|
|
|
CONFIG_USB_GADGET_VENDOR_NUM=0x1b67
|
|
|
|
CONFIG_USB_GADGET_PRODUCT_NUM=0x4000
|
2016-04-13 19:20:25 +08:00
|
|
|
CONFIG_CI_UDC=y
|
2016-04-13 19:20:26 +08:00
|
|
|
CONFIG_USB_GADGET_DOWNLOAD=y
|
2019-06-10 19:47:52 +08:00
|
|
|
CONFIG_DM_VIDEO=y
|
2020-02-05 05:43:06 +08:00
|
|
|
# CONFIG_VIDEO_BPP8 is not set
|
|
|
|
# CONFIG_VIDEO_BPP16 is not set
|
2019-08-14 20:11:27 +08:00
|
|
|
CONFIG_VIDEO_FSL_DCU_FB=y
|
2020-08-12 01:23:35 +08:00
|
|
|
CONFIG_SPLASH_SCREEN_ALIGN=y
|
2017-05-01 23:41:11 +08:00
|
|
|
CONFIG_OF_LIBFDT_OVERLAY=y
|
2019-03-26 00:25:08 +08:00
|
|
|
CONFIG_FDT_FIXUP_PARTITIONS=y
|
2018-11-09 22:31:14 +08:00
|
|
|
# CONFIG_EFI_UNICODE_CAPITALIZATION is not set
|