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 | |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 15 | #define CONFIG_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 | /* USB Configs */ |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 21 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */ |
| 22 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 23 | #define CONFIG_MXC_USB_FLAGS 0 |
| 24 | |
| 25 | /* MMC Configs */ |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 26 | #define CONFIG_SYS_FSL_ESDHC_ADDR 0 |
| 27 | |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 28 | /* Physical Memory Map */ |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 29 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 30 | |
| 31 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM |
| 32 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 33 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE |
| 34 | |
| 35 | #define CONFIG_SYS_INIT_SP_OFFSET \ |
| 36 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
| 37 | #define CONFIG_SYS_INIT_SP_ADDR \ |
| 38 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) |
| 39 | |
Peter Robinson | 056845c | 2015-05-22 17:30:45 +0100 | [diff] [blame] | 40 | /* Environment organization */ |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 41 | |
| 42 | #if defined(CONFIG_ENV_IS_IN_MMC) |
| 43 | /* RiOTboard */ |
Iain Paton | c86efd8 | 2014-12-14 14:51:46 +0000 | [diff] [blame] | 44 | #define CONFIG_FDTFILE "imx6dl-riotboard.dtb" |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 45 | #define CONFIG_SYS_FSL_USDHC_NUM 3 |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 46 | #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH) |
| 47 | /* MarSBoard */ |
Iain Paton | c86efd8 | 2014-12-14 14:51:46 +0000 | [diff] [blame] | 48 | #define CONFIG_FDTFILE "imx6q-marsboard.dtb" |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 49 | #define CONFIG_SYS_FSL_USDHC_NUM 2 |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 50 | #endif |
| 51 | |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 52 | /* Framebuffer */ |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 53 | #define CONFIG_IMX_HDMI |
| 54 | #define CONFIG_IMX_VIDEO_SKIP |
| 55 | |
Peter Robinson | e51c1e8 | 2015-05-22 17:30:52 +0100 | [diff] [blame] | 56 | #include "mx6_common.h" |
Iain Paton | 729d2a3 | 2014-12-14 14:51:32 +0000 | [diff] [blame] | 57 | |
Fabien Lahoudere | 725019b | 2018-11-08 11:28:05 +0100 | [diff] [blame] | 58 | #ifdef CONFIG_SPL |
| 59 | #include "imx6_spl.h" |
| 60 | /* RiOTboard */ |
| 61 | #define CONFIG_SYS_SPL_ARGS_ADDR 0x13000000 |
| 62 | #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage" |
| 63 | #define CONFIG_SPL_FS_LOAD_ARGS_NAME "imx6dl-riotboard.dtb" |
| 64 | |
Fabien Lahoudere | 725019b | 2018-11-08 11:28:05 +0100 | [diff] [blame] | 65 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0 /* offset 69KB */ |
| 66 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0 /* offset 69KB */ |
| 67 | |
| 68 | #endif |
| 69 | |
Iain Paton | c86efd8 | 2014-12-14 14:51:46 +0000 | [diff] [blame] | 70 | /* 256M RAM (minimum), 32M uncompressed kernel, 16M compressed kernel, 1M fdt, |
| 71 | * 1M script, 1M pxe and the ramdisk at the end */ |
| 72 | #define MEM_LAYOUT_ENV_SETTINGS \ |
| 73 | "bootm_size=0x10000000\0" \ |
| 74 | "kernel_addr_r=0x12000000\0" \ |
| 75 | "fdt_addr_r=0x13000000\0" \ |
| 76 | "scriptaddr=0x13100000\0" \ |
| 77 | "pxefile_addr_r=0x13200000\0" \ |
| 78 | "ramdisk_addr_r=0x13300000\0" |
| 79 | |
| 80 | #define BOOT_TARGET_DEVICES(func) \ |
| 81 | func(MMC, mmc, 0) \ |
| 82 | func(MMC, mmc, 1) \ |
| 83 | func(MMC, mmc, 2) \ |
| 84 | func(USB, usb, 0) \ |
| 85 | func(PXE, pxe, na) \ |
| 86 | func(DHCP, dhcp, na) |
| 87 | |
| 88 | #include <config_distro_bootcmd.h> |
| 89 | |
| 90 | #define CONSOLE_STDIN_SETTINGS \ |
| 91 | "stdin=serial\0" |
| 92 | |
| 93 | #define CONSOLE_STDOUT_SETTINGS \ |
| 94 | "stdout=serial\0" \ |
| 95 | "stderr=serial\0" |
| 96 | |
| 97 | #define CONSOLE_ENV_SETTINGS \ |
| 98 | CONSOLE_STDIN_SETTINGS \ |
| 99 | CONSOLE_STDOUT_SETTINGS |
| 100 | |
| 101 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 102 | CONSOLE_ENV_SETTINGS \ |
| 103 | MEM_LAYOUT_ENV_SETTINGS \ |
| 104 | "fdtfile=" CONFIG_FDTFILE "\0" \ |
Fabio Berton | 0f29a61 | 2017-07-10 17:04:11 -0300 | [diff] [blame] | 105 | "finduuid=part uuid mmc 0:1 uuid\0" \ |
Iain Paton | c86efd8 | 2014-12-14 14:51:46 +0000 | [diff] [blame] | 106 | BOOTENV |
| 107 | |
Eric Benard | 3cbeb0f | 2014-04-04 19:05:55 +0200 | [diff] [blame] | 108 | #endif /* __RIOTBOARD_CONFIG_H */ |