blob: fd4cc70a6709a93d72cee42973be7626a7f2e407 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Chander Kashyapb9a1ef22011-08-18 22:37:19 +00002/*
3 * Copyright (C) 2011 Samsung Electronics
4 *
Chander Kashyap393cb362011-12-06 23:34:12 +00005 * Configuration settings for the SAMSUNG ORIGEN (EXYNOS4210) board.
Chander Kashyapb9a1ef22011-08-18 22:37:19 +00006 */
7
Piotr Wilczekbf7716d2014-03-07 14:59:46 +01008#ifndef __CONFIG_ORIGEN_H
9#define __CONFIG_ORIGEN_H
10
Simon Glass4c7bb1d2014-10-07 22:01:44 -060011#include <configs/exynos4-common.h>
Piotr Wilczekbf7716d2014-03-07 14:59:46 +010012
Piotr Wilczekbf7716d2014-03-07 14:59:46 +010013/* ORIGEN has 4 bank of DRAM */
Tom Riniaa6e94d2022-11-16 13:10:37 -050014#define CFG_SYS_SDRAM_BASE 0x40000000
15#define PHYS_SDRAM_1 CFG_SYS_SDRAM_BASE
Piotr Wilczekbf7716d2014-03-07 14:59:46 +010016#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
17
Chander Kashyapb9a1ef22011-08-18 22:37:19 +000018/* Power Down Modes */
19#define S5P_CHECK_SLEEP 0x00000BAD
20#define S5P_CHECK_DIDLE 0xBAD00000
21#define S5P_CHECK_LPA 0xABAD0000
22
Chander Kashyap98a48c52011-08-18 22:37:20 +000023/* MMC SPL */
Chander Kashyap98a48c52011-08-18 22:37:20 +000024#define COPY_BL2_FNPTR_ADDR 0x02020030
Inderpal Singh8a000612013-04-04 23:09:21 +000025
Tom Rini0613c362022-12-04 10:03:50 -050026#define CFG_EXTRA_ENV_SETTINGS \
Guillaume GARDET7741c8b2014-10-08 15:04:38 +020027 "loadaddr=0x40007000\0" \
28 "rdaddr=0x48000000\0" \
29 "kerneladdr=0x40007000\0" \
30 "ramdiskaddr=0x48000000\0" \
31 "console=ttySAC2,115200n8\0" \
32 "mmcdev=0\0" \
33 "bootenv=uEnv.txt\0" \
34 "loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
35 "importbootenv=echo Importing environment from mmc ...; " \
36 "env import -t $loadaddr $filesize\0" \
37 "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
38 "bootscript=echo Running bootscript from mmc${mmcdev} ...; " \
39 "source ${loadaddr}\0"
Chander Kashyapb9a1ef22011-08-18 22:37:19 +000040
Chander Kashyapb9a1ef22011-08-18 22:37:19 +000041#endif /* __CONFIG_H */