blob: 16debf62577c4ced966791358eeb2af546758eba [file] [log] [blame]
Tom Warrena3e280b2011-01-27 10:58:07 +00001/*
2 * (C) Copyright 2010,2011
3 * NVIDIA Corporation <www.nvidia.com>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#ifndef __TEGRA2_COMMON_H
25#define __TEGRA2_COMMON_H
26#include <asm/sizes.h>
27
28/*
29 * High Level Configuration Options
30 */
31#define CONFIG_ARMCORTEXA9 /* This is an ARM V7 CPU core */
32#define CONFIG_TEGRA2 /* in a NVidia Tegra2 core */
33#define CONFIG_MACH_TEGRA_GENERIC /* which is a Tegra generic machine */
Aneesh Vecee9c82011-06-16 23:30:48 +000034#define CONFIG_SYS_L2CACHE_OFF /* No L2 cache */
Tom Warrena3e280b2011-01-27 10:58:07 +000035
Anton staaf5420cba2011-10-03 13:54:58 +000036#define CONFIG_SYS_CACHELINE_SIZE 32
37
Simon Glass5f3a8992011-11-05 03:56:49 +000038#define CONFIG_ARCH_CPU_INIT /* Fire up the A9 core */
Tom Warren112a1882011-04-14 12:18:06 +000039#define CONFIG_ENABLE_CORTEXA9 /* enable CPU (A9 complex) */
40
Tom Warrena3e280b2011-01-27 10:58:07 +000041#include <asm/arch/tegra2.h> /* get chip and board defs */
42
43/*
44 * Display CPU and Board information
45 */
46#define CONFIG_DISPLAY_CPUINFO
47#define CONFIG_DISPLAY_BOARDINFO
48
49#define CONFIG_SKIP_RELOCATE_UBOOT
50#define CONFIG_SKIP_LOWLEVEL_INIT
51
52#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
Grant Likely100b8492011-03-28 09:59:07 +000053#define CONFIG_OF_LIBFDT /* enable passing of devicetree */
Tom Warrena3e280b2011-01-27 10:58:07 +000054
55/* Environment */
56#define CONFIG_ENV_IS_NOWHERE
57#define CONFIG_ENV_SIZE 0x20000 /* Total Size Environment */
58
59/*
60 * Size of malloc() pool
61 */
62#define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */
63
64/*
65 * PllX Configuration
66 */
67#define CONFIG_SYS_CPU_OSC_FREQUENCY 1000000 /* Set CPU clock to 1GHz */
68
69/*
70 * NS16550 Configuration
71 */
72#define V_NS16550_CLK 216000000 /* 216MHz (pllp_out0) */
73
74#define CONFIG_SYS_NS16550
75#define CONFIG_SYS_NS16550_SERIAL
76#define CONFIG_SYS_NS16550_REG_SIZE (-4)
77#define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
78
79/*
80 * select serial console configuration
81 */
82#define CONFIG_CONS_INDEX 1
83
84/* allow to overwrite serial and ethaddr */
85#define CONFIG_ENV_OVERWRITE
86#define CONFIG_BAUDRATE 115200
87#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
88 115200}
89
90/* include default commands */
91#include <config_cmd_default.h>
92
93/* remove unused commands */
94#undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
95#undef CONFIG_CMD_FPGA /* FPGA configuration support */
96#undef CONFIG_CMD_IMI
97#undef CONFIG_CMD_IMLS
98#undef CONFIG_CMD_NFS /* NFS support */
99#undef CONFIG_CMD_NET /* network support */
100
101/* turn on command-line edit/hist/auto */
102#define CONFIG_CMDLINE_EDITING
103#define CONFIG_COMMAND_HISTORY
Mike Frysingerc1285cb2011-10-26 00:19:58 +0000104#define CONFIG_AUTO_COMPLETE
Tom Warrena3e280b2011-01-27 10:58:07 +0000105
106#define CONFIG_SYS_NO_FLASH
107
108/* Environment information */
109#define CONFIG_EXTRA_ENV_SETTINGS \
110 "console=ttyS0,115200n8\0" \
111 "mem=" TEGRA2_SYSMEM "\0" \
112 "smpflag=smp\0" \
113
114#define CONFIG_LOADADDR 0x408000 /* def. location for kernel */
115#define CONFIG_BOOTDELAY 2 /* -1 to disable auto boot */
116
117/*
118 * Miscellaneous configurable options
119 */
120#define CONFIG_SYS_LONGHELP /* undef to save memory */
121#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
122#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
123#define CONFIG_SYS_PROMPT V_PROMPT
124/*
125 * Increasing the size of the IO buffer as default nfsargs size is more
126 * than 256 and so it is not possible to edit it
127 */
128#define CONFIG_SYS_CBSIZE (256 * 2) /* Console I/O Buffer Size */
129/* Print Buffer Size */
130#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
131 sizeof(CONFIG_SYS_PROMPT) + 16)
132#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
133/* Boot Argument Buffer Size */
134#define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
135
136#define CONFIG_SYS_MEMTEST_START (TEGRA2_SDRC_CS0 + 0x600000)
137#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x100000)
138
139#define CONFIG_SYS_LOAD_ADDR (0xA00800) /* default */
140#define CONFIG_SYS_HZ 1000
141
142/*-----------------------------------------------------------------------
143 * Stack sizes
144 *
145 * The stack sizes are set up in start.S using the settings below
146 */
147#define CONFIG_STACKBASE 0x2800000 /* 40MB */
148#define CONFIG_STACKSIZE 0x20000 /* 128K regular stack*/
149
150/*-----------------------------------------------------------------------
151 * Physical Memory Map
152 */
153#define CONFIG_NR_DRAM_BANKS 1
154#define PHYS_SDRAM_1 TEGRA2_SDRC_CS0
155#define PHYS_SDRAM_1_SIZE 0x20000000 /* 512M */
156
157#define CONFIG_SYS_TEXT_BASE 0x00E08000
158#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
159
160#define CONFIG_SYS_INIT_RAM_ADDR CONFIG_STACKBASE
161#define CONFIG_SYS_INIT_RAM_SIZE CONFIG_SYS_MALLOC_LEN
162#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
163 CONFIG_SYS_INIT_RAM_SIZE - \
164 GENERATED_GBL_DATA_SIZE)
165
Tom Warren6e3806b2011-06-17 06:27:29 +0000166#define CONFIG_TEGRA2_GPIO
167#define CONFIG_CMD_GPIO
Tom Warrena3e280b2011-01-27 10:58:07 +0000168#endif /* __TEGRA2_COMMON_H */