~funderscore blog cgit wiki get in touch
aboutsummaryrefslogtreecommitdiff
blob: 72c04d8a994247a519d50ac46e5b5b6553430c1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* SPDX-License-Identifier: GPL-2.0+ */
/*
 * Common configuration header file for all Keystone II EVM platforms
 *
 * (C) Copyright 2012-2014
 *     Texas Instruments Incorporated, <www.ti.com>
 */

#ifndef __CONFIG_KS2_EVM_H
#define __CONFIG_KS2_EVM_H

/* U-Boot Build Configuration */

/* SoC Configuration */

/* Memory Configuration */
#define CFG_SYS_LPAE_SDRAM_BASE	0x800000000
#define CFG_MAX_RAM_BANK_SIZE	(2 << 30)       /* 2GB */

#ifdef CONFIG_SYS_MALLOC_F_LEN
#define SPL_MALLOC_F_SIZE	CONFIG_SYS_MALLOC_F_LEN
#else
#define SPL_MALLOC_F_SIZE	0
#endif

/* SPL SPI Loader Configuration */
#define KEYSTONE_SPL_STACK_SIZE		(8 * 1024)

/* SRAM scratch space entries  */
#define SRAM_SCRATCH_SPACE_ADDR		0xc0c23fc

#define TI_SRAM_SCRATCH_BOARD_EEPROM_START	(SRAM_SCRATCH_SPACE_ADDR)
#define TI_SRAM_SCRATCH_BOARD_EEPROM_END	(SRAM_SCRATCH_SPACE_ADDR + 0x200)
#define KEYSTONE_SRAM_SCRATCH_SPACE_END		(TI_SRAM_SCRATCH_BOARD_EEPROM_END)

/* UART Configuration */
#define CFG_SYS_NS16550_COM1		KS2_UART0_BASE
#define CFG_SYS_NS16550_COM2		KS2_UART1_BASE

#ifndef CONFIG_SOC_K2G
#define CFG_SYS_NS16550_CLK		ks_clk_get_rate(KS2_CLK1_6)
#else
#define CFG_SYS_NS16550_CLK		ks_clk_get_rate(uart_pll_clk) / 2
#endif

/* SPI Configuration */
#define CFG_SYS_SPI_CLK		ks_clk_get_rate(KS2_CLK1_6)

/* Keystone net */
#define CFG_KSNET_MAC_ID_BASE		KS2_MAC_ID_BASE_ADDR
#define CFG_KSNET_NETCP_BASE			KS2_NETCP_BASE
#define CFG_KSNET_SERDES_SGMII_BASE		KS2_SGMII_SERDES_BASE
#define CFG_KSNET_SERDES_SGMII2_BASE		KS2_SGMII_SERDES2_BASE
#define CFG_KSNET_SERDES_LANES_PER_SGMII	KS2_LANES_PER_SGMII_SERDES

/* EEPROM definitions */

/* NAND Configuration */
#define CFG_SYS_NAND_MASK_CLE		0x4000
#define CFG_SYS_NAND_MASK_ALE		0x2000
#define CFG_SYS_NAND_CS			2

#define CFG_SYS_NAND_LARGEPAGE
#define CFG_SYS_NAND_BASE_LIST		{ 0x30000000, }



/* U-Boot general configuration */

/* EDMA3 */


/* Now for the remaining common defines */
#include <configs/ti_armv7_common.h>

/* we may include files below only after all above definitions */
#include <asm/arch/hardware.h>
#include <asm/arch/clock.h>
#ifndef CONFIG_SOC_K2G
#define CFG_SYS_HZ_CLOCK		ks_clk_get_rate(KS2_CLK1_6)
#else
#define CFG_SYS_HZ_CLOCK		get_external_clk(sys_clk)
#endif

#endif /* __CONFIG_KS2_EVM_H */