mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
a09fea1d28
- In ARMv8 NXP Layerscape platforms we also need to make use of CONFIG_SYS_RELOC_GD_ENV_ADDR now, do so. - On ENV_IS_IN_REMOTE, CONFIG_ENV_OFFSET is never used, drop the define to 0. - Add Kconfig entry for ENV_ADDR. - Make ENV_ADDR / ENV_OFFSET depend on the env locations that use it. - Add ENV_xxx_REDUND options that depend on their primary option and SYS_REDUNDAND_ENVIRONMENT - On a number of PowerPC platforms, use SPL_ENV_ADDR not CONFIG_ENV_ADDR for the pre-main-U-Boot environment location. - On ENV_IS_IN_SPI_FLASH, check not for CONFIG_ENV_ADDR being set but rather it being non-zero, as it will now be zero by default. - Rework the env_offset absolute in env/embedded.o to not use CONFIG_ENV_OFFSET as it was the only use of ENV_OFFSET within ENV_IS_IN_FLASH. - Migrate all platforms. Cc: Wolfgang Denk <wd@denx.de> Cc: Joe Hershberger <joe.hershberger@ni.com> Cc: Patrick Delaunay <patrick.delaunay@st.com> Cc: uboot-stm32@st-md-mailman.stormreply.com Signed-off-by: Tom Rini <trini@konsulko.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com> Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
62 lines
2.2 KiB
C
62 lines
2.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2011
|
|
* Heiko Schocher, DENX Software Engineering, hs@denx.de.
|
|
*/
|
|
|
|
#ifndef __CONFIG_KEYMILE_POWERPC_H
|
|
#define __CONFIG_KEYMILE_POWERPC_H
|
|
|
|
/* Do boardspecific init for all boards */
|
|
|
|
#define CONFIG_JFFS2_CMDLINE
|
|
|
|
/* EEprom support 24C08, 24C16, 24C64 */
|
|
#define CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE
|
|
#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3 /* 8 Byte write page */
|
|
#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10
|
|
|
|
#define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
|
|
|
|
#define CONFIG_SYS_MEMTEST_END 0x00f00000 /* 1 ... 15 MB in DRAM */
|
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
|
|
|
|
/* Reserve 4 MB for malloc */
|
|
#define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024)
|
|
|
|
/******************************************************************************
|
|
* (PRAM usage)
|
|
* ... -------------------------------------------------------
|
|
* ... |ROOTFSSIZE | PNVRAM |PHRAM |RESERVED_PRAM | END_OF_RAM
|
|
* ... |<------------------- pram -------------------------->|
|
|
* ... -------------------------------------------------------
|
|
* @END_OF_RAM:
|
|
* @CONFIG_KM_RESERVED_PRAM: reserved pram for special purpose
|
|
* @CONFIG_KM_PHRAM: address for /var
|
|
* @CONFIG_KM_PNVRAM: address for PNVRAM (for the application)
|
|
* @CONFIG_KM_ROOTFSSIZE: address for rootfilesystem in RAM
|
|
*/
|
|
|
|
/* size of rootfs in RAM */
|
|
#define CONFIG_KM_ROOTFSSIZE 0x0
|
|
/* set the default PRAM value to at least PNVRAM + PHRAM when pram env variable
|
|
* is not valid yet, which is the case for when u-boot copies itself to RAM */
|
|
#define CONFIG_PRAM ((CONFIG_KM_PNVRAM + CONFIG_KM_PHRAM)>>10)
|
|
|
|
/* architecture specific default bootargs */
|
|
#define CONFIG_KM_DEF_BOOT_ARGS_CPU ""
|
|
|
|
#define CONFIG_KM_DEF_ENV_CPU \
|
|
"u-boot="CONFIG_HOSTNAME "/u-boot.bin\0" \
|
|
"update=" \
|
|
"protect off " __stringify(BOOTFLASH_START) " +${filesize} && "\
|
|
"erase " __stringify(BOOTFLASH_START) " +${filesize} && "\
|
|
"cp.b ${load_addr_r} " __stringify(BOOTFLASH_START) \
|
|
" ${filesize} && " \
|
|
"protect on " __stringify(BOOTFLASH_START) " +${filesize}\0"\
|
|
"set_fdthigh=true\0" \
|
|
"checkfdt=true\0" \
|
|
""
|
|
|
|
#endif /* __CONFIG_KEYMILE_POWERPC_H */
|