1/* SPDX-License-Identifier: GPL-2.0+
2 *
3 * Copyright (C) 2020 Linumiz
4 * Author: Parthiban Nallathambi <parthiban@linumiz.com>
5 */
6
7#ifndef __MYS_6ULX_H
8#define __MYS_6ULX_H
9
10#include <linux/sizes.h>
11#include "mx6_common.h"
12
13#define CFG_SYS_FSL_USDHC_NUM	1
14
15/* Console configs */
16#define CFG_MXC_UART_BASE		UART1_BASE
17
18/* MMC Configs */
19#define CFG_SYS_FSL_ESDHC_ADDR	USDHC2_BASE_ADDR
20
21/* Physical Memory Map */
22#define PHYS_SDRAM			MMDC0_ARB_BASE_ADDR
23#define PHYS_SDRAM_SIZE			SZ_256M
24
25#define CFG_SYS_SDRAM_BASE		PHYS_SDRAM
26#define CFG_SYS_INIT_RAM_ADDR	IRAM_BASE_ADDR
27#define CFG_SYS_INIT_RAM_SIZE	IRAM_SIZE
28
29/* NAND */
30#define CFG_SYS_NAND_BASE		0x40000000
31
32/* USB Configs */
33#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
34#define CFG_MXC_USB_FLAGS		0
35
36#define CFG_EXTRA_ENV_SETTINGS \
37	"console=ttymxc0,115200n8\0" \
38	"fdt_addr_r=0x82000000\0" \
39	"fdt_high=0xffffffff\0" \
40	"initrd_high=0xffffffff\0" \
41	"kernel_addr_r=0x81000000\0" \
42	"pxefile_addr_r=0x87100000\0" \
43	"ramdisk_addr_r=0x82100000\0" \
44	"scriptaddr=0x87000000\0" \
45	BOOTENV
46
47#define BOOT_TARGET_DEVICES(func) \
48	func(MMC, mmc, 0) \
49	func(UBIFS, ubifs, 0, UBI, boot) \
50	func(PXE, pxe, na) \
51	func(DHCP, dhcp, na)
52
53#include <config_distro_bootcmd.h>
54
55#endif /* __MYS_6ULX_H */
56