blob: c4d4b0c0fae0e1df5f62711642c047db3c8de444 [file] [log] [blame]
Holger Brunck752ba312011-03-14 16:01:04 +01001/*
2 * (C) Copyright 2011
3 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
4 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
Holger Brunck752ba312011-03-14 16:01:04 +01006 */
7
8#ifndef __CONFIG_KEYMILE_POWERPC_H
9#define __CONFIG_KEYMILE_POWERPC_H
10
Simon Glass4fb732d2013-03-05 14:39:46 +000011/* Do boardspecific init for all boards */
Simon Glass4fb732d2013-03-05 14:39:46 +000012
Holger Brunck752ba312011-03-14 16:01:04 +010013#define CONFIG_JFFS2_CMDLINE
14
Valentin Longchamp391cc9b2013-10-18 11:47:18 +020015/* standard km ethernet_present for piggy */
16#define CONFIG_KM_COMMON_ETH_INIT
17
Stefan Biglerc9449302011-07-04 22:24:01 +000018/* EEprom support 24C08, 24C16, 24C64 */
Stefan Biglerc9449302011-07-04 22:24:01 +000019#define CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE
20#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3 /* 8 Byte write page */
21#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10
22
Holger Brunck752ba312011-03-14 16:01:04 +010023#define CONFIG_ENV_SIZE 0x04000 /* Size of Environment */
24#define CONFIG_FLASH_CFI_MTD
25
26#define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
27
28#define CONFIG_SYS_MEMTEST_END 0x00f00000 /* 1 ... 15 MB in DRAM */
29
30#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
31
Valentin Longchamp1192b522013-10-18 11:47:15 +020032/* Reserve 4 MB for malloc */
33#define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024)
34
Holger Brunck752ba312011-03-14 16:01:04 +010035/******************************************************************************
36 * (PRAM usage)
37 * ... -------------------------------------------------------
38 * ... |ROOTFSSIZE | PNVRAM |PHRAM |RESERVED_PRAM | END_OF_RAM
39 * ... |<------------------- pram -------------------------->|
40 * ... -------------------------------------------------------
41 * @END_OF_RAM:
42 * @CONFIG_KM_RESERVED_PRAM: reserved pram for special purpose
43 * @CONFIG_KM_PHRAM: address for /var
44 * @CONFIG_KM_PNVRAM: address for PNVRAM (for the application)
45 * @CONFIG_KM_ROOTFSSIZE: address for rootfilesystem in RAM
46 */
47
48/* size of rootfs in RAM */
49#define CONFIG_KM_ROOTFSSIZE 0x0
50/* pseudo-non volatile RAM [hex] */
51#define CONFIG_KM_PNVRAM 0x80000
52/* physical RAM MTD size [hex] */
53#define CONFIG_KM_PHRAM 0x100000
54/* resereved pram area at the end of memroy [hex] */
55#define CONFIG_KM_RESERVED_PRAM 0x0
Valentin Longchamp25cb70d2014-08-13 10:24:04 +020056/* set the default PRAM value to at least PNVRAM + PHRAM when pram env variable
57 * is not valid yet, which is the case for when u-boot copies itself to RAM */
58#define CONFIG_PRAM ((CONFIG_KM_PNVRAM + CONFIG_KM_PHRAM)>>10)
Holger Brunck752ba312011-03-14 16:01:04 +010059
Holger Brunck0ca0d702015-11-17 10:53:27 +010060#define CONFIG_KM_CRAMFS_ADDR 0xC00000
61#define CONFIG_KM_KERNEL_ADDR 0x400000 /* 7680Kbytes */
62#define CONFIG_KM_FDT_ADDR 0xB80000 /* 512Kbytes */
Holger Brunck752ba312011-03-14 16:01:04 +010063
Holger Brunck2ff59ee2011-07-04 21:27:16 +000064/* architecture specific default bootargs */
65#define CONFIG_KM_DEF_BOOT_ARGS_CPU ""
66
Holger Brunck752ba312011-03-14 16:01:04 +010067#define CONFIG_KM_DEF_ENV_CPU \
Mario Six790d8442018-03-28 14:38:20 +020068 "u-boot="CONFIG_HOSTNAME "/u-boot.bin\0" \
Holger Brunck752ba312011-03-14 16:01:04 +010069 "update=" \
Marek Vasutfd5ba892012-09-23 17:41:23 +020070 "protect off " __stringify(BOOTFLASH_START) " +${filesize} && "\
71 "erase " __stringify(BOOTFLASH_START) " +${filesize} && "\
72 "cp.b ${load_addr_r} " __stringify(BOOTFLASH_START) \
Holger Brunck752ba312011-03-14 16:01:04 +010073 " ${filesize} && " \
Marek Vasutfd5ba892012-09-23 17:41:23 +020074 "protect on " __stringify(BOOTFLASH_START) " +${filesize}\0"\
Gerlando Falauto18a74ec2014-01-27 16:58:28 +010075 "set_fdthigh=true\0" \
Valentin Longchamp15e79cc2015-11-13 16:15:20 +010076 "checkfdt=true\0" \
Holger Brunck752ba312011-03-14 16:01:04 +010077 ""
78
Holger Brunck752ba312011-03-14 16:01:04 +010079#endif /* __CONFIG_KEYMILE_POWERPC_H */