blob: 8efebf77c3d6801e1c85d584e53b1242fe74129e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roesea7f480d2016-02-10 11:41:26 +01002/*
3 * Copyright (C) 2015-2016 Stefan Roese <sr@denx.de>
4 *
5 * Configuration settings for the CCV xPress board
Stefan Roesea7f480d2016-02-10 11:41:26 +01006 */
7#ifndef __XPRESS_CONFIG_H
8#define __XPRESS_CONFIG_H
9
10#include "mx6_common.h"
Stefano Babic552a8482017-06-29 10:16:06 +020011#include <asm/mach-imx/gpio.h>
Stefan Roesea7f480d2016-02-10 11:41:26 +010012
Tom Rini4db38662022-12-04 10:04:55 -050013#define CFG_MXC_UART_BASE MX6UL_UART7_BASE_ADDR
Stefan Roesea7f480d2016-02-10 11:41:26 +010014
15/* MMC Configs */
Tom Rini6cc04542022-10-28 20:27:13 -040016#define CFG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR
Stefan Roesea7f480d2016-02-10 11:41:26 +010017
Stefan Roesea7f480d2016-02-10 11:41:26 +010018/* Miscellaneous configurable options */
Stefan Roesea7f480d2016-02-10 11:41:26 +010019
Stefan Roesea7f480d2016-02-10 11:41:26 +010020/* Physical Memory Map */
Stefan Roesea7f480d2016-02-10 11:41:26 +010021#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
22#define PHYS_SDRAM_SIZE (128 << 20)
23
Tom Riniaa6e94d2022-11-16 13:10:37 -050024#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini65cc0e22022-11-16 13:10:41 -050025#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
26#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Stefan Roesea7f480d2016-02-10 11:41:26 +010027
Stefan Roesea7f480d2016-02-10 11:41:26 +010028/* Environment is in stored in the eMMC boot partition */
Stefan Roesea7f480d2016-02-10 11:41:26 +010029
Tom Rini4daffb52022-12-04 10:03:52 -050030#define CFG_FEC_ENET_DEV 0
Tom Rinifa760c32022-12-04 10:03:53 -050031#define CFG_FEC_MXC_PHYADDR 0x0
Stefan Roesea7f480d2016-02-10 11:41:26 +010032
Tom Rini0613c362022-12-04 10:03:50 -050033#define CFG_EXTRA_ENV_SETTINGS \
Stefan Roesea7f480d2016-02-10 11:41:26 +010034 "script=boot.scr\0" \
35 "image=zImage\0" \
Anatolij Gustschinfe123862017-10-02 21:32:55 +020036 "console=ttymxc6\0" \
Stefan Roesea7f480d2016-02-10 11:41:26 +010037 "fdt_high=0xffffffff\0" \
38 "initrd_high=0xffffffff\0" \
39 "fdt_file=undefined\0" \
40 "fdt_addr=0x83000000\0" \
41 "boot_fdt=try\0" \
42 "ip_dyn=yes\0" \
43 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
Tom Rinide35b8f2021-12-11 14:55:52 -050044 "mmcpart=1\0" \
Peng Fanadfaa422022-04-15 12:23:41 +080045 "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
Stefan Roesea7f480d2016-02-10 11:41:26 +010046 "mmcautodetect=yes\0" \
47 "mmcargs=setenv bootargs console=${console},${baudrate} " \
48 "root=${mmcroot}\0" \
49 "loadbootscript=" \
50 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
51 "bootscript=echo Running bootscript from mmc ...; " \
52 "source\0" \
53 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
54 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
55 "mmcboot=echo Booting from mmc ...; " \
56 "run mmcargs; " \
57 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
58 "if run loadfdt; then " \
59 "bootz ${loadaddr} - ${fdt_addr}; " \
60 "else " \
61 "if test ${boot_fdt} = try; then " \
62 "bootz; " \
63 "else " \
64 "echo WARN: Cannot load the DT; " \
65 "fi; " \
66 "fi; " \
67 "else " \
68 "bootz; " \
69 "fi;\0" \
70 "uboot=ccv/u-boot.imx\0" \
Tom Rini308520b2022-12-02 16:42:31 -050071 "uboot_start=0x2\0" \
72 "uboot_size=0x3fe\0" \
Stefan Roesea7f480d2016-02-10 11:41:26 +010073 "update_uboot=if tftp ${uboot}; then " \
74 "if itest ${filesize} > 0; then " \
75 "mmc dev 0 1;" \
76 "setexpr blkc ${filesize} / 0x200;" \
77 "setexpr blkc ${blkc} + 1;" \
78 "if itest ${blkc} <= ${uboot_size}; then " \
79 "mmc write ${loadaddr} ${uboot_start} " \
80 "${blkc};" \
81 "fi;" \
82 "fi; fi;" \
83 "setenv filesize; setenv blkc\0" \
84 "update_bootpart=mmc bootbus 0 2 1 2;mmc partconf 0 1 1 0\0"
85
86#endif /* __XPRESS_CONFIG_H */