blob: 273f938554defd524467c54925f29a9ddcb950a8 [file] [log] [blame]
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +02001/* 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
Tom Rini6cc04542022-10-28 20:27:13 -040013#define CFG_SYS_FSL_USDHC_NUM 1
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020014
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020015/* Console configs */
16#define CONFIG_MXC_UART_BASE UART1_BASE
17
18/* MMC Configs */
Tom Rini6cc04542022-10-28 20:27:13 -040019#define CFG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020020
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020021/* Physical Memory Map */
22#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
23#define PHYS_SDRAM_SIZE SZ_256M
24
25#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
26#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
27#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
28
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020029/* NAND */
Tom Rini4e590942022-11-12 17:36:51 -050030#define CFG_SYS_NAND_BASE 0x40000000
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020031
32/* USB Configs */
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020033#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
34#define CONFIG_MXC_USB_FLAGS 0
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020035
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020036#define CONFIG_EXTRA_ENV_SETTINGS \
37 "console=ttymxc0,115200n8\0" \
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020038 "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) \
Pali Roháre6ca1482022-05-31 10:32:36 +020049 func(UBIFS, ubifs, 0, UBI, boot) \
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020050 func(PXE, pxe, na) \
51 func(DHCP, dhcp, na)
52
53#include <config_distro_bootcmd.h>
54
55#endif /* __MYS_6ULX_H */