MIPS: convert CONFIG_SYS_MIPS_TIMER_FREQ to Kconfig
[platform/kernel/u-boot.git] / include / configs / km / km-powerpc.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2011
4  * Heiko Schocher, DENX Software Engineering, hs@denx.de.
5  */
6
7 #ifndef __CONFIG_KEYMILE_POWERPC_H
8 #define __CONFIG_KEYMILE_POWERPC_H
9
10 /* Do boardspecific init for all boards */
11
12 /* Increase max size of compressed kernel */
13
14 /******************************************************************************
15  * (PRAM usage)
16  * ... -------------------------------------------------------
17  * ... |ROOTFSSIZE | PNVRAM |PHRAM |RESERVED_PRAM | END_OF_RAM
18  * ... |<------------------- pram -------------------------->|
19  * ... -------------------------------------------------------
20  * @END_OF_RAM:
21  * @CONFIG_KM_RESERVED_PRAM: reserved pram for special purpose
22  * @CONFIG_KM_PHRAM: address for /var
23  * @CONFIG_KM_PNVRAM: address for PNVRAM (for the application)
24  */
25
26 /* set the default PRAM value to at least PNVRAM + PHRAM when pram env variable
27  * is not valid yet, which is the case for when u-boot copies itself to RAM */
28 #define CONFIG_PRAM             ((CONFIG_KM_PNVRAM + CONFIG_KM_PHRAM)>>10)
29
30 /* architecture specific default bootargs */
31 #define CONFIG_KM_DEF_BOOT_ARGS_CPU             ""
32
33 #define CONFIG_KM_DEF_ENV_CPU                                           \
34         "u-boot="CONFIG_HOSTNAME "/u-boot.bin\0"                \
35         "update="                                                       \
36                 "protect off " __stringify(BOOTFLASH_START) " +${filesize} && "\
37                 "erase " __stringify(BOOTFLASH_START) "  +${filesize} && "\
38                 "cp.b ${load_addr_r} " __stringify(BOOTFLASH_START)     \
39                 "  ${filesize} && "                                     \
40                 "protect on " __stringify(BOOTFLASH_START) "  +${filesize}\0"\
41         "set_fdthigh=true\0"                                            \
42         "checkfdt=true\0"                                               \
43         "bootm_mapsize=" __stringify(CONFIG_SYS_BOOTM_LEN) "\0"         \
44         ""
45
46 #endif /* __CONFIG_KEYMILE_POWERPC_H */