Navin Sankar Velliangiri | a3a0bc8 | 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 | |
| 16 | #define CONFIG_SYS_FSL_USDHC_NUM 1 |
| 17 | |
| 18 | /* Size of malloc() poll */ |
| 19 | #define CONFIG_SYS_MALLOC_LEN SZ_2M |
| 20 | |
| 21 | /* Console configs */ |
| 22 | #define CONFIG_MXC_UART_BASE UART1_BASE |
| 23 | |
| 24 | /* MMC Configs */ |
| 25 | #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR |
| 26 | |
| 27 | #define CONFIG_NETMASK 255.255.255.0 |
| 28 | |
| 29 | #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR |
| 30 | #define CONFIG_SYS_HZ 1000 |
| 31 | |
| 32 | /* Physical Memory Map */ |
| 33 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 34 | |
| 35 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM |
| 36 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 37 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE |
| 38 | |
| 39 | #define CONFIG_SYS_INIT_SP_OFFSET \ |
| 40 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
| 41 | #define CONFIG_SYS_INIT_SP_ADDR \ |
| 42 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) |
| 43 | |
| 44 | /* environment settings */ |
| 45 | #if defined(CONFIG_ENV_IS_IN_MMC) |
| 46 | #define CONFIG_SYS_MMC_ENV_DEV 0 |
| 47 | #elif defined(CONFIG_ENV_IS_IN_NAND) |
| 48 | #undef CONFIG_ENV_SIZE |
| 49 | #define CONFIG_ENV_SECT_SIZE (128 << 10) |
| 50 | #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE |
| 51 | #endif |
| 52 | |
| 53 | /* NAND */ |
| 54 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 55 | #define CONFIG_SYS_NAND_BASE 0x40000000 |
| 56 | |
| 57 | /* USB Configs */ |
| 58 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET |
| 59 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 60 | #define CONFIG_MXC_USB_FLAGS 0 |
| 61 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 |
| 62 | |
| 63 | #ifdef CONFIG_CMD_NET |
| 64 | #define IMX_FEC_BASE ENET_BASE_ADDR |
| 65 | #define CONFIG_FEC_MXC_PHYADDR 0x1 |
| 66 | #define CONFIG_FEC_XCV_TYPE RMII |
| 67 | #define CONFIG_ETHPRIME "eth0" |
| 68 | #endif |
| 69 | |
| 70 | #define CONFIG_IMX_THERMAL |
| 71 | |
| 72 | #define CONFIG_FEC_ENET_DEV 1 |
| 73 | |
| 74 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 75 | "console=ttymxc0,115200n8\0" \ |
| 76 | "image=zImage\0" \ |
| 77 | "fdtfile=imx6ull-seeed-npi-dev-board.dtb\0" \ |
| 78 | "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \ |
| 79 | "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \ |
| 80 | "fdt_addr_r=0x82000000\0" \ |
| 81 | "kernel_addr_r=0x81000000\0" \ |
| 82 | "pxefile_addr_r=0x87100000\0" \ |
| 83 | "ramdisk_addr_r=0x82100000\0" \ |
| 84 | "scriptaddr=0x87000000\0" \ |
| 85 | "root=/dev/mmcblk0p2 rootwait\0" \ |
| 86 | BOOTENV |
| 87 | |
| 88 | #define BOOT_TARGET_DEVICES(func) \ |
| 89 | func(MMC, mmc, 0) \ |
| 90 | func(UBIFS, ubifs, 0) \ |
| 91 | func(PXE, pxe, na) \ |
| 92 | func(DHCP, dhcp, na) |
| 93 | |
| 94 | #include <config_distro_bootcmd.h> |
| 95 | |
| 96 | #endif /* _NPI_IMX6ULL_H */ |