blob: e30b6cc82d8be61edb579971f869b9e1b6b7e093 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Breno Limafd577692016-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 Limafd577692016-11-25 16:56:57 -02008 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
Breno Limafd577692016-11-25 16:56:57 -020013#include "mx6_common.h"
14
15#include "imx6_spl.h"
16
Breno Limafd577692016-11-25 16:56:57 -020017/* MMC Configuration */
18#define CONFIG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR
19
20/* Command definition */
21#define CONFIG_MXC_UART_BASE UART1_BASE
Breno Limafd577692016-11-25 16:56:57 -020022
23/* Linux only */
Breno Limafd577692016-11-25 16:56:57 -020024#define CONFIG_EXTRA_ENV_SETTINGS \
Peter Robinson42b50892017-02-14 13:10:10 +000025 "console=ttymxc0,115200\0" \
Breno Limafd577692016-11-25 16:56:57 -020026 "fdt_high=0xffffffff\0" \
27 "initrd_high=0xffffffff\0" \
Fabio Estevam3a851382016-12-15 20:10:08 -020028 "fdtfile=undefined\0" \
Breno Limafd577692016-11-25 16:56:57 -020029 "fdt_addr=0x83000000\0" \
Breno Limaaa263a92017-01-10 16:32:38 -020030 "fdt_addr_r=0x83000000\0" \
Breno Limafd577692016-11-25 16:56:57 -020031 "ip_dyn=yes\0" \
Peter Robinson89e28062021-12-21 12:32:47 +000032 "mmcdev=1\0" \
Breno Limafd577692016-11-25 16:56:57 -020033 "mmcrootfstype=ext4\0" \
Breno Limafd577692016-11-25 16:56:57 -020034 "findfdt="\
35 "if test $board_name = BASIC; then " \
Fabio Estevam3a851382016-12-15 20:10:08 -020036 "setenv fdtfile imx6sx-udoo-neo-basic.dtb; fi; " \
Breno Limafd577692016-11-25 16:56:57 -020037 "if test $board_name = BASICKS; then " \
Fabio Estevam3a851382016-12-15 20:10:08 -020038 "setenv fdtfile imx6sx-udoo-neo-basic.dtb; fi; " \
Breno Limafd577692016-11-25 16:56:57 -020039 "if test $board_name = FULL; then " \
Fabio Estevam3a851382016-12-15 20:10:08 -020040 "setenv fdtfile imx6sx-udoo-neo-full.dtb; fi; " \
Breno Limafd577692016-11-25 16:56:57 -020041 "if test $board_name = EXTENDED; then " \
Fabio Estevam3a851382016-12-15 20:10:08 -020042 "setenv fdtfile imx6sx-udoo-neo-extended.dtb; fi; " \
43 "if test $fdtfile = UNDEFINED; then " \
Breno Limaf1417732017-01-10 16:32:39 -020044 "echo WARNING: Could not determine dtb to use; fi\0" \
Tom Rini9004ee02021-08-23 10:25:30 -040045 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
46 "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Peter Robinsonf26279e2017-02-14 13:10:11 +000047 "ramdisk_addr_r=0x84000000\0" \
Tom Rini9004ee02021-08-23 10:25:30 -040048 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Breno Limafd577692016-11-25 16:56:57 -020049 BOOTENV
50
51#define BOOT_TARGET_DEVICES(func) \
Peter Robinson89e28062021-12-21 12:32:47 +000052 func(MMC, mmc, 1) \
Peter Robinsondbe2d5a2021-12-21 12:32:49 +000053 func(USB, usb, 0) \
Breno Lima70c003c2016-12-06 15:38:26 -020054 func(DHCP, dhcp, na)
Breno Limafd577692016-11-25 16:56:57 -020055
Breno Limafd577692016-11-25 16:56:57 -020056#include <config_distro_bootcmd.h>
57
58/* Miscellaneous configurable options */
Breno Limafd577692016-11-25 16:56:57 -020059
60/* Physical Memory Map */
Breno Limafd577692016-11-25 16:56:57 -020061#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
62#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
63#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
64#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
65
Breno Limaa5815162016-12-06 15:38:25 -020066/* PMIC */
Breno Limaa5815162016-12-06 15:38:25 -020067#define CONFIG_POWER_PFUZE3000
68#define CONFIG_POWER_PFUZE3000_I2C_ADDR 0x08
69#define PFUZE3000_I2C_BUS 0
70
Breno Limafd577692016-11-25 16:56:57 -020071#endif /* __CONFIG_H */