Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 2 | /* |
| 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 Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef __CONFIG_H |
| 10 | #define __CONFIG_H |
| 11 | |
Eric Nelson | 02824dc | 2013-11-26 17:40:30 -0700 | [diff] [blame] | 12 | #include "mx6_common.h" |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 13 | |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 14 | #define CONFIG_MXC_UART_BASE UART2_BASE |
| 15 | |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 16 | /* MMC Configs */ |
Tom Rini | 6cc0454 | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 17 | #define CFG_SYS_FSL_ESDHC_ADDR 0 |
| 18 | #define CFG_SYS_FSL_USDHC_NUM 2 |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 19 | |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 20 | #define IMX_FEC_BASE ENET_BASE_ADDR |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 21 | #define CONFIG_FEC_MXC_PHYADDR 6 |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 22 | |
| 23 | /* USB Configs */ |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 24 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 25 | #define CONFIG_MXC_USB_FLAGS 0 |
| 26 | |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 27 | #ifdef CONFIG_CMD_MMC |
| 28 | #define DISTRO_BOOT_DEV_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1) |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 29 | #else |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 30 | #define DISTRO_BOOT_DEV_MMC(func) |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 31 | #endif |
| 32 | |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 33 | #ifdef CONFIG_CMD_SATA |
| 34 | #define DISTRO_BOOT_DEV_SATA(func) func(SATA, sata, 0) |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 35 | #else |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 36 | #define DISTRO_BOOT_DEV_SATA(func) |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 37 | #endif |
| 38 | |
Diego Rondini | 5b7103e | 2014-10-02 12:16:41 -0700 | [diff] [blame] | 39 | #ifdef CONFIG_USB_STORAGE |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 40 | #define DISTRO_BOOT_DEV_USB(func) func(USB, usb, 0) |
Diego Rondini | 5b7103e | 2014-10-02 12:16:41 -0700 | [diff] [blame] | 41 | #else |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 42 | #define DISTRO_BOOT_DEV_USB(func) |
Diego Rondini | 5b7103e | 2014-10-02 12:16:41 -0700 | [diff] [blame] | 43 | #endif |
| 44 | |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 45 | #ifdef CONFIG_CMD_PXE |
| 46 | #define DISTRO_BOOT_DEV_PXE(func) func(PXE, pxe, na) |
| 47 | #else |
| 48 | #define DISTRO_BOOT_DEV_PXE(func) |
| 49 | #endif |
| 50 | |
| 51 | #ifdef CONFIG_CMD_DHCP |
| 52 | #define DISTRO_BOOT_DEV_DHCP(func) func(DHCP, dhcp, na) |
| 53 | #else |
| 54 | #define DISTRO_BOOT_DEV_DHCP(func) |
| 55 | #endif |
| 56 | |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 57 | #define BOOT_TARGET_DEVICES(func) \ |
| 58 | DISTRO_BOOT_DEV_MMC(func) \ |
| 59 | DISTRO_BOOT_DEV_SATA(func) \ |
| 60 | DISTRO_BOOT_DEV_USB(func) \ |
| 61 | DISTRO_BOOT_DEV_PXE(func) \ |
| 62 | DISTRO_BOOT_DEV_DHCP(func) |
| 63 | |
| 64 | #include <config_distro_bootcmd.h> |
Simon Glass | 1af3c7f | 2020-05-10 11:40:09 -0600 | [diff] [blame] | 65 | #include <linux/stringify.h> |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 66 | |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame^] | 67 | #define CFG_EXTRA_ENV_SETTINGS \ |
Fabio Estevam | f8b1e86 | 2013-07-26 11:37:17 -0300 | [diff] [blame] | 68 | "console=ttymxc1\0" \ |
| 69 | "fdt_high=0xffffffff\0" \ |
| 70 | "initrd_high=0xffffffff\0" \ |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 71 | "fdt_addr_r=0x18000000\0" \ |
Ariel D'Alessandro | 187da72 | 2022-09-27 11:24:53 -0300 | [diff] [blame] | 72 | "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \ |
Tom Rini | 72d8136 | 2021-08-23 10:25:30 -0400 | [diff] [blame] | 73 | "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
| 74 | "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
| 75 | "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 76 | "ramdisk_addr_r=0x13000000\0" \ |
| 77 | "ramdiskaddr=0x13000000\0" \ |
Fabio Estevam | f8b1e86 | 2013-07-26 11:37:17 -0300 | [diff] [blame] | 78 | "ip_dyn=yes\0" \ |
Gary Bisson | 1c3e62d | 2017-01-12 12:18:44 +0100 | [diff] [blame] | 79 | "usb_pgood_delay=2000\0" \ |
Guillaume GARDET | cc5d7dc | 2018-04-18 17:04:58 +0200 | [diff] [blame] | 80 | BOOTENV |
Fabio Estevam | f8b1e86 | 2013-07-26 11:37:17 -0300 | [diff] [blame] | 81 | |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 82 | /* Miscellaneous configurable options */ |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 83 | |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 84 | /* Physical Memory Map */ |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 85 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 86 | |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 87 | #define CFG_SYS_SDRAM_BASE PHYS_SDRAM |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 88 | #define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 89 | #define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 90 | |
Peter Robinson | 056845c | 2015-05-22 17:30:45 +0100 | [diff] [blame] | 91 | /* Environment organization */ |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 92 | |
Eric Nelson | d67b0d9 | 2013-03-11 08:44:53 +0000 | [diff] [blame] | 93 | #endif /* __CONFIG_H */ |