blob: 874b44b28171e5635a1e43fcf596c40b0da7d738 [file] [log] [blame]
Markus Niebelcb07d742014-07-18 16:52:44 +02001/*
2 * Copyright (C) 2013, 2014 Markus Niebel <Markus.Niebel@tq-group.com>
3 *
4 * Configuration settings for the TQ Systems TQMa6<Q,S> module.
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
Markus Niebel66cacc92015-06-04 17:25:30 +020012#include <linux/kconfig.h>
Markus Niebel1719d492014-10-23 15:47:05 +020013/* SPL */
14/* #if defined(CONFIG_SPL_BUILD) */
Markus Niebel1719d492014-10-23 15:47:05 +020015/* common IMX6 SPL configuration */
16#include "imx6_spl.h"
17
18/* #endif */
19
Fabio Estevamcd6ddc42015-05-28 12:33:34 -030020/* place code in last 4 MiB of RAM */
21#if defined(CONFIG_MX6DL) || defined(CONFIG_MX6S)
22#define CONFIG_SYS_TEXT_BASE 0x2fc00000
23#elif defined(CONFIG_MX6Q) || defined(CONFIG_MX6D)
24#define CONFIG_SYS_TEXT_BASE 0x4fc00000
25#endif
26
Markus Niebelcb07d742014-07-18 16:52:44 +020027#include "mx6_common.h"
Markus Niebelcb07d742014-07-18 16:52:44 +020028
Markus Niebelcb07d742014-07-18 16:52:44 +020029#if defined(CONFIG_MX6DL) || defined(CONFIG_MX6S)
30#define PHYS_SDRAM_SIZE (512u * SZ_1M)
31#elif defined(CONFIG_MX6Q) || defined(CONFIG_MX6D)
32#define PHYS_SDRAM_SIZE (1024u * SZ_1M)
33#endif
34
Markus Niebelcb07d742014-07-18 16:52:44 +020035#define CONFIG_MXC_UART
36
37/* SPI */
Markus Niebelcb07d742014-07-18 16:52:44 +020038#define CONFIG_MXC_SPI
39
40/* SPI Flash */
Markus Niebelcb07d742014-07-18 16:52:44 +020041
Markus Niebel52835462014-11-18 13:22:54 +010042#define TQMA6_SPI_FLASH_SECTOR_SIZE SZ_64K
43
Markus Niebelcb07d742014-07-18 16:52:44 +020044#define CONFIG_SF_DEFAULT_BUS 0
Markus Niebel1719d492014-10-23 15:47:05 +020045#define CONFIG_SF_DEFAULT_CS 0
Markus Niebelcb07d742014-07-18 16:52:44 +020046#define CONFIG_SF_DEFAULT_SPEED 50000000
47#define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0)
48
49/* I2C Configs */
Markus Niebelcb07d742014-07-18 16:52:44 +020050#define CONFIG_SYS_I2C
51#define CONFIG_SYS_I2C_MXC
Albert ARIBAUD \\(3ADEV\\)03544c62015-09-21 22:43:38 +020052#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
53#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
York Sunf8cb1012015-03-20 10:20:40 -070054#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
Markus Niebelcb07d742014-07-18 16:52:44 +020055#define CONFIG_I2C_MULTI_BUS
56#define CONFIG_SYS_I2C_SPEED 100000
57
58/* I2C SYSMON (LM75) */
59#define CONFIG_DTT_LM75
Markus Niebelcb07d742014-07-18 16:52:44 +020060#define CONFIG_DTT_MAX_TEMP 70
61#define CONFIG_DTT_MIN_TEMP -30
62#define CONFIG_DTT_HYSTERESIS 3
63#define CONFIG_CMD_DTT
64
65/* I2C EEPROM (M24C64) */
66#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
67#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
68#define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_BITS 5 /* 32 Bytes */
69#define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_DELAY_MS 20
70#define CONFIG_CMD_EEPROM
71
72#define CONFIG_POWER
73#define CONFIG_POWER_I2C
74#define CONFIG_POWER_PFUZE100
75#define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
76#define TQMA6_PFUZE100_I2C_BUS 2
77
78/* MMC Configs */
Markus Niebelcb07d742014-07-18 16:52:44 +020079#define CONFIG_SYS_FSL_ESDHC_ADDR 0
80
Markus Niebelcb07d742014-07-18 16:52:44 +020081/* USB Configs */
Markus Niebelcb07d742014-07-18 16:52:44 +020082#define CONFIG_USB_EHCI
83#define CONFIG_USB_EHCI_MX6
Markus Niebelcb07d742014-07-18 16:52:44 +020084#define CONFIG_USB_HOST_ETHER
85#define CONFIG_USB_ETHER_SMSC95XX
Markus Niebelcb07d742014-07-18 16:52:44 +020086#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Stefan Roese911b5ea2015-03-12 13:34:29 +010087#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
88#define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
Markus Niebelcb07d742014-07-18 16:52:44 +020089
Markus Niebelcb07d742014-07-18 16:52:44 +020090#define CONFIG_FEC_MXC
91#define IMX_FEC_BASE ENET_BASE_ADDR
92#define CONFIG_PHYLIB
93#define CONFIG_MII
94
Markus Niebelcb07d742014-07-18 16:52:44 +020095#define CONFIG_ARP_TIMEOUT 200UL
Markus Niebelcb07d742014-07-18 16:52:44 +020096
Markus Niebelcb07d742014-07-18 16:52:44 +020097/* Command definition */
Markus Niebelcb07d742014-07-18 16:52:44 +020098#define CONFIG_CMD_BMODE
Markus Niebelcb07d742014-07-18 16:52:44 +020099
Markus Niebelcb07d742014-07-18 16:52:44 +0200100#define CONFIG_ENV_SIZE (SZ_8K)
101/* Size of malloc() pool */
102#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * SZ_1M)
103
104#if defined(CONFIG_TQMA6X_MMC_BOOT)
105
106#define CONFIG_ENV_IS_IN_MMC
107#define TQMA6_UBOOT_OFFSET SZ_1K
108#define TQMA6_UBOOT_SECTOR_START 0x2
109#define TQMA6_UBOOT_SECTOR_COUNT 0x7fe
110
111#define CONFIG_ENV_OFFSET SZ_1M
112#define CONFIG_SYS_MMC_ENV_DEV 0
113
114#define TQMA6_FDT_OFFSET (2 * SZ_1M)
115#define TQMA6_FDT_SECTOR_START 0x1000
116#define TQMA6_FDT_SECTOR_COUNT 0x800
117
118#define TQMA6_KERNEL_SECTOR_START 0x2000
119#define TQMA6_KERNEL_SECTOR_COUNT 0x2000
120
121#define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
122 "uboot_start="__stringify(TQMA6_UBOOT_SECTOR_START)"\0" \
123 "uboot_size="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0" \
124 "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0" \
125 "fdt_size="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0" \
126 "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0" \
127 "kernel_size="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0" \
128 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
129 "loadimage=mmc dev ${mmcdev}; " \
130 "mmc read ${loadaddr} ${kernel_start} ${kernel_size};\0" \
131 "loadfdt=mmc dev ${mmcdev}; " \
132 "mmc read ${fdt_addr} ${fdt_start} ${fdt_size};\0" \
133 "update_uboot=if tftp ${uboot}; then " \
134 "if itest ${filesize} > 0; then " \
135 "mmc dev ${mmcdev}; mmc rescan; " \
136 "setexpr blkc ${filesize} / 0x200; " \
137 "setexpr blkc ${blkc} + 1; " \
138 "if itest ${blkc} <= ${uboot_size}; then " \
139 "mmc write ${loadaddr} ${uboot_start} " \
140 "${blkc}; " \
141 "fi; " \
142 "fi; fi; " \
143 "setenv filesize; setenv blkc \0" \
144 "update_kernel=run kernel_name; " \
145 "if tftp ${kernel}; then " \
146 "if itest ${filesize} > 0; then " \
147 "mmc dev ${mmcdev}; mmc rescan; " \
148 "setexpr blkc ${filesize} / 0x200; " \
149 "setexpr blkc ${blkc} + 1; " \
150 "if itest ${blkc} <= ${kernel_size}; then " \
151 "mmc write ${loadaddr} " \
152 "${kernel_start} ${blkc}; " \
153 "fi; " \
154 "fi; " \
155 "fi; " \
156 "setenv filesize; setenv blkc \0" \
157 "update_fdt=if tftp ${fdt_file}; then " \
158 "if itest ${filesize} > 0; then " \
159 "mmc dev ${mmcdev}; mmc rescan; " \
160 "setexpr blkc ${filesize} / 0x200; " \
161 "setexpr blkc ${blkc} + 1; " \
162 "if itest ${blkc} <= ${fdt_size}; then " \
163 "mmc write ${loadaddr} ${fdt_start} ${blkc}; " \
164 "fi; " \
165 "fi; fi; " \
166 "setenv filesize; setenv blkc \0" \
167
168#define CONFIG_BOOTCOMMAND \
169 "run mmcboot; run netboot; run panicboot"
170
171#elif defined(CONFIG_TQMA6X_SPI_BOOT)
172
Markus Niebelcb07d742014-07-18 16:52:44 +0200173#define TQMA6_UBOOT_OFFSET 0x400
174#define TQMA6_UBOOT_SECTOR_START 0x0
175/* max u-boot size: 512k */
Markus Niebel52835462014-11-18 13:22:54 +0100176#define TQMA6_UBOOT_SECTOR_SIZE TQMA6_SPI_FLASH_SECTOR_SIZE
Markus Niebelcb07d742014-07-18 16:52:44 +0200177#define TQMA6_UBOOT_SECTOR_COUNT 0x8
178#define TQMA6_UBOOT_SIZE (TQMA6_UBOOT_SECTOR_SIZE * \
179 TQMA6_UBOOT_SECTOR_COUNT)
180
181#define CONFIG_ENV_IS_IN_SPI_FLASH
182#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
183#define CONFIG_ENV_OFFSET (TQMA6_UBOOT_SIZE)
Markus Niebel52835462014-11-18 13:22:54 +0100184#define CONFIG_ENV_SECT_SIZE TQMA6_SPI_FLASH_SECTOR_SIZE
Markus Niebelcb07d742014-07-18 16:52:44 +0200185#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + \
186 CONFIG_ENV_SECT_SIZE)
187
188#define CONFIG_ENV_SPI_BUS (CONFIG_SF_DEFAULT_BUS)
189#define CONFIG_ENV_SPI_CS (CONFIG_SF_DEFAULT_CS)
190#define CONFIG_ENV_SPI_MAX_HZ (CONFIG_SF_DEFAULT_SPEED)
191#define CONFIG_ENV_SPI_MODE (CONFIG_SF_DEFAULT_MODE)
192
193#define TQMA6_FDT_OFFSET (CONFIG_ENV_OFFSET_REDUND + \
194 CONFIG_ENV_SECT_SIZE)
Markus Niebel52835462014-11-18 13:22:54 +0100195#define TQMA6_FDT_SECT_SIZE (TQMA6_SPI_FLASH_SECTOR_SIZE)
Markus Niebelcb07d742014-07-18 16:52:44 +0200196
197#define TQMA6_FDT_SECTOR_START 0x0a /* 8 Sector u-boot, 2 Sector env */
198#define TQMA6_FDT_SECTOR_COUNT 0x01
199
200#define TQMA6_KERNEL_SECTOR_START 0x10
201#define TQMA6_KERNEL_SECTOR_COUNT 0x60
202
203#define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
204 "mmcblkdev=0\0" \
205 "uboot_offset="__stringify(TQMA6_UBOOT_OFFSET)"\0" \
206 "uboot_sectors="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0" \
207 "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0" \
208 "fdt_sectors="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0" \
209 "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0" \
210 "kernel_sectors="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0" \
211 "update_uboot=if tftp ${uboot}; then " \
212 "if itest ${filesize} > 0; then " \
213 "setexpr blkc ${filesize} + " \
214 __stringify(TQMA6_UBOOT_OFFSET) "; " \
215 "setexpr size ${uboot_sectors} * " \
Markus Niebel52835462014-11-18 13:22:54 +0100216 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelcb07d742014-07-18 16:52:44 +0200217 "if itest ${blkc} <= ${size}; then " \
218 "sf probe; " \
219 "sf erase 0 ${size}; " \
220 "sf write ${loadaddr} ${uboot_offset} " \
221 "${filesize}; " \
222 "fi; " \
223 "fi; fi; " \
224 "setenv filesize 0; setenv blkc; setenv size \0" \
225 "update_kernel=run kernel_name; if tftp ${kernel}; then " \
226 "if itest ${filesize} > 0; then " \
227 "setexpr size ${kernel_sectors} * " \
Markus Niebel52835462014-11-18 13:22:54 +0100228 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelcb07d742014-07-18 16:52:44 +0200229 "setexpr offset ${kernel_start} * " \
Markus Niebel52835462014-11-18 13:22:54 +0100230 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelcb07d742014-07-18 16:52:44 +0200231 "if itest ${filesize} <= ${size}; then " \
232 "sf probe; " \
233 "sf erase ${offset} ${size}; " \
234 "sf write ${loadaddr} ${offset} " \
235 "${filesize}; " \
236 "fi; " \
237 "fi; fi; " \
238 "setenv filesize 0; setenv size ; setenv offset\0" \
239 "update_fdt=if tftp ${fdt_file}; then " \
240 "if itest ${filesize} > 0; then " \
241 "setexpr size ${fdt_sectors} * " \
Markus Niebel52835462014-11-18 13:22:54 +0100242 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelcb07d742014-07-18 16:52:44 +0200243 "setexpr offset ${fdt_start} * " \
Markus Niebel52835462014-11-18 13:22:54 +0100244 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelcb07d742014-07-18 16:52:44 +0200245 "if itest ${filesize} <= ${size}; then " \
246 "sf probe; " \
247 "sf erase ${offset} ${size}; " \
248 "sf write ${loadaddr} ${offset} " \
249 "${filesize}; " \
250 "fi; " \
251 "fi; fi; " \
252 "setenv filesize 0; setenv size ; setenv offset\0" \
253 "loadimage=sf probe; " \
254 "setexpr size ${kernel_sectors} * " \
Markus Niebel52835462014-11-18 13:22:54 +0100255 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelcb07d742014-07-18 16:52:44 +0200256 "setexpr offset ${kernel_start} * " \
Markus Niebel52835462014-11-18 13:22:54 +0100257 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelcb07d742014-07-18 16:52:44 +0200258 "sf read ${loadaddr} ${offset} ${size}; " \
259 "setenv size ; setenv offset\0" \
260 "loadfdt=sf probe; " \
261 "setexpr size ${fdt_sectors} * " \
Markus Niebel52835462014-11-18 13:22:54 +0100262 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelcb07d742014-07-18 16:52:44 +0200263 "setexpr offset ${fdt_start} * " \
Markus Niebel52835462014-11-18 13:22:54 +0100264 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebel0b14f1a2017-02-03 16:14:00 +0100265 "sf read ${fdt_addr} ${offset} ${size}; " \
Markus Niebelcb07d742014-07-18 16:52:44 +0200266 "setenv size ; setenv offset\0" \
267
Markus Niebelcb07d742014-07-18 16:52:44 +0200268#define CONFIG_BOOTCOMMAND \
269 "sf probe; run mmcboot; run netboot; run panicboot" \
270
271#else
272
273#error "need to define boot source"
274
275#endif
276
277/* 128 MiB offset as in ARM related docu for linux suggested */
278#define TQMA6_FDT_ADDRESS 0x18000000
279
Markus Niebel9e9846a2017-02-03 16:13:58 +0100280/* set to a resonable value, changeable by user */
281#define TQMA6_CMA_SIZE 160M
282
Markus Niebelcb07d742014-07-18 16:52:44 +0200283#define CONFIG_EXTRA_ENV_SETTINGS \
284 "board=tqma6\0" \
285 "uimage=uImage\0" \
286 "zimage=zImage\0" \
287 "boot_type=bootz\0" \
288 "kernel_name=if test \"${boot_type}\" != bootz; then " \
289 "setenv kernel ${uimage}; " \
290 "else setenv kernel ${zimage}; fi\0" \
291 "uboot=u-boot.imx\0" \
292 "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
293 "fdt_addr="__stringify(TQMA6_FDT_ADDRESS)"\0" \
Simon Glass12ca05a2016-10-17 20:12:39 -0600294 "console=" CONSOLE_DEV "\0" \
Markus Niebel9e9846a2017-02-03 16:13:58 +0100295 "cma_size="__stringify(TQMA6_CMA_SIZE)"\0" \
Markus Niebelcb07d742014-07-18 16:52:44 +0200296 "fdt_high=0xffffffff\0" \
297 "initrd_high=0xffffffff\0" \
Markus Niebel9e9846a2017-02-03 16:13:58 +0100298 "addcma=setenv bootargs ${bootargs} cma=${cma_size}\0" \
Markus Niebelcb07d742014-07-18 16:52:44 +0200299 "addtty=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \
300 "addfb=setenv bootargs ${bootargs} " \
301 "imx-fbdev.legacyfb_depth=32 consoleblank=0\0" \
302 "mmcpart=2\0" \
303 "mmcblkdev=0\0" \
Markus Niebel9e9846a2017-02-03 16:13:58 +0100304 "mmcargs=run addmmc addtty addfb addcma\0" \
Markus Niebelcb07d742014-07-18 16:52:44 +0200305 "addmmc=setenv bootargs ${bootargs} " \
306 "root=/dev/mmcblk${mmcblkdev}p${mmcpart} rw rootwait\0" \
307 "mmcboot=echo Booting from mmc ...; " \
308 "setenv bootargs; " \
309 "run mmcargs; " \
310 "run loadimage; " \
311 "if run loadfdt; then " \
312 "echo boot device tree kernel ...; " \
313 "${boot_type} ${loadaddr} - ${fdt_addr}; " \
314 "else " \
315 "${boot_type}; " \
316 "fi;\0" \
317 "setenv bootargs \0" \
318 "netdev=eth0\0" \
319 "rootpath=/srv/nfs/tqma6\0" \
320 "ipmode=static\0" \
Markus Niebel9e9846a2017-02-03 16:13:58 +0100321 "netargs=run addnfs addip addtty addfb addcma\0" \
Markus Niebelcb07d742014-07-18 16:52:44 +0200322 "addnfs=setenv bootargs ${bootargs} " \
323 "root=/dev/nfs rw " \
324 "nfsroot=${serverip}:${rootpath},v3,tcp;\0" \
325 "addip_static=setenv bootargs ${bootargs} " \
326 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:" \
327 "${hostname}:${netdev}:off\0" \
328 "addip_dynamic=setenv bootargs ${bootargs} ip=dhcp\0" \
329 "addip=if test \"${ipmode}\" != static; then " \
330 "run addip_dynamic; else run addip_static; fi\0" \
331 "set_getcmd=if test \"${ipmode}\" != static; then " \
332 "setenv getcmd dhcp; setenv autoload yes; " \
333 "else setenv getcmd tftp; setenv autoload no; fi\0" \
334 "netboot=echo Booting from net ...; " \
335 "run kernel_name; " \
336 "run set_getcmd; " \
337 "setenv bootargs; " \
338 "run netargs; " \
339 "if ${getcmd} ${kernel}; then " \
340 "if ${getcmd} ${fdt_addr} ${fdt_file}; then " \
341 "${boot_type} ${loadaddr} - ${fdt_addr}; " \
342 "fi; " \
343 "fi; " \
344 "echo ... failed\0" \
345 "panicboot=echo No boot device !!! reset\0" \
346 TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
347
Markus Niebelcb07d742014-07-18 16:52:44 +0200348#define CONFIG_STACKSIZE (128u * SZ_1K)
349
350/* Physical Memory Map */
351#define CONFIG_NR_DRAM_BANKS 1
352#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
353
354#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
355#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
356#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
357
358#define CONFIG_SYS_INIT_SP_OFFSET \
359 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
360#define CONFIG_SYS_INIT_SP_ADDR \
361 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
362
Stefan Roese6b396b32015-03-12 16:34:16 +0100363/*
364 * All the defines above are for the TQMa6 SoM
365 *
366 * Now include the baseboard specific configuration
367 */
368#ifdef CONFIG_MBA6
369#include "tqma6_mba6.h"
Stefan Roese452308c2015-07-06 13:36:33 +0200370#elif CONFIG_WRU4
371#include "tqma6_wru4.h"
Stefan Roese6b396b32015-03-12 16:34:16 +0100372#else
373#error "No baseboard for the TQMa6 defined!"
374#endif
375
376/* Support at least the sensor on TQMa6 SOM */
377#if !defined(CONFIG_DTT_SENSORS)
378#define CONFIG_DTT_SENSORS { 0 }
379#endif
380
Markus Niebelcb07d742014-07-18 16:52:44 +0200381#endif /* __CONFIG_H */