blob: ae9352f5b9adeac431630d7807ef9d6200ff4707 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -05002/*
3 * (C) Copyright 2016 Savoir-faire Linux Inc.
4 *
5 * Author: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
6 *
7 * Derived from MX28EVK code by
8 * Fabio Estevam <fabio.estevam@freescale.com>
9 * Freescale Semiconductor, Inc.
10 *
11 * Configuration settings for the TS4600 Board
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -050012 */
13#ifndef __CONFIGS_TS4600_H__
14#define __CONFIGS_TS4600_H__
15
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -050016/* U-Boot Commands */
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -050017
18/* Memory configuration */
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -050019#define PHYS_SDRAM_1 0x40000000 /* Base address */
20#define PHYS_SDRAM_1_SIZE 0x40000000 /* Max 1 GB RAM */
21#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
22
23/* Environment */
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -050024
25/* Environment is in MMC */
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -050026
27/* Boot Linux */
28#define CONFIG_LOADADDR 0x42000000
29#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
30
31/* Extra Environment */
32#define CONFIG_EXTRA_ENV_SETTINGS \
33 "fdt_addr=0x41000000\0" \
34 "loadkernel=load mmc ${mmcdev}:${mmcpart} ${loadaddr} zImage\0" \
35 "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} imx28-ts4600.dtb\0" \
36 "loadbootscript=load mmc ${mmcdev}:${mmcpart} ${loadaddr} boot.ub\0" \
37 "bootscript=echo Running bootscript from mmc...; " \
38 "setenv mmcdev 0; " \
39 "setenv mmcpart 2; " \
40 "run loadbootscript && source ${loadaddr}; \0" \
41 "sdboot=echo Booting from SD card ...; " \
42 "setenv mmcdev 0; " \
43 "setenv mmcpart 2; " \
44 "setenv root /dev/mmcblk0p3; " \
45 "run loadkernel && run loadfdt; \0" \
46 "startbootsequence=run bootscript || run sdboot \0" \
47
48#define CONFIG_BOOTCOMMAND \
49 "mmc rescan; " \
50 "run startbootsequence; " \
51 "setenv cmdline_append console=ttyAMA0,115200; " \
52 "setenv bootargs root=${root} rootwait rw ${cmdline_append}; " \
53 "bootz ${loadaddr} - ${fdt_addr}; "
54
55/* The rest of the configuration is shared */
56#include <configs/mxs.h>
57
58#endif /* __CONFIGS_TS4600_H__ */