]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/embestmx6boards.h
1d9e33a8c9116dc9fe3c3aded2a0a6100eccc6a9
[people/ms/u-boot.git] / include / configs / embestmx6boards.h
1 /*
2 * Copyright (C) 2014 Eukréa Electromatique
3 * Author: Eric Bénard <eric@eukrea.com>
4 *
5 * Configuration settings for the Embest RIoTboard
6 *
7 * based on mx6*sabre*.h which are :
8 * Copyright (C) 2012 Freescale Semiconductor, Inc.
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 */
12
13 #ifndef __RIOTBOARD_CONFIG_H
14 #define __RIOTBOARD_CONFIG_H
15
16 #define CONFIG_MXC_UART_BASE UART2_BASE
17 #define CONSOLE_DEV "ttymxc1"
18
19 #define PHYS_SDRAM_SIZE (1u * 1024 * 1024 * 1024)
20
21 #define CONFIG_IMX_THERMAL
22
23 /* Size of malloc() pool */
24 #define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M)
25
26 #define CONFIG_MXC_UART
27
28 /* I2C Configs */
29 #define CONFIG_SYS_I2C
30 #define CONFIG_SYS_I2C_MXC
31 #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
32 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
33 #define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
34 #define CONFIG_SYS_I2C_SPEED 100000
35
36 /* USB Configs */
37 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
38 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
39 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
40 #define CONFIG_MXC_USB_FLAGS 0
41
42 /* MMC Configs */
43 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
44
45 #define CONFIG_FEC_MXC
46 #define CONFIG_MII
47 #define IMX_FEC_BASE ENET_BASE_ADDR
48 #define CONFIG_FEC_XCV_TYPE RGMII
49 #define CONFIG_ETHPRIME "FEC"
50 #define CONFIG_FEC_MXC_PHYADDR 4
51
52 #define CONFIG_PHY_ATHEROS
53
54 #ifdef CONFIG_CMD_SF
55 #define CONFIG_SF_DEFAULT_BUS 0
56 #define CONFIG_SF_DEFAULT_CS 0
57 #define CONFIG_SF_DEFAULT_SPEED 20000000
58 #define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
59 #endif
60
61 #define CONFIG_ARP_TIMEOUT 200UL
62
63 #define CONFIG_SYS_MEMTEST_START 0x10000000
64 #define CONFIG_SYS_MEMTEST_END 0x10010000
65 #define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
66
67 /* Physical Memory Map */
68 #define CONFIG_NR_DRAM_BANKS 1
69 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
70
71 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
72 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
73 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
74
75 #define CONFIG_SYS_INIT_SP_OFFSET \
76 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
77 #define CONFIG_SYS_INIT_SP_ADDR \
78 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
79
80 /* Environment organization */
81 #define CONFIG_ENV_SIZE (8 * 1024)
82
83 #if defined(CONFIG_ENV_IS_IN_MMC)
84 /* RiOTboard */
85 #define CONFIG_FDTFILE "imx6dl-riotboard.dtb"
86 #define CONFIG_SYS_FSL_USDHC_NUM 3
87 #define CONFIG_SYS_MMC_ENV_DEV 2 /* SDHC4 */
88 #define CONFIG_ENV_OFFSET (6 * 64 * 1024)
89 #define CONFIG_SUPPORT_EMMC_BOOT /* eMMC specific */
90 #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH)
91 /* MarSBoard */
92 #define CONFIG_FDTFILE "imx6q-marsboard.dtb"
93 #define CONFIG_SYS_FSL_USDHC_NUM 2
94 #define CONFIG_ENV_OFFSET (768 * 1024)
95 #define CONFIG_ENV_SECT_SIZE (8 * 1024)
96 #define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
97 #define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS
98 #define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE
99 #define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
100 #endif
101
102 /* Framebuffer */
103 #define CONFIG_VIDEO_IPUV3
104 #define CONFIG_VIDEO_BMP_RLE8
105 #define CONFIG_SPLASH_SCREEN
106 #define CONFIG_SPLASH_SCREEN_ALIGN
107 #define CONFIG_BMP_16BPP
108 #define CONFIG_VIDEO_LOGO
109 #define CONFIG_VIDEO_BMP_LOGO
110 #define CONFIG_IMX_HDMI
111 #define CONFIG_IMX_VIDEO_SKIP
112
113 #include <config_distro_defaults.h>
114 #include "mx6_common.h"
115
116 /* 256M RAM (minimum), 32M uncompressed kernel, 16M compressed kernel, 1M fdt,
117 * 1M script, 1M pxe and the ramdisk at the end */
118 #define MEM_LAYOUT_ENV_SETTINGS \
119 "bootm_size=0x10000000\0" \
120 "kernel_addr_r=0x12000000\0" \
121 "fdt_addr_r=0x13000000\0" \
122 "scriptaddr=0x13100000\0" \
123 "pxefile_addr_r=0x13200000\0" \
124 "ramdisk_addr_r=0x13300000\0"
125
126 #define BOOT_TARGET_DEVICES(func) \
127 func(MMC, mmc, 0) \
128 func(MMC, mmc, 1) \
129 func(MMC, mmc, 2) \
130 func(USB, usb, 0) \
131 func(PXE, pxe, na) \
132 func(DHCP, dhcp, na)
133
134 #include <config_distro_bootcmd.h>
135
136 #define CONSOLE_STDIN_SETTINGS \
137 "stdin=serial\0"
138
139 #define CONSOLE_STDOUT_SETTINGS \
140 "stdout=serial\0" \
141 "stderr=serial\0"
142
143 #define CONSOLE_ENV_SETTINGS \
144 CONSOLE_STDIN_SETTINGS \
145 CONSOLE_STDOUT_SETTINGS
146
147 #define CONFIG_EXTRA_ENV_SETTINGS \
148 CONSOLE_ENV_SETTINGS \
149 MEM_LAYOUT_ENV_SETTINGS \
150 "fdtfile=" CONFIG_FDTFILE "\0" \
151 "finduuid=part uuid mmc 0:1 uuid\0" \
152 BOOTENV
153
154 #endif /* __RIOTBOARD_CONFIG_H */