Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 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 | /* SPL options */ |
| 14 | #include "imx6_spl.h" |
| 15 | |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 16 | #define CFG_SYS_FSL_USDHC_NUM 1 |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 17 | |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 18 | /* Console configs */ |
| 19 | #define CONFIG_MXC_UART_BASE UART1_BASE |
| 20 | |
| 21 | /* MMC Configs */ |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 22 | #define CFG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 23 | |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 24 | /* Physical Memory Map */ |
| 25 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 26 | #define PHYS_SDRAM_SIZE SZ_256M |
| 27 | |
| 28 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM |
| 29 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 30 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE |
| 31 | |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 32 | /* NAND */ |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 33 | #define CONFIG_SYS_NAND_BASE 0x40000000 |
| 34 | |
| 35 | /* USB Configs */ |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 36 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 37 | #define CONFIG_MXC_USB_FLAGS 0 |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 38 | |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 39 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 40 | "console=ttymxc0,115200n8\0" \ |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 41 | "fdt_addr_r=0x82000000\0" \ |
| 42 | "fdt_high=0xffffffff\0" \ |
| 43 | "initrd_high=0xffffffff\0" \ |
| 44 | "kernel_addr_r=0x81000000\0" \ |
| 45 | "pxefile_addr_r=0x87100000\0" \ |
| 46 | "ramdisk_addr_r=0x82100000\0" \ |
| 47 | "scriptaddr=0x87000000\0" \ |
| 48 | BOOTENV |
| 49 | |
| 50 | #define BOOT_TARGET_DEVICES(func) \ |
| 51 | func(MMC, mmc, 0) \ |
Pali Rohár | dd54f6c | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 52 | func(UBIFS, ubifs, 0, UBI, boot) \ |
Parthiban Nallathambi | 8214fd9 | 2020-07-27 16:48:41 +0200 | [diff] [blame] | 53 | func(PXE, pxe, na) \ |
| 54 | func(DHCP, dhcp, na) |
| 55 | |
| 56 | #include <config_distro_bootcmd.h> |
| 57 | |
| 58 | #endif /* __MYS_6ULX_H */ |