blob: 80386414f89fac0569b658d72cc8eb834c2c4f2e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Breno Lima792f1862016-11-25 16:56:57 -02002/*
3 * Copyright 2014-2015 Freescale Semiconductor, Inc.
4 * Copyright Jasbir Matharu
5 * Copyright 2015 UDOO Team
6 *
7 * Configuration settings for the UDOO NEO board.
Breno Lima792f1862016-11-25 16:56:57 -02008 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
Breno Lima792f1862016-11-25 16:56:57 -020013#include "mx6_common.h"
14
Breno Lima792f1862016-11-25 16:56:57 -020015/* MMC Configuration */
Tom Rini6cc04542022-10-28 20:27:13 -040016#define CFG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR
Breno Lima792f1862016-11-25 16:56:57 -020017
18/* Command definition */
Tom Rini4db38662022-12-04 10:04:55 -050019#define CFG_MXC_UART_BASE UART1_BASE
Breno Lima792f1862016-11-25 16:56:57 -020020
21/* Linux only */
Tom Rini0613c362022-12-04 10:03:50 -050022#define CFG_EXTRA_ENV_SETTINGS \
Peter Robinsonf9028022017-02-14 13:10:10 +000023 "console=ttymxc0,115200\0" \
Breno Lima792f1862016-11-25 16:56:57 -020024 "fdt_high=0xffffffff\0" \
25 "initrd_high=0xffffffff\0" \
Fabio Estevam5d3a28a2016-12-15 20:10:08 -020026 "fdtfile=undefined\0" \
Breno Lima792f1862016-11-25 16:56:57 -020027 "fdt_addr=0x83000000\0" \
Breno Lima8df93b12017-01-10 16:32:38 -020028 "fdt_addr_r=0x83000000\0" \
Breno Lima792f1862016-11-25 16:56:57 -020029 "ip_dyn=yes\0" \
Peter Robinson2bbe1ba2021-12-21 12:32:47 +000030 "mmcdev=1\0" \
Breno Lima792f1862016-11-25 16:56:57 -020031 "mmcrootfstype=ext4\0" \
Breno Lima792f1862016-11-25 16:56:57 -020032 "findfdt="\
33 "if test $board_name = BASIC; then " \
Fabio Estevam5d3a28a2016-12-15 20:10:08 -020034 "setenv fdtfile imx6sx-udoo-neo-basic.dtb; fi; " \
Breno Lima792f1862016-11-25 16:56:57 -020035 "if test $board_name = BASICKS; then " \
Fabio Estevam5d3a28a2016-12-15 20:10:08 -020036 "setenv fdtfile imx6sx-udoo-neo-basic.dtb; fi; " \
Breno Lima792f1862016-11-25 16:56:57 -020037 "if test $board_name = FULL; then " \
Fabio Estevam5d3a28a2016-12-15 20:10:08 -020038 "setenv fdtfile imx6sx-udoo-neo-full.dtb; fi; " \
Breno Lima792f1862016-11-25 16:56:57 -020039 "if test $board_name = EXTENDED; then " \
Fabio Estevam5d3a28a2016-12-15 20:10:08 -020040 "setenv fdtfile imx6sx-udoo-neo-extended.dtb; fi; " \
41 "if test $fdtfile = UNDEFINED; then " \
Breno Limad8e13882017-01-10 16:32:39 -020042 "echo WARNING: Could not determine dtb to use; fi\0" \
Tom Rini72d81362021-08-23 10:25:30 -040043 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
44 "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Peter Robinson276ad062017-02-14 13:10:11 +000045 "ramdisk_addr_r=0x84000000\0" \
Tom Rini72d81362021-08-23 10:25:30 -040046 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Breno Lima792f1862016-11-25 16:56:57 -020047 BOOTENV
48
49#define BOOT_TARGET_DEVICES(func) \
Peter Robinson2bbe1ba2021-12-21 12:32:47 +000050 func(MMC, mmc, 1) \
Peter Robinson87c34fe2021-12-21 12:32:49 +000051 func(USB, usb, 0) \
Breno Limaa11e30f2016-12-06 15:38:26 -020052 func(DHCP, dhcp, na)
Breno Lima792f1862016-11-25 16:56:57 -020053
Breno Lima792f1862016-11-25 16:56:57 -020054#include <config_distro_bootcmd.h>
55
56/* Miscellaneous configurable options */
Breno Lima792f1862016-11-25 16:56:57 -020057
58/* Physical Memory Map */
Breno Lima792f1862016-11-25 16:56:57 -020059#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
Tom Riniaa6e94d2022-11-16 13:10:37 -050060#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini65cc0e22022-11-16 13:10:41 -050061#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
62#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Breno Lima792f1862016-11-25 16:56:57 -020063
Breno Lima21729bc2016-12-06 15:38:25 -020064/* PMIC */
Tom Rini193b3fe2022-12-04 10:13:36 -050065#define CFG_POWER_PFUZE3000_I2C_ADDR 0x08
Breno Lima21729bc2016-12-06 15:38:25 -020066#define PFUZE3000_I2C_BUS 0
67
Breno Lima792f1862016-11-25 16:56:57 -020068#endif /* __CONFIG_H */