blob: b84f12dbebddcd484ac7e435711180e2c8be1f0f [file] [log] [blame]
Holger Brunckde3ad132011-03-14 16:01:04 +01001/*
2 * (C) Copyright 2011
3 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#ifndef __CONFIG_KEYMILE_POWERPC_H
25#define __CONFIG_KEYMILE_POWERPC_H
26
Simon Glassea8c37d2013-03-05 14:39:46 +000027/* Do boardspecific init for all boards */
28#define CONFIG_BOARD_EARLY_INIT_R
29#define CONFIG_LAST_STAGE_INIT
30
Holger Brunckde3ad132011-03-14 16:01:04 +010031#define CONFIG_BOOTCOUNT_LIMIT
32
33#define CONFIG_CMD_DTT
34#define CONFIG_JFFS2_CMDLINE
35
Stefan Bigler4daea6f2011-07-04 22:24:01 +000036/* EEprom support 24C08, 24C16, 24C64 */
37#define CONFIG_SYS_I2C_MULTI_EEPROMS
38#define CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE
39#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3 /* 8 Byte write page */
40#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10
41
Holger Brunckde3ad132011-03-14 16:01:04 +010042#define CONFIG_ENV_SIZE 0x04000 /* Size of Environment */
43#define CONFIG_FLASH_CFI_MTD
44
45#define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
46
47#define CONFIG_SYS_MEMTEST_END 0x00f00000 /* 1 ... 15 MB in DRAM */
48
49#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
50
51/******************************************************************************
52 * (PRAM usage)
53 * ... -------------------------------------------------------
54 * ... |ROOTFSSIZE | PNVRAM |PHRAM |RESERVED_PRAM | END_OF_RAM
55 * ... |<------------------- pram -------------------------->|
56 * ... -------------------------------------------------------
57 * @END_OF_RAM:
58 * @CONFIG_KM_RESERVED_PRAM: reserved pram for special purpose
59 * @CONFIG_KM_PHRAM: address for /var
60 * @CONFIG_KM_PNVRAM: address for PNVRAM (for the application)
61 * @CONFIG_KM_ROOTFSSIZE: address for rootfilesystem in RAM
62 */
63
64/* size of rootfs in RAM */
65#define CONFIG_KM_ROOTFSSIZE 0x0
66/* pseudo-non volatile RAM [hex] */
67#define CONFIG_KM_PNVRAM 0x80000
68/* physical RAM MTD size [hex] */
69#define CONFIG_KM_PHRAM 0x100000
70/* resereved pram area at the end of memroy [hex] */
71#define CONFIG_KM_RESERVED_PRAM 0x0
72/* enable protected RAM */
73#define CONFIG_PRAM 0
74
75#define CONFIG_KM_CRAMFS_ADDR 0x800000
76#define CONFIG_KM_KERNEL_ADDR 0x400000 /* 3968Kbytes */
77#define CONFIG_KM_FDT_ADDR 0x7E0000 /* 128Kbytes */
78
Holger Brunckdb0bb572011-07-04 21:27:16 +000079/* architecture specific default bootargs */
80#define CONFIG_KM_DEF_BOOT_ARGS_CPU ""
81
Holger Brunckde3ad132011-03-14 16:01:04 +010082#define CONFIG_KM_DEF_ENV_CPU \
Holger Brunckdb0bb572011-07-04 21:27:16 +000083 "boot=bootm ${load_addr_r} - ${fdt_addr_r}\0" \
Holger Brunckde3ad132011-03-14 16:01:04 +010084 "cramfsloadfdt=" \
85 "cramfsload ${fdt_addr_r} " \
Holger Brunckdb0bb572011-07-04 21:27:16 +000086 "fdt_0x${IVM_BoardId}_0x${IVM_HWKey}.dtb\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +020087 "fdt_addr_r=" __stringify(CONFIG_KM_FDT_ADDR) "\0" \
88 "u-boot="__stringify(CONFIG_HOSTNAME) "/u-boot.bin\0" \
Holger Brunckde3ad132011-03-14 16:01:04 +010089 "update=" \
Marek Vasut93ea89f2012-09-23 17:41:23 +020090 "protect off " __stringify(BOOTFLASH_START) " +${filesize} && "\
91 "erase " __stringify(BOOTFLASH_START) " +${filesize} && "\
92 "cp.b ${load_addr_r} " __stringify(BOOTFLASH_START) \
Holger Brunckde3ad132011-03-14 16:01:04 +010093 " ${filesize} && " \
Marek Vasut93ea89f2012-09-23 17:41:23 +020094 "protect on " __stringify(BOOTFLASH_START) " +${filesize}\0"\
Holger Brunckde3ad132011-03-14 16:01:04 +010095 ""
96
Holger Brunckde3ad132011-03-14 16:01:04 +010097#endif /* __CONFIG_KEYMILE_POWERPC_H */