blob: ba084c146f83733feec078529e49199d378d41cb [file] [log] [blame]
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +05301/*
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 \
Nishanth Menon6f6e9432016-02-25 12:53:47 -060020 DEFAULT_PMMC_BOOT_ENV \
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053021 "console=ttyS0,115200n8\0" \
22 "bootpart=0:2\0" \
23 "bootdir=/boot\0" \
24 "addr_mon=0x0c040000\0" \
25 "args_ubi=setenv bootargs ${bootargs} rootfstype=ubifs " \
26 "root=ubi0:rootfs rootflags=sync rw ubi.mtd=ubifs,2048\0" \
27 "name_fdt=k2g-evm.dtb\0" \
28 "name_mon=skern-k2g.bin\0" \
29 "name_ubi=k2g-evm-ubifs.ubi\0" \
30 "name_uboot=u-boot-spi-k2g-evm.gph\0" \
31 "init_mmc=run args_all args_mmc\0" \
Nishanth Menon6f6e9432016-02-25 12:53:47 -060032 "soc_variant=k2g\0" \
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053033 "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0"\
34 "get_kern_mmc=load mmc ${bootpart} ${loadaddr} " \
35 "${bootdir}/${name_kern}\0" \
36 "get_mon_mmc=load mmc ${bootpart} ${addr_mon} ${bootdir}/${name_mon}\0"\
37
Nishanth Menon6f6e9432016-02-25 12:53:47 -060038#define CONFIG_BOOTCOMMAND \
Lokesh Vutla0552d1d2016-03-09 15:39:36 +053039 "run envboot; " \
Nishanth Menon6f6e9432016-02-25 12:53:47 -060040 "run set_name_pmmc init_${boot} get_pmmc_${boot} run_pmmc " \
41 "get_fdt_${boot} get_mon_${boot} get_kern_${boot} " \
42 "run_mon run_kern"
43
Lokesh Vutlab9ca4ab2015-09-19 16:26:56 +053044#include <configs/ti_armv7_keystone2.h>
45
46/* SPL SPI Loader Configuration */
47#define CONFIG_SPL_TEXT_BASE 0x0c080000
48
49/* NAND Configuration */
50#define CONFIG_SYS_NAND_PAGE_2K
51
52/* Network */
53#define CONFIG_KSNET_NETCP_V1_5
54#define CONFIG_KSNET_CPSW_NUM_PORTS 2
55#define CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE
56#define CONFIG_PHY_MICREL
57
58/* MMC/SD */
59#define CONFIG_MMC
60#define CONFIG_GENERIC_MMC
61#define CONFIG_OMAP_HSMMC
62#define CONFIG_CMD_MMC
63
64#define CONFIG_SF_DEFAULT_BUS 1
65#define CONFIG_SF_DEFAULT_CS 0
66
67#endif /* __CONFIG_K2G_EVM_H */