]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/k2g_evm.h
x86: edison: Bring minimal ACPI support to the board
[people/ms/u-boot.git] / include / configs / k2g_evm.h
CommitLineData
b9ca4ab4
LV
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
88fdfcd2 13#include <environment/ti/mmc.h>
3f18ff07
V
14#include <environment/ti/spi.h>
15
b9ca4ab4
LV
16/* Platform type */
17#define CONFIG_SOC_K2G
b9ca4ab4 18
92761fcc
CJF
19#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
20
b9ca4ab4
LV
21/* U-Boot general configuration */
22#define CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS \
23 DEFAULT_MMC_TI_ARGS \
6f6e9439 24 DEFAULT_PMMC_BOOT_ENV \
86e3ca11 25 DEFAULT_FW_INITRAMFS_BOOT_ENV \
881261c8 26 DEFAULT_FIT_TI_ARGS \
d28a86c0 27 "boot=mmc\0" \
b9ca4ab4
LV
28 "console=ttyS0,115200n8\0" \
29 "bootpart=0:2\0" \
30 "bootdir=/boot\0" \
abca9477 31 "rd_spec=-\0" \
b9ca4ab4
LV
32 "args_ubi=setenv bootargs ${bootargs} rootfstype=ubifs " \
33 "root=ubi0:rootfs rootflags=sync rw ubi.mtd=ubifs,2048\0" \
92761fcc
CJF
34 "findfdt="\
35 "if test $board_name = 66AK2GGP; then " \
36 "setenv name_fdt keystone-k2g-evm.dtb; " \
37 "else if test $board_name = 66AK2GIC; then " \
38 "setenv name_fdt keystone-k2g-ice.dtb; " \
39 "else if test $name_fdt = undefined; then " \
40 "echo WARNING: Could not determine device tree to use;"\
f8e714eb 41 "fi;fi;fi; setenv fdtfile ${name_fdt}\0" \
b9ca4ab4
LV
42 "name_mon=skern-k2g.bin\0" \
43 "name_ubi=k2g-evm-ubifs.ubi\0" \
44 "name_uboot=u-boot-spi-k2g-evm.gph\0" \
45 "init_mmc=run args_all args_mmc\0" \
86e3ca11
MK
46 "init_fw_rd_mmc=load mmc ${bootpart} ${rdaddr} " \
47 "${bootdir}/${name_fw_rd}; run set_rd_spec\0" \
6f6e9439 48 "soc_variant=k2g\0" \
b9ca4ab4
LV
49 "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0"\
50 "get_kern_mmc=load mmc ${bootpart} ${loadaddr} " \
51 "${bootdir}/${name_kern}\0" \
52 "get_mon_mmc=load mmc ${bootpart} ${addr_mon} ${bootdir}/${name_mon}\0"\
abca9477 53 "name_fs=arago-base-tisdk-image-k2g-evm.cpio\0"
b9ca4ab4 54
08d06310 55#ifndef CONFIG_TI_SECURE_DEVICE
6f6e9439 56#define CONFIG_BOOTCOMMAND \
3f5651a7 57 "run findfdt; " \
0552d1d8 58 "run envboot; " \
3f5651a7
AD
59 "run init_${boot}; " \
60 "run get_mon_${boot} run_mon; " \
61 "run set_name_pmmc get_pmmc_${boot} run_pmmc; " \
62 "run get_kern_${boot}; " \
63 "run init_fw_rd_${boot}; " \
64 "run get_fdt_${boot}; " \
65 "run run_kern"
08d06310
MS
66#else
67#define CONFIG_BOOTCOMMAND \
3f5651a7
AD
68 "run findfdt; " \
69 "run envboot; " \
70 "run run_mon_hs; " \
71 "run init_${boot}; " \
3f5651a7
AD
72 "run get_fit_${boot}; " \
73 "bootm ${fit_loadaddr}#${name_fdt}"
08d06310 74#endif
6f6e9439 75
b9ca4ab4
LV
76/* SPL SPI Loader Configuration */
77#define CONFIG_SPL_TEXT_BASE 0x0c080000
78
79/* NAND Configuration */
80#define CONFIG_SYS_NAND_PAGE_2K
81
82/* Network */
83#define CONFIG_KSNET_NETCP_V1_5
84#define CONFIG_KSNET_CPSW_NUM_PORTS 2
85#define CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE
b8dafa22 86#define PHY_ANEG_TIMEOUT 10000 /* PHY needs longer aneg time */
b9ca4ab4 87
ae873391 88#define CONFIG_ENV_SIZE (256 << 10) /* 256 KiB */
84fe2838 89
b9ca4ab4
LV
90#define CONFIG_SF_DEFAULT_BUS 1
91#define CONFIG_SF_DEFAULT_CS 0
92
988fb5ce
V
93#ifndef CONFIG_SPL_BUILD
94#define CONFIG_CADENCE_QSPI
95#define CONFIG_CQSPI_REF_CLK 384000000
96#define CONFIG_CQSPI_DECODER 0x0
57897c13 97#define CONFIG_BOUNCE_BUFFER
988fb5ce
V
98#endif
99
3f18ff07 100#define SPI_MTD_PARTS KEYSTONE_SPI1_MTD_PARTS
391b037e
SN
101
102#include <configs/ti_armv7_keystone2.h>
103
b9ca4ab4 104#endif /* __CONFIG_K2G_EVM_H */