Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ |
| 2 | * |
| 3 | * Copyright (c) 2021 Linumiz |
| 4 | * Author: Navin Sankar Velliangiri <navin@linumiz.com> |
| 5 | */ |
| 6 | |
| 7 | #ifndef _NPI_IMX6ULL_H |
| 8 | #define _NPI_IMX6ULL_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 |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 17 | |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [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 |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 23 | |
| 24 | #define CONFIG_NETMASK 255.255.255.0 |
| 25 | |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 26 | /* Physical Memory Map */ |
| 27 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 28 | |
| 29 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM |
| 30 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 31 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE |
| 32 | |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 33 | /* NAND */ |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 34 | #define CONFIG_SYS_NAND_BASE 0x40000000 |
| 35 | |
| 36 | /* USB Configs */ |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 37 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 38 | #define CONFIG_MXC_USB_FLAGS 0 |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 39 | |
| 40 | #ifdef CONFIG_CMD_NET |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 41 | #define CONFIG_FEC_MXC_PHYADDR 0x1 |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 42 | #endif |
| 43 | |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 44 | #define CONFIG_FEC_ENET_DEV 1 |
| 45 | |
| 46 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 47 | "console=ttymxc0,115200n8\0" \ |
| 48 | "image=zImage\0" \ |
| 49 | "fdtfile=imx6ull-seeed-npi-dev-board.dtb\0" \ |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 50 | "fdt_addr_r=0x82000000\0" \ |
| 51 | "kernel_addr_r=0x81000000\0" \ |
| 52 | "pxefile_addr_r=0x87100000\0" \ |
| 53 | "ramdisk_addr_r=0x82100000\0" \ |
| 54 | "scriptaddr=0x87000000\0" \ |
| 55 | "root=/dev/mmcblk0p2 rootwait\0" \ |
| 56 | BOOTENV |
| 57 | |
| 58 | #define BOOT_TARGET_DEVICES(func) \ |
| 59 | func(MMC, mmc, 0) \ |
Pali Rohár | dd54f6c | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 60 | func(UBIFS, ubifs, 0, UBI, boot) \ |
Navin Sankar Velliangiri | 3b2cc73 | 2021-05-18 09:03:20 +0530 | [diff] [blame] | 61 | func(PXE, pxe, na) \ |
| 62 | func(DHCP, dhcp, na) |
| 63 | |
| 64 | #include <config_distro_bootcmd.h> |
| 65 | |
| 66 | #endif /* _NPI_IMX6ULL_H */ |