blob: 7bfe12fecbba5989f3b3819d74b80b8fd427cbb9 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Holger Brunck752ba312011-03-14 16:01:04 +01002/*
3 * (C) Copyright 2011
4 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
Holger Brunck752ba312011-03-14 16:01:04 +01005 */
6
7#ifndef __CONFIG_KEYMILE_POWERPC_H
8#define __CONFIG_KEYMILE_POWERPC_H
9
Simon Glass4fb732d2013-03-05 14:39:46 +000010/* Do boardspecific init for all boards */
Simon Glass4fb732d2013-03-05 14:39:46 +000011
Holger Brunck752ba312011-03-14 16:01:04 +010012#define CONFIG_JFFS2_CMDLINE
13
Stefan Biglerc9449302011-07-04 22:24:01 +000014/* EEprom support 24C08, 24C16, 24C64 */
Stefan Biglerc9449302011-07-04 22:24:01 +000015#define CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE
16#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3 /* 8 Byte write page */
17#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10
18
Holger Brunck752ba312011-03-14 16:01:04 +010019#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
20
Valentin Longchamp1192b522013-10-18 11:47:15 +020021/* Reserve 4 MB for malloc */
22#define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024)
23
Holger Brunckc7c71692020-10-09 17:21:32 +020024/* Increase max size of compressed kernel */
25#define CONFIG_SYS_BOOTM_LEN 0x2000000 /* 32 MB */
26
Holger Brunck752ba312011-03-14 16:01:04 +010027/******************************************************************************
28 * (PRAM usage)
29 * ... -------------------------------------------------------
30 * ... |ROOTFSSIZE | PNVRAM |PHRAM |RESERVED_PRAM | END_OF_RAM
31 * ... |<------------------- pram -------------------------->|
32 * ... -------------------------------------------------------
33 * @END_OF_RAM:
34 * @CONFIG_KM_RESERVED_PRAM: reserved pram for special purpose
35 * @CONFIG_KM_PHRAM: address for /var
36 * @CONFIG_KM_PNVRAM: address for PNVRAM (for the application)
37 * @CONFIG_KM_ROOTFSSIZE: address for rootfilesystem in RAM
38 */
39
40/* size of rootfs in RAM */
41#define CONFIG_KM_ROOTFSSIZE 0x0
Valentin Longchamp25cb70d2014-08-13 10:24:04 +020042/* set the default PRAM value to at least PNVRAM + PHRAM when pram env variable
43 * is not valid yet, which is the case for when u-boot copies itself to RAM */
44#define CONFIG_PRAM ((CONFIG_KM_PNVRAM + CONFIG_KM_PHRAM)>>10)
Holger Brunck752ba312011-03-14 16:01:04 +010045
Holger Brunck2ff59ee2011-07-04 21:27:16 +000046/* architecture specific default bootargs */
47#define CONFIG_KM_DEF_BOOT_ARGS_CPU ""
48
Holger Brunck752ba312011-03-14 16:01:04 +010049#define CONFIG_KM_DEF_ENV_CPU \
Mario Six790d8442018-03-28 14:38:20 +020050 "u-boot="CONFIG_HOSTNAME "/u-boot.bin\0" \
Holger Brunck752ba312011-03-14 16:01:04 +010051 "update=" \
Marek Vasutfd5ba892012-09-23 17:41:23 +020052 "protect off " __stringify(BOOTFLASH_START) " +${filesize} && "\
53 "erase " __stringify(BOOTFLASH_START) " +${filesize} && "\
54 "cp.b ${load_addr_r} " __stringify(BOOTFLASH_START) \
Holger Brunck752ba312011-03-14 16:01:04 +010055 " ${filesize} && " \
Marek Vasutfd5ba892012-09-23 17:41:23 +020056 "protect on " __stringify(BOOTFLASH_START) " +${filesize}\0"\
Gerlando Falauto18a74ec2014-01-27 16:58:28 +010057 "set_fdthigh=true\0" \
Valentin Longchamp15e79cc2015-11-13 16:15:20 +010058 "checkfdt=true\0" \
Holger Brunckc7c71692020-10-09 17:21:32 +020059 "bootm_mapsize=" __stringify(CONFIG_SYS_BOOTM_LEN) "\0" \
Holger Brunck752ba312011-03-14 16:01:04 +010060 ""
61
Holger Brunck752ba312011-03-14 16:01:04 +010062#endif /* __CONFIG_KEYMILE_POWERPC_H */