xref: /OK3568_Linux_fs/u-boot/include/configs/tegra210-common.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * (C) Copyright 2013-2015
3*4882a593Smuzhiyun  * NVIDIA Corporation <www.nvidia.com>
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * SPDX-License-Identifier:     GPL-2.0+
6*4882a593Smuzhiyun  */
7*4882a593Smuzhiyun 
8*4882a593Smuzhiyun #ifndef _TEGRA210_COMMON_H_
9*4882a593Smuzhiyun #define _TEGRA210_COMMON_H_
10*4882a593Smuzhiyun 
11*4882a593Smuzhiyun #include "tegra-common.h"
12*4882a593Smuzhiyun 
13*4882a593Smuzhiyun /*
14*4882a593Smuzhiyun  * NS16550 Configuration
15*4882a593Smuzhiyun  */
16*4882a593Smuzhiyun #define V_NS16550_CLK		408000000	/* 408MHz (pllp_out0) */
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun /*
19*4882a593Smuzhiyun  * Miscellaneous configurable options
20*4882a593Smuzhiyun  */
21*4882a593Smuzhiyun #define CONFIG_STACKBASE	0x82800000	/* 40MB */
22*4882a593Smuzhiyun 
23*4882a593Smuzhiyun /*-----------------------------------------------------------------------
24*4882a593Smuzhiyun  * Physical Memory Map
25*4882a593Smuzhiyun  */
26*4882a593Smuzhiyun #define CONFIG_SYS_TEXT_BASE	0x80110000
27*4882a593Smuzhiyun 
28*4882a593Smuzhiyun /* Generic Interrupt Controller */
29*4882a593Smuzhiyun #define CONFIG_GICV2
30*4882a593Smuzhiyun 
31*4882a593Smuzhiyun /*
32*4882a593Smuzhiyun  * Memory layout for where various images get loaded by boot scripts:
33*4882a593Smuzhiyun  *
34*4882a593Smuzhiyun  * scriptaddr can be pretty much anywhere that doesn't conflict with something
35*4882a593Smuzhiyun  *   else. Put it above BOOTMAPSZ to eliminate conflicts.
36*4882a593Smuzhiyun  *
37*4882a593Smuzhiyun  * pxefile_addr_r can be pretty much anywhere that doesn't conflict with
38*4882a593Smuzhiyun  *   something else. Put it above BOOTMAPSZ to eliminate conflicts.
39*4882a593Smuzhiyun  *
40*4882a593Smuzhiyun  * kernel_addr_r must be within the first 128M of RAM in order for the
41*4882a593Smuzhiyun  *   kernel's CONFIG_AUTO_ZRELADDR option to work. Since the kernel will
42*4882a593Smuzhiyun  *   decompress itself to 0x8000 after the start of RAM, kernel_addr_r
43*4882a593Smuzhiyun  *   should not overlap that area, or the kernel will have to copy itself
44*4882a593Smuzhiyun  *   somewhere else before decompression. Similarly, the address of any other
45*4882a593Smuzhiyun  *   data passed to the kernel shouldn't overlap the start of RAM. Pushing
46*4882a593Smuzhiyun  *   this up to 16M allows for a sizable kernel to be decompressed below the
47*4882a593Smuzhiyun  *   compressed load address.
48*4882a593Smuzhiyun  *
49*4882a593Smuzhiyun  * fdt_addr_r simply shouldn't overlap anything else. Choosing 32M allows for
50*4882a593Smuzhiyun  *   the compressed kernel to be up to 16M too.
51*4882a593Smuzhiyun  *
52*4882a593Smuzhiyun  * ramdisk_addr_r simply shouldn't overlap anything else. Choosing 33M allows
53*4882a593Smuzhiyun  *   for the FDT/DTB to be up to 1M, which is hopefully plenty.
54*4882a593Smuzhiyun  */
55*4882a593Smuzhiyun #define CONFIG_LOADADDR 0x80080000
56*4882a593Smuzhiyun #define MEM_LAYOUT_ENV_SETTINGS \
57*4882a593Smuzhiyun 	"scriptaddr=0x90000000\0" \
58*4882a593Smuzhiyun 	"pxefile_addr_r=0x90100000\0" \
59*4882a593Smuzhiyun 	"kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
60*4882a593Smuzhiyun 	"fdt_addr_r=0x82000000\0" \
61*4882a593Smuzhiyun 	"ramdisk_addr_r=0x82100000\0"
62*4882a593Smuzhiyun 
63*4882a593Smuzhiyun /* Defines for SPL */
64*4882a593Smuzhiyun #define CONFIG_SPL_TEXT_BASE		0x80108000
65*4882a593Smuzhiyun #define CONFIG_SYS_SPL_MALLOC_START	0x80090000
66*4882a593Smuzhiyun #define CONFIG_SPL_STACK		0x800ffffc
67*4882a593Smuzhiyun 
68*4882a593Smuzhiyun /* For USB EHCI controller */
69*4882a593Smuzhiyun #define CONFIG_EHCI_IS_TDI
70*4882a593Smuzhiyun #define CONFIG_USB_EHCI_TXFIFO_THRESH	0x10
71*4882a593Smuzhiyun 
72*4882a593Smuzhiyun /* GPU needs setup */
73*4882a593Smuzhiyun #define CONFIG_TEGRA_GPU
74*4882a593Smuzhiyun 
75*4882a593Smuzhiyun #endif /* _TEGRA210_COMMON_H_ */
76