/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (C) 2011 Samsung Electronics * * Configuration settings for the SAMSUNG ORIGEN (EXYNOS4210) board. */ #ifndef __CONFIG_ORIGEN_H #define __CONFIG_ORIGEN_H #include /* ORIGEN has 4 bank of DRAM */ #define CFG_SYS_SDRAM_BASE 0x40000000 #define PHYS_SDRAM_1 CFG_SYS_SDRAM_BASE #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */ /* Power Down Modes */ #define S5P_CHECK_SLEEP 0x00000BAD #define S5P_CHECK_DIDLE 0xBAD00000 #define S5P_CHECK_LPA 0xABAD0000 /* MMC SPL */ #define COPY_BL2_FNPTR_ADDR 0x02020030 #define CFG_EXTRA_ENV_SETTINGS \ "loadaddr=0x40007000\0" \ "rdaddr=0x48000000\0" \ "kerneladdr=0x40007000\0" \ "ramdiskaddr=0x48000000\0" \ "console=ttySAC2,115200n8\0" \ "mmcdev=0\0" \ "bootenv=uEnv.txt\0" \ "loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \ "importbootenv=echo Importing environment from mmc ...; " \ "env import -t $loadaddr $filesize\0" \ "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \ "bootscript=echo Running bootscript from mmc${mmcdev} ...; " \ "source ${loadaddr}\0" #endif /* __CONFIG_H */