blob: 0d72008bb46645bb7da533046b8b8c76d1fb8c20 [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
Anatolij Gustschinfe123862017-10-02 21:32:55 +020013#define CONFIG_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
Stefan Roesea7f480d2016-02-10 11:41:26 +010030/* USB Configs */
Stefan Roesea7f480d2016-02-10 11:41:26 +010031#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
32#define CONFIG_MXC_USB_FLAGS 0
Stefan Roesea7f480d2016-02-10 11:41:26 +010033
Stefan Roesea7f480d2016-02-10 11:41:26 +010034#define CONFIG_FEC_ENET_DEV 0
Stefan Roesea7f480d2016-02-10 11:41:26 +010035#define CONFIG_FEC_MXC_PHYADDR 0x0
Stefan Roesea7f480d2016-02-10 11:41:26 +010036
Tom Rini0613c362022-12-04 10:03:50 -050037#define CFG_EXTRA_ENV_SETTINGS \
Stefan Roesea7f480d2016-02-10 11:41:26 +010038 "script=boot.scr\0" \
39 "image=zImage\0" \
Anatolij Gustschinfe123862017-10-02 21:32:55 +020040 "console=ttymxc6\0" \
Stefan Roesea7f480d2016-02-10 11:41:26 +010041 "fdt_high=0xffffffff\0" \
42 "initrd_high=0xffffffff\0" \
43 "fdt_file=undefined\0" \
44 "fdt_addr=0x83000000\0" \
45 "boot_fdt=try\0" \
46 "ip_dyn=yes\0" \
47 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
Tom Rinide35b8f2021-12-11 14:55:52 -050048 "mmcpart=1\0" \
Peng Fanadfaa422022-04-15 12:23:41 +080049 "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
Stefan Roesea7f480d2016-02-10 11:41:26 +010050 "mmcautodetect=yes\0" \
51 "mmcargs=setenv bootargs console=${console},${baudrate} " \
52 "root=${mmcroot}\0" \
53 "loadbootscript=" \
54 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
55 "bootscript=echo Running bootscript from mmc ...; " \
56 "source\0" \
57 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
58 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
59 "mmcboot=echo Booting from mmc ...; " \
60 "run mmcargs; " \
61 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
62 "if run loadfdt; then " \
63 "bootz ${loadaddr} - ${fdt_addr}; " \
64 "else " \
65 "if test ${boot_fdt} = try; then " \
66 "bootz; " \
67 "else " \
68 "echo WARN: Cannot load the DT; " \
69 "fi; " \
70 "fi; " \
71 "else " \
72 "bootz; " \
73 "fi;\0" \
74 "uboot=ccv/u-boot.imx\0" \
Tom Rini308520b2022-12-02 16:42:31 -050075 "uboot_start=0x2\0" \
76 "uboot_size=0x3fe\0" \
Stefan Roesea7f480d2016-02-10 11:41:26 +010077 "update_uboot=if tftp ${uboot}; then " \
78 "if itest ${filesize} > 0; then " \
79 "mmc dev 0 1;" \
80 "setexpr blkc ${filesize} / 0x200;" \
81 "setexpr blkc ${blkc} + 1;" \
82 "if itest ${blkc} <= ${uboot_size}; then " \
83 "mmc write ${loadaddr} ${uboot_start} " \
84 "${blkc};" \
85 "fi;" \
86 "fi; fi;" \
87 "setenv filesize; setenv blkc\0" \
88 "update_bootpart=mmc bootbus 0 2 1 2;mmc partconf 0 1 1 0\0"
89
90#endif /* __XPRESS_CONFIG_H */