blob: c03d11dcdaec973caa540b9ab9deed9472f0a22b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Eric Nelsone5b3a502013-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 Nelsone5b3a502013-03-11 08:44:53 +00007 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
Eric Nelson062772c2013-11-26 17:40:30 -070012#include "mx6_common.h"
Eric Nelsone5b3a502013-03-11 08:44:53 +000013
Eric Nelsone5b3a502013-03-11 08:44:53 +000014/* MMC Configs */
Tom Rini376b88a2022-10-28 20:27:13 -040015#define CFG_SYS_FSL_ESDHC_ADDR 0
16#define CFG_SYS_FSL_USDHC_NUM 2
Eric Nelsone5b3a502013-03-11 08:44:53 +000017
Eric Nelsone5b3a502013-03-11 08:44:53 +000018#define IMX_FEC_BASE ENET_BASE_ADDR
Tom Rini4e3c8a62022-12-04 10:03:53 -050019#define CFG_FEC_MXC_PHYADDR 6
Eric Nelsone5b3a502013-03-11 08:44:53 +000020
21/* USB Configs */
Tom Rinib9796e82022-12-04 10:04:56 -050022#define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
23#define CFG_MXC_USB_FLAGS 0
Eric Nelsone5b3a502013-03-11 08:44:53 +000024
Guillaume GARDET2ab78982018-04-18 17:04:58 +020025#ifdef CONFIG_CMD_MMC
26#define DISTRO_BOOT_DEV_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1)
Eric Nelsone5b3a502013-03-11 08:44:53 +000027#else
Guillaume GARDET2ab78982018-04-18 17:04:58 +020028#define DISTRO_BOOT_DEV_MMC(func)
Eric Nelsone5b3a502013-03-11 08:44:53 +000029#endif
30
Guillaume GARDET2ab78982018-04-18 17:04:58 +020031#ifdef CONFIG_CMD_SATA
32#define DISTRO_BOOT_DEV_SATA(func) func(SATA, sata, 0)
Eric Nelsone5b3a502013-03-11 08:44:53 +000033#else
Guillaume GARDET2ab78982018-04-18 17:04:58 +020034#define DISTRO_BOOT_DEV_SATA(func)
Eric Nelsone5b3a502013-03-11 08:44:53 +000035#endif
36
Diego Rondini4e7394d2014-10-02 12:16:41 -070037#ifdef CONFIG_USB_STORAGE
Guillaume GARDET2ab78982018-04-18 17:04:58 +020038#define DISTRO_BOOT_DEV_USB(func) func(USB, usb, 0)
Diego Rondini4e7394d2014-10-02 12:16:41 -070039#else
Guillaume GARDET2ab78982018-04-18 17:04:58 +020040#define DISTRO_BOOT_DEV_USB(func)
Diego Rondini4e7394d2014-10-02 12:16:41 -070041#endif
42
Guillaume GARDET2ab78982018-04-18 17:04:58 +020043#ifdef CONFIG_CMD_PXE
44#define DISTRO_BOOT_DEV_PXE(func) func(PXE, pxe, na)
45#else
46#define DISTRO_BOOT_DEV_PXE(func)
47#endif
48
49#ifdef CONFIG_CMD_DHCP
50#define DISTRO_BOOT_DEV_DHCP(func) func(DHCP, dhcp, na)
51#else
52#define DISTRO_BOOT_DEV_DHCP(func)
53#endif
54
Guillaume GARDET2ab78982018-04-18 17:04:58 +020055#define BOOT_TARGET_DEVICES(func) \
56 DISTRO_BOOT_DEV_MMC(func) \
57 DISTRO_BOOT_DEV_SATA(func) \
58 DISTRO_BOOT_DEV_USB(func) \
59 DISTRO_BOOT_DEV_PXE(func) \
60 DISTRO_BOOT_DEV_DHCP(func)
61
62#include <config_distro_bootcmd.h>
Simon Glassfb64e362020-05-10 11:40:09 -060063#include <linux/stringify.h>
Guillaume GARDET2ab78982018-04-18 17:04:58 +020064
Tom Rinic9edebe2022-12-04 10:03:50 -050065#define CFG_EXTRA_ENV_SETTINGS \
Fabio Estevam1fd60922013-07-26 11:37:17 -030066 "console=ttymxc1\0" \
67 "fdt_high=0xffffffff\0" \
68 "initrd_high=0xffffffff\0" \
Guillaume GARDET2ab78982018-04-18 17:04:58 +020069 "fdt_addr_r=0x18000000\0" \
Ariel D'Alessandro242b6f12022-09-27 11:24:53 -030070 "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
Tom Rini9004ee02021-08-23 10:25:30 -040071 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
72 "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
73 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Guillaume GARDET2ab78982018-04-18 17:04:58 +020074 "ramdisk_addr_r=0x13000000\0" \
75 "ramdiskaddr=0x13000000\0" \
Fabio Estevam1fd60922013-07-26 11:37:17 -030076 "ip_dyn=yes\0" \
Gary Bissond3919c02017-01-12 12:18:44 +010077 "usb_pgood_delay=2000\0" \
Guillaume GARDET2ab78982018-04-18 17:04:58 +020078 BOOTENV
Fabio Estevam1fd60922013-07-26 11:37:17 -030079
Eric Nelsone5b3a502013-03-11 08:44:53 +000080/* Miscellaneous configurable options */
Eric Nelsone5b3a502013-03-11 08:44:53 +000081
Eric Nelsone5b3a502013-03-11 08:44:53 +000082/* Physical Memory Map */
Eric Nelsone5b3a502013-03-11 08:44:53 +000083#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
84
Tom Rinibb4dd962022-11-16 13:10:37 -050085#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini6a5dccc2022-11-16 13:10:41 -050086#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
87#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Eric Nelsone5b3a502013-03-11 08:44:53 +000088
Peter Robinson4b671502015-05-22 17:30:45 +010089/* Environment organization */
Eric Nelsone5b3a502013-03-11 08:44:53 +000090
Eric Nelsone5b3a502013-03-11 08:44:53 +000091#endif /* __CONFIG_H */