blob: 2571098d06c6e8a96c8dfd3a6ea21b46c77b9396 [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 */
Tom Rini4db38662022-12-04 10:04:55 -050016#define CFG_MXC_UART_BASE UART1_BASE
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020017
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
Tom Riniaa6e94d2022-11-16 13:10:37 -050025#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini65cc0e22022-11-16 13:10:41 -050026#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
27#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020028
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 */
Tom Rinidd11fdc2022-12-04 10:04:56 -050033#define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
34#define CFG_MXC_USB_FLAGS 0
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020035
Tom Rini0613c362022-12-04 10:03:50 -050036#define CFG_EXTRA_ENV_SETTINGS \
Parthiban Nallathambi10e959a2020-07-27 16:48:41 +020037 "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 */