Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2014 Eukréa Electromatique |
| 4 | * Author: Eric Bénard <eric@eukrea.com> |
| 5 | * |
| 6 | * Configuration settings for the Embest RIoTboard |
| 7 | * |
| 8 | * based on mx6*sabre*.h which are : |
| 9 | * Copyright (C) 2012 Freescale Semiconductor, Inc. |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #ifndef __RIOTBOARD_CONFIG_H |
| 13 | #define __RIOTBOARD_CONFIG_H |
| 14 | |
Tom Rini | 4db3866 | 2022-12-04 10:04:55 -0500 | [diff] [blame] | 15 | #define CFG_MXC_UART_BASE UART2_BASE |
Simon Glass | 12ca05a | 2016-10-17 20:12:39 -0600 | [diff] [blame] | 16 | #define CONSOLE_DEV "ttymxc1" |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 17 | |
| 18 | #define PHYS_SDRAM_SIZE (1u * 1024 * 1024 * 1024) |
| 19 | |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 20 | /* MMC Configs */ |
Tom Rini | 6cc0454 | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 21 | #define CFG_SYS_FSL_ESDHC_ADDR 0 |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 22 | |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 23 | /* Physical Memory Map */ |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 24 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 25 | |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 26 | #define CFG_SYS_SDRAM_BASE PHYS_SDRAM |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 27 | #define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 28 | #define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 29 | |
Peter Robinson | 056845c | 2015-05-22 17:30:45 +0100 | [diff] [blame] | 30 | /* Environment organization */ |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 31 | |
| 32 | #if defined(CONFIG_ENV_IS_IN_MMC) |
| 33 | /* RiOTboard */ |
Tom Rini | 308520b | 2022-12-02 16:42:31 -0500 | [diff] [blame] | 34 | #define FDTFILE "imx6dl-riotboard.dtb" |
Tom Rini | 6cc0454 | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 35 | #define CFG_SYS_FSL_USDHC_NUM 3 |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 36 | #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH) |
| 37 | /* MarSBoard */ |
Tom Rini | 308520b | 2022-12-02 16:42:31 -0500 | [diff] [blame] | 38 | #define FDTFILE "imx6q-marsboard.dtb" |
Tom Rini | 6cc0454 | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 39 | #define CFG_SYS_FSL_USDHC_NUM 2 |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 40 | #endif |
| 41 | |
Peter Robinson | e51c1e8 | 2015-05-22 17:30:52 +0100 | [diff] [blame] | 42 | #include "mx6_common.h" |
Iain Paton | 729d2a3 | 2014-12-14 14:51:32 +0000 | [diff] [blame] | 43 | |
Iain Paton | c86efd8 | 2014-12-14 14:51:46 +0000 | [diff] [blame] | 44 | /* 256M RAM (minimum), 32M uncompressed kernel, 16M compressed kernel, 1M fdt, |
| 45 | * 1M script, 1M pxe and the ramdisk at the end */ |
| 46 | #define MEM_LAYOUT_ENV_SETTINGS \ |
| 47 | "bootm_size=0x10000000\0" \ |
| 48 | "kernel_addr_r=0x12000000\0" \ |
| 49 | "fdt_addr_r=0x13000000\0" \ |
| 50 | "scriptaddr=0x13100000\0" \ |
| 51 | "pxefile_addr_r=0x13200000\0" \ |
| 52 | "ramdisk_addr_r=0x13300000\0" |
| 53 | |
| 54 | #define BOOT_TARGET_DEVICES(func) \ |
| 55 | func(MMC, mmc, 0) \ |
| 56 | func(MMC, mmc, 1) \ |
| 57 | func(MMC, mmc, 2) \ |
| 58 | func(USB, usb, 0) \ |
| 59 | func(PXE, pxe, na) \ |
| 60 | func(DHCP, dhcp, na) |
| 61 | |
| 62 | #include <config_distro_bootcmd.h> |
| 63 | |
| 64 | #define CONSOLE_STDIN_SETTINGS \ |
| 65 | "stdin=serial\0" |
| 66 | |
| 67 | #define CONSOLE_STDOUT_SETTINGS \ |
| 68 | "stdout=serial\0" \ |
| 69 | "stderr=serial\0" |
| 70 | |
| 71 | #define CONSOLE_ENV_SETTINGS \ |
| 72 | CONSOLE_STDIN_SETTINGS \ |
| 73 | CONSOLE_STDOUT_SETTINGS |
| 74 | |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 75 | #define CFG_EXTRA_ENV_SETTINGS \ |
Iain Paton | c86efd8 | 2014-12-14 14:51:46 +0000 | [diff] [blame] | 76 | CONSOLE_ENV_SETTINGS \ |
| 77 | MEM_LAYOUT_ENV_SETTINGS \ |
Tom Rini | 308520b | 2022-12-02 16:42:31 -0500 | [diff] [blame] | 78 | "fdtfile=" FDTFILE "\0" \ |
Fabio Berton | 0f29a61 | 2017-07-10 17:04:11 -0300 | [diff] [blame] | 79 | "finduuid=part uuid mmc 0:1 uuid\0" \ |
Iain Paton | c86efd8 | 2014-12-14 14:51:46 +0000 | [diff] [blame] | 80 | BOOTENV |
| 81 | |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 82 | #endif /* __RIOTBOARD_CONFIG_H */ |