]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
3cbeb0f0 EB |
2 | /* |
3 | * Copyright (C) 2014 Eukréa Electromatique | |
4 | * Author: Eric Bénard <[email protected]> | |
5 | * | |
6 | * Configuration settings for the Embest RIoTboard | |
7 | * | |
8 | * based on mx6*sabre*.h which are : | |
9 | * Copyright (C) 2012 Freescale Semiconductor, Inc. | |
3cbeb0f0 EB |
10 | */ |
11 | ||
12 | #ifndef __RIOTBOARD_CONFIG_H | |
13 | #define __RIOTBOARD_CONFIG_H | |
14 | ||
3cbeb0f0 | 15 | #define CONFIG_MXC_UART_BASE UART2_BASE |
12ca05a3 | 16 | #define CONSOLE_DEV "ttymxc1" |
3cbeb0f0 EB |
17 | |
18 | #define PHYS_SDRAM_SIZE (1u * 1024 * 1024 * 1024) | |
19 | ||
3cbeb0f0 | 20 | /* USB Configs */ |
3cbeb0f0 EB |
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 */ | |
3cbeb0f0 EB |
26 | #define CONFIG_SYS_FSL_ESDHC_ADDR 0 |
27 | ||
3cbeb0f0 EB |
28 | #define CONFIG_ARP_TIMEOUT 200UL |
29 | ||
3cbeb0f0 | 30 | /* Physical Memory Map */ |
3cbeb0f0 EB |
31 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
32 | ||
33 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM | |
34 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR | |
35 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE | |
36 | ||
37 | #define CONFIG_SYS_INIT_SP_OFFSET \ | |
38 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) | |
39 | #define CONFIG_SYS_INIT_SP_ADDR \ | |
40 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) | |
41 | ||
056845c2 | 42 | /* Environment organization */ |
3cbeb0f0 EB |
43 | |
44 | #if defined(CONFIG_ENV_IS_IN_MMC) | |
45 | /* RiOTboard */ | |
c86efd85 | 46 | #define CONFIG_FDTFILE "imx6dl-riotboard.dtb" |
3cbeb0f0 | 47 | #define CONFIG_SYS_FSL_USDHC_NUM 3 |
3cbeb0f0 EB |
48 | #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH) |
49 | /* MarSBoard */ | |
c86efd85 | 50 | #define CONFIG_FDTFILE "imx6q-marsboard.dtb" |
3cbeb0f0 | 51 | #define CONFIG_SYS_FSL_USDHC_NUM 2 |
3cbeb0f0 EB |
52 | #endif |
53 | ||
3cbeb0f0 | 54 | /* Framebuffer */ |
3cbeb0f0 EB |
55 | #define CONFIG_VIDEO_LOGO |
56 | #define CONFIG_VIDEO_BMP_LOGO | |
3cbeb0f0 EB |
57 | #define CONFIG_IMX_HDMI |
58 | #define CONFIG_IMX_VIDEO_SKIP | |
59 | ||
e51c1e8e | 60 | #include "mx6_common.h" |
729d2a34 | 61 | |
725019be FL |
62 | #ifdef CONFIG_SPL |
63 | #include "imx6_spl.h" | |
64 | /* RiOTboard */ | |
65 | #define CONFIG_SYS_SPL_ARGS_ADDR 0x13000000 | |
66 | #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage" | |
67 | #define CONFIG_SPL_FS_LOAD_ARGS_NAME "imx6dl-riotboard.dtb" | |
68 | ||
69 | #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0 /* offset 69KB */ | |
70 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0 /* offset 69KB */ | |
71 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0 /* offset 69KB */ | |
72 | ||
73 | #endif | |
74 | ||
c86efd85 IP |
75 | /* 256M RAM (minimum), 32M uncompressed kernel, 16M compressed kernel, 1M fdt, |
76 | * 1M script, 1M pxe and the ramdisk at the end */ | |
77 | #define MEM_LAYOUT_ENV_SETTINGS \ | |
78 | "bootm_size=0x10000000\0" \ | |
79 | "kernel_addr_r=0x12000000\0" \ | |
80 | "fdt_addr_r=0x13000000\0" \ | |
81 | "scriptaddr=0x13100000\0" \ | |
82 | "pxefile_addr_r=0x13200000\0" \ | |
83 | "ramdisk_addr_r=0x13300000\0" | |
84 | ||
85 | #define BOOT_TARGET_DEVICES(func) \ | |
86 | func(MMC, mmc, 0) \ | |
87 | func(MMC, mmc, 1) \ | |
88 | func(MMC, mmc, 2) \ | |
89 | func(USB, usb, 0) \ | |
90 | func(PXE, pxe, na) \ | |
91 | func(DHCP, dhcp, na) | |
92 | ||
93 | #include <config_distro_bootcmd.h> | |
94 | ||
95 | #define CONSOLE_STDIN_SETTINGS \ | |
96 | "stdin=serial\0" | |
97 | ||
98 | #define CONSOLE_STDOUT_SETTINGS \ | |
99 | "stdout=serial\0" \ | |
100 | "stderr=serial\0" | |
101 | ||
102 | #define CONSOLE_ENV_SETTINGS \ | |
103 | CONSOLE_STDIN_SETTINGS \ | |
104 | CONSOLE_STDOUT_SETTINGS | |
105 | ||
106 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
107 | CONSOLE_ENV_SETTINGS \ | |
108 | MEM_LAYOUT_ENV_SETTINGS \ | |
109 | "fdtfile=" CONFIG_FDTFILE "\0" \ | |
0f29a61c | 110 | "finduuid=part uuid mmc 0:1 uuid\0" \ |
c86efd85 IP |
111 | BOOTENV |
112 | ||
3cbeb0f0 | 113 | #endif /* __RIOTBOARD_CONFIG_H */ |