blob: 2007b48868f69d955299a35a9454e51763f5bc74 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Eric Nelsond67b0d92013-03-11 08:44:53 +00002/*
3 * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
4 *
5 * Configuration settings for the Boundary Devices Nitrogen6X
6 * and Freescale i.MX6Q Sabre Lite boards.
Eric Nelsond67b0d92013-03-11 08:44:53 +00007 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
Eric Nelson02824dc2013-11-26 17:40:30 -070012#include "mx6_common.h"
Eric Nelsond67b0d92013-03-11 08:44:53 +000013
Troy Kiskyf3d7cff2013-09-25 18:41:18 -070014#define CONFIG_USBD_HS
Eric Nelsond67b0d92013-03-11 08:44:53 +000015
Eric Nelsond67b0d92013-03-11 08:44:53 +000016#define CONFIG_MXC_UART_BASE UART2_BASE
17
Eric Nelsond67b0d92013-03-11 08:44:53 +000018/* MMC Configs */
Eric Nelsond67b0d92013-03-11 08:44:53 +000019#define CONFIG_SYS_FSL_ESDHC_ADDR 0
20#define CONFIG_SYS_FSL_USDHC_NUM 2
21
Eric Nelsond67b0d92013-03-11 08:44:53 +000022#define IMX_FEC_BASE ENET_BASE_ADDR
Eric Nelsond67b0d92013-03-11 08:44:53 +000023#define CONFIG_FEC_MXC_PHYADDR 6
Eric Nelsond67b0d92013-03-11 08:44:53 +000024
25/* USB Configs */
Eric Nelsond67b0d92013-03-11 08:44:53 +000026#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
27#define CONFIG_MXC_USB_FLAGS 0
28
Eric Nelsond67b0d92013-03-11 08:44:53 +000029/* Framebuffer and LCD */
Eric Nelson761bc192015-04-16 11:31:33 -070030#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (6 * 1024 * 1024)
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -050031#define CONFIG_IMX_HDMI
Eric Benarda47e4492014-04-04 19:05:53 +020032#define CONFIG_IMX_VIDEO_SKIP
Eric Nelsond67b0d92013-03-11 08:44:53 +000033
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020034#ifdef CONFIG_CMD_MMC
35#define DISTRO_BOOT_DEV_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1)
Eric Nelsond67b0d92013-03-11 08:44:53 +000036#else
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020037#define DISTRO_BOOT_DEV_MMC(func)
Eric Nelsond67b0d92013-03-11 08:44:53 +000038#endif
39
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020040#ifdef CONFIG_CMD_SATA
41#define DISTRO_BOOT_DEV_SATA(func) func(SATA, sata, 0)
Eric Nelsond67b0d92013-03-11 08:44:53 +000042#else
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020043#define DISTRO_BOOT_DEV_SATA(func)
Eric Nelsond67b0d92013-03-11 08:44:53 +000044#endif
45
Diego Rondini5b7103e2014-10-02 12:16:41 -070046#ifdef CONFIG_USB_STORAGE
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020047#define DISTRO_BOOT_DEV_USB(func) func(USB, usb, 0)
Diego Rondini5b7103e2014-10-02 12:16:41 -070048#else
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020049#define DISTRO_BOOT_DEV_USB(func)
Diego Rondini5b7103e2014-10-02 12:16:41 -070050#endif
51
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020052#ifdef CONFIG_CMD_PXE
53#define DISTRO_BOOT_DEV_PXE(func) func(PXE, pxe, na)
54#else
55#define DISTRO_BOOT_DEV_PXE(func)
56#endif
57
58#ifdef CONFIG_CMD_DHCP
59#define DISTRO_BOOT_DEV_DHCP(func) func(DHCP, dhcp, na)
60#else
61#define DISTRO_BOOT_DEV_DHCP(func)
62#endif
63
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020064#define BOOT_TARGET_DEVICES(func) \
65 DISTRO_BOOT_DEV_MMC(func) \
66 DISTRO_BOOT_DEV_SATA(func) \
67 DISTRO_BOOT_DEV_USB(func) \
68 DISTRO_BOOT_DEV_PXE(func) \
69 DISTRO_BOOT_DEV_DHCP(func)
70
71#include <config_distro_bootcmd.h>
Simon Glass1af3c7f2020-05-10 11:40:09 -060072#include <linux/stringify.h>
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020073
Fabio Estevamf8b1e862013-07-26 11:37:17 -030074#define CONFIG_EXTRA_ENV_SETTINGS \
Fabio Estevamf8b1e862013-07-26 11:37:17 -030075 "console=ttymxc1\0" \
76 "fdt_high=0xffffffff\0" \
77 "initrd_high=0xffffffff\0" \
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020078 "fdt_addr_r=0x18000000\0" \
Tom Rini39511022021-08-24 20:41:03 -040079 "fdtfile=" __stringify(CONFIG_DEFAULT_DEVICE_TREE) ".dtb\0" \
Tom Rini72d81362021-08-23 10:25:30 -040080 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
81 "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
82 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020083 "ramdisk_addr_r=0x13000000\0" \
84 "ramdiskaddr=0x13000000\0" \
Fabio Estevamf8b1e862013-07-26 11:37:17 -030085 "ip_dyn=yes\0" \
Gary Bisson1c3e62d2017-01-12 12:18:44 +010086 "usb_pgood_delay=2000\0" \
Guillaume GARDETcc5d7dc2018-04-18 17:04:58 +020087 BOOTENV
Fabio Estevamf8b1e862013-07-26 11:37:17 -030088
Eric Nelsond67b0d92013-03-11 08:44:53 +000089/* Miscellaneous configurable options */
Eric Nelsond67b0d92013-03-11 08:44:53 +000090
Eric Nelsond67b0d92013-03-11 08:44:53 +000091/* Physical Memory Map */
Eric Nelsond67b0d92013-03-11 08:44:53 +000092#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
93
94#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
95#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
96#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
97
Peter Robinson056845c2015-05-22 17:30:45 +010098/* Environment organization */
Eric Nelsond67b0d92013-03-11 08:44:53 +000099
Eric Nelsond67b0d92013-03-11 08:44:53 +0000100#endif /* __CONFIG_H */