1 /* 2 * Configuration header file for TI's k2g-evm 3 * 4 * (C) Copyright 2015 5 * Texas Instruments Incorporated, <www.ti.com> 6 * 7 * SPDX-License-Identifier: GPL-2.0+ 8 */ 9 10 #ifndef __CONFIG_K2G_EVM_H 11 #define __CONFIG_K2G_EVM_H 12 13 /* Platform type */ 14 #define CONFIG_SOC_K2G 15 #define CONFIG_K2G_EVM 16 17 /* U-Boot general configuration */ 18 #define CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS \ 19 DEFAULT_MMC_TI_ARGS \ 20 DEFAULT_PMMC_BOOT_ENV \ 21 DEFAULT_FW_INITRAMFS_BOOT_ENV \ 22 "boot=mmc\0" \ 23 "console=ttyS0,115200n8\0" \ 24 "bootpart=0:2\0" \ 25 "bootdir=/boot\0" \ 26 "rd_spec=-\0" \ 27 "args_ubi=setenv bootargs ${bootargs} rootfstype=ubifs " \ 28 "root=ubi0:rootfs rootflags=sync rw ubi.mtd=ubifs,2048\0" \ 29 "name_fdt=keystone-k2g-evm.dtb\0" \ 30 "name_mon=skern-k2g.bin\0" \ 31 "name_ubi=k2g-evm-ubifs.ubi\0" \ 32 "name_uboot=u-boot-spi-k2g-evm.gph\0" \ 33 "init_mmc=run args_all args_mmc\0" \ 34 "init_fw_rd_mmc=load mmc ${bootpart} ${rdaddr} " \ 35 "${bootdir}/${name_fw_rd}; run set_rd_spec\0" \ 36 "soc_variant=k2g\0" \ 37 "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0"\ 38 "get_kern_mmc=load mmc ${bootpart} ${loadaddr} " \ 39 "${bootdir}/${name_kern}\0" \ 40 "get_mon_mmc=load mmc ${bootpart} ${addr_mon} ${bootdir}/${name_mon}\0"\ 41 "name_fs=arago-base-tisdk-image-k2g-evm.cpio\0" 42 43 #define CONFIG_BOOTCOMMAND \ 44 "run envboot; " \ 45 "run set_name_pmmc init_${boot} init_fw_rd_${boot} " \ 46 "get_pmmc_${boot} run_pmmc get_mon_${boot} run_mon " \ 47 "get_fdt_${boot} get_kern_${boot} run_kern" 48 49 #include <configs/ti_armv7_keystone2.h> 50 51 /* SPL SPI Loader Configuration */ 52 #define CONFIG_SPL_TEXT_BASE 0x0c080000 53 54 /* NAND Configuration */ 55 #define CONFIG_SYS_NAND_PAGE_2K 56 57 /* Network */ 58 #define CONFIG_KSNET_NETCP_V1_5 59 #define CONFIG_KSNET_CPSW_NUM_PORTS 2 60 #define CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE 61 #define CONFIG_PHY_MICREL 62 #define PHY_ANEG_TIMEOUT 10000 /* PHY needs longer aneg time */ 63 64 /* MMC/SD */ 65 #define CONFIG_MMC 66 #define CONFIG_GENERIC_MMC 67 #define CONFIG_OMAP_HSMMC 68 69 #undef CONFIG_ENV_IS_IN_NAND 70 #define CONFIG_ENV_IS_IN_FAT 71 #define FAT_ENV_INTERFACE "mmc" 72 #define FAT_ENV_DEVICE_AND_PART "0:1" 73 #define FAT_ENV_FILE "uboot.env" 74 75 #define CONFIG_SF_DEFAULT_BUS 1 76 #define CONFIG_SF_DEFAULT_CS 0 77 78 #ifndef CONFIG_SPL_BUILD 79 #define CONFIG_CADENCE_QSPI 80 #define CONFIG_CQSPI_REF_CLK 384000000 81 #define CONFIG_CQSPI_DECODER 0x0 82 #endif 83 84 #endif /* __CONFIG_K2G_EVM_H */ 85