2e477635c50abb1b475210ae6570e84f874490e0
[oweals/u-boot.git] / include / configs / k2g_evm.h
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         "console=ttyS0,115200n8\0"                                      \
22         "bootpart=0:2\0"                                                \
23         "bootdir=/boot\0"                                               \
24         "rd_spec=-\0"                                                   \
25         "addr_mon=0x0c040000\0"                                         \
26         "args_ubi=setenv bootargs ${bootargs} rootfstype=ubifs "        \
27         "root=ubi0:rootfs rootflags=sync rw ubi.mtd=ubifs,2048\0"       \
28         "name_fdt=k2g-evm.dtb\0"                                \
29         "name_mon=skern-k2g.bin\0"                                      \
30         "name_ubi=k2g-evm-ubifs.ubi\0"                                  \
31         "name_uboot=u-boot-spi-k2g-evm.gph\0"                           \
32         "init_mmc=run args_all args_mmc\0"                              \
33         "soc_variant=k2g\0"                                             \
34         "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0"\
35         "get_kern_mmc=load mmc ${bootpart} ${loadaddr} "                \
36                 "${bootdir}/${name_kern}\0"                             \
37         "get_mon_mmc=load mmc ${bootpart} ${addr_mon} ${bootdir}/${name_mon}\0"\
38         "name_fs=arago-base-tisdk-image-k2g-evm.cpio\0"
39
40 #define CONFIG_BOOTCOMMAND                                              \
41         "run envboot; "                                                 \
42         "run set_name_pmmc init_${boot} get_pmmc_${boot} run_pmmc "     \
43         "get_fdt_${boot} get_mon_${boot} get_kern_${boot} "             \
44         "run_mon run_kern"
45
46 #include <configs/ti_armv7_keystone2.h>
47
48 /* SPL SPI Loader Configuration */
49 #define CONFIG_SPL_TEXT_BASE            0x0c080000
50
51 /* NAND Configuration */
52 #define CONFIG_SYS_NAND_PAGE_2K
53
54 /* Network */
55 #define CONFIG_KSNET_NETCP_V1_5
56 #define CONFIG_KSNET_CPSW_NUM_PORTS     2
57 #define CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE
58 #define CONFIG_PHY_MICREL
59
60 /* MMC/SD */
61 #define CONFIG_MMC
62 #define CONFIG_GENERIC_MMC
63 #define CONFIG_OMAP_HSMMC
64 #define CONFIG_CMD_MMC
65
66 #undef CONFIG_ENV_IS_IN_NAND
67 #define CONFIG_ENV_IS_IN_FAT
68 #define FAT_ENV_INTERFACE               "mmc"
69 #define FAT_ENV_DEVICE_AND_PART         "0:1"
70 #define FAT_ENV_FILE                    "uboot.env"
71
72 #define CONFIG_SF_DEFAULT_BUS           1
73 #define CONFIG_SF_DEFAULT_CS            0
74
75 #endif /* __CONFIG_K2G_EVM_H */