blob: 5020b3bb71dbeb5f5d9ad3aba5cf2ca961848321 [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
Troy Kisky760327c2013-09-25 18:41:18 -070014#define CONFIG_USBD_HS
Eric Nelsone5b3a502013-03-11 08:44:53 +000015
Eric Nelsone5b3a502013-03-11 08:44:53 +000016#define CONFIG_MXC_UART_BASE UART2_BASE
17
Eric Nelsone5b3a502013-03-11 08:44:53 +000018/* MMC Configs */
Tom Rini376b88a2022-10-28 20:27:13 -040019#define CFG_SYS_FSL_ESDHC_ADDR 0
20#define CFG_SYS_FSL_USDHC_NUM 2
Eric Nelsone5b3a502013-03-11 08:44:53 +000021
Eric Nelsone5b3a502013-03-11 08:44:53 +000022#define IMX_FEC_BASE ENET_BASE_ADDR
Eric Nelsone5b3a502013-03-11 08:44:53 +000023#define CONFIG_FEC_MXC_PHYADDR 6
Eric Nelsone5b3a502013-03-11 08:44:53 +000024
25/* USB Configs */
Eric Nelsone5b3a502013-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
Guillaume GARDET2ab78982018-04-18 17:04:58 +020029#ifdef CONFIG_CMD_MMC
30#define DISTRO_BOOT_DEV_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1)
Eric Nelsone5b3a502013-03-11 08:44:53 +000031#else
Guillaume GARDET2ab78982018-04-18 17:04:58 +020032#define DISTRO_BOOT_DEV_MMC(func)
Eric Nelsone5b3a502013-03-11 08:44:53 +000033#endif
34
Guillaume GARDET2ab78982018-04-18 17:04:58 +020035#ifdef CONFIG_CMD_SATA
36#define DISTRO_BOOT_DEV_SATA(func) func(SATA, sata, 0)
Eric Nelsone5b3a502013-03-11 08:44:53 +000037#else
Guillaume GARDET2ab78982018-04-18 17:04:58 +020038#define DISTRO_BOOT_DEV_SATA(func)
Eric Nelsone5b3a502013-03-11 08:44:53 +000039#endif
40
Diego Rondini4e7394d2014-10-02 12:16:41 -070041#ifdef CONFIG_USB_STORAGE
Guillaume GARDET2ab78982018-04-18 17:04:58 +020042#define DISTRO_BOOT_DEV_USB(func) func(USB, usb, 0)
Diego Rondini4e7394d2014-10-02 12:16:41 -070043#else
Guillaume GARDET2ab78982018-04-18 17:04:58 +020044#define DISTRO_BOOT_DEV_USB(func)
Diego Rondini4e7394d2014-10-02 12:16:41 -070045#endif
46
Guillaume GARDET2ab78982018-04-18 17:04:58 +020047#ifdef CONFIG_CMD_PXE
48#define DISTRO_BOOT_DEV_PXE(func) func(PXE, pxe, na)
49#else
50#define DISTRO_BOOT_DEV_PXE(func)
51#endif
52
53#ifdef CONFIG_CMD_DHCP
54#define DISTRO_BOOT_DEV_DHCP(func) func(DHCP, dhcp, na)
55#else
56#define DISTRO_BOOT_DEV_DHCP(func)
57#endif
58
Guillaume GARDET2ab78982018-04-18 17:04:58 +020059#define BOOT_TARGET_DEVICES(func) \
60 DISTRO_BOOT_DEV_MMC(func) \
61 DISTRO_BOOT_DEV_SATA(func) \
62 DISTRO_BOOT_DEV_USB(func) \
63 DISTRO_BOOT_DEV_PXE(func) \
64 DISTRO_BOOT_DEV_DHCP(func)
65
66#include <config_distro_bootcmd.h>
Simon Glassfb64e362020-05-10 11:40:09 -060067#include <linux/stringify.h>
Guillaume GARDET2ab78982018-04-18 17:04:58 +020068
Eric Nelsone5b3a502013-03-11 08:44:53 +000069#define CONFIG_EXTRA_ENV_SETTINGS \
Fabio Estevam1fd60922013-07-26 11:37:17 -030070 "console=ttymxc1\0" \
71 "fdt_high=0xffffffff\0" \
72 "initrd_high=0xffffffff\0" \
Guillaume GARDET2ab78982018-04-18 17:04:58 +020073 "fdt_addr_r=0x18000000\0" \
Ariel D'Alessandro242b6f12022-09-27 11:24:53 -030074 "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
Tom Rini9004ee02021-08-23 10:25:30 -040075 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
76 "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
77 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Guillaume GARDET2ab78982018-04-18 17:04:58 +020078 "ramdisk_addr_r=0x13000000\0" \
79 "ramdiskaddr=0x13000000\0" \
Fabio Estevam1fd60922013-07-26 11:37:17 -030080 "ip_dyn=yes\0" \
Gary Bissond3919c02017-01-12 12:18:44 +010081 "usb_pgood_delay=2000\0" \
Guillaume GARDET2ab78982018-04-18 17:04:58 +020082 BOOTENV
Fabio Estevam1fd60922013-07-26 11:37:17 -030083
Eric Nelsone5b3a502013-03-11 08:44:53 +000084/* Miscellaneous configurable options */
Eric Nelsone5b3a502013-03-11 08:44:53 +000085
Eric Nelsone5b3a502013-03-11 08:44:53 +000086/* Physical Memory Map */
Eric Nelsone5b3a502013-03-11 08:44:53 +000087#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
88
Tom Rinibb4dd962022-11-16 13:10:37 -050089#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini6a5dccc2022-11-16 13:10:41 -050090#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
91#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Eric Nelsone5b3a502013-03-11 08:44:53 +000092
Peter Robinson4b671502015-05-22 17:30:45 +010093/* Environment organization */
Eric Nelsone5b3a502013-03-11 08:44:53 +000094
Eric Nelsone5b3a502013-03-11 08:44:53 +000095#endif /* __CONFIG_H */