266d0e58804d04779ca225a98353e2f019e25638
[kernel/u-boot.git] / include / configs / tegra2-common.h
1 /*
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 */
34 #define CONFIG_SYS_L2CACHE_OFF          /* No L2 cache */
35
36 #define CONFIG_SYS_CACHELINE_SIZE       32
37
38 #define CONFIG_ARCH_CPU_INIT            /* Fire up the A9 core */
39
40 #include <asm/arch/tegra2.h>            /* get chip and board defs */
41
42 /*
43  * Display CPU and Board information
44  */
45 #define CONFIG_DISPLAY_CPUINFO
46 #define CONFIG_DISPLAY_BOARDINFO
47
48 #define CONFIG_SKIP_LOWLEVEL_INIT
49
50 #define CONFIG_CMDLINE_TAG              /* enable passing of ATAGs */
51 #define CONFIG_OF_LIBFDT                /* enable passing of devicetree */
52
53 /* Environment */
54 #define CONFIG_ENV_SIZE                 0x2000  /* Total Size Environment */
55
56 /*
57  * Size of malloc() pool
58  */
59 #define CONFIG_SYS_MALLOC_LEN           (4 << 20)       /* 4MB  */
60
61 /*
62  * PllX Configuration
63  */
64 #define CONFIG_SYS_CPU_OSC_FREQUENCY    1000000 /* Set CPU clock to 1GHz */
65
66 /*
67  * NS16550 Configuration
68  */
69 #define V_NS16550_CLK                   216000000       /* 216MHz (pllp_out0) */
70
71 #define CONFIG_SYS_NS16550
72 #define CONFIG_SYS_NS16550_SERIAL
73 #define CONFIG_SYS_NS16550_REG_SIZE     (-4)
74 #define CONFIG_SYS_NS16550_CLK          V_NS16550_CLK
75
76 /*
77  * select serial console configuration
78  */
79 #define CONFIG_CONS_INDEX       1
80
81 /* allow to overwrite serial and ethaddr */
82 #define CONFIG_ENV_OVERWRITE
83 #define CONFIG_BAUDRATE                 115200
84 #define CONFIG_SYS_BAUDRATE_TABLE       {4800, 9600, 19200, 38400, 57600,\
85                                         115200}
86
87 /*
88  * This parameter affects a TXFILLTUNING field that controls how much data is
89  * sent to the latency fifo before it is sent to the wire. Without this
90  * parameter, the default (2) causes occasional Data Buffer Errors in OUT
91  * packets depending on the buffer address and size.
92  */
93 #define CONFIG_USB_EHCI_TXFIFO_THRESH   10
94 #define CONFIG_EHCI_IS_TDI
95 #define CONFIG_EHCI_DCACHE
96
97 /* include default commands */
98 #include <config_cmd_default.h>
99
100 /* remove unused commands */
101 #undef CONFIG_CMD_FLASH         /* flinfo, erase, protect */
102 #undef CONFIG_CMD_FPGA          /* FPGA configuration support */
103 #undef CONFIG_CMD_IMI
104 #undef CONFIG_CMD_IMLS
105 #undef CONFIG_CMD_NFS           /* NFS support */
106 #undef CONFIG_CMD_NET           /* network support */
107
108 /* turn on command-line edit/hist/auto */
109 #define CONFIG_CMDLINE_EDITING
110 #define CONFIG_COMMAND_HISTORY
111 #define CONFIG_AUTO_COMPLETE
112
113 #define CONFIG_SYS_NO_FLASH
114
115 /* Environment information */
116 #define CONFIG_EXTRA_ENV_SETTINGS \
117         "console=ttyS0,115200n8\0" \
118         "mem=" TEGRA2_SYSMEM "\0" \
119         "smpflag=smp\0" \
120
121 #define CONFIG_LOADADDR         0x408000        /* def. location for kernel */
122 #define CONFIG_BOOTDELAY        2               /* -1 to disable auto boot */
123
124 /*
125  * Miscellaneous configurable options
126  */
127 #define CONFIG_SYS_LONGHELP             /* undef to save memory */
128 #define CONFIG_SYS_HUSH_PARSER          /* use "hush" command parser */
129 #define CONFIG_SYS_PROMPT_HUSH_PS2      "> "
130 #define CONFIG_SYS_PROMPT               V_PROMPT
131 /*
132  * Increasing the size of the IO buffer as default nfsargs size is more
133  *  than 256 and so it is not possible to edit it
134  */
135 #define CONFIG_SYS_CBSIZE               (256 * 2) /* Console I/O Buffer Size */
136 /* Print Buffer Size */
137 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE + \
138                                         sizeof(CONFIG_SYS_PROMPT) + 16)
139 #define CONFIG_SYS_MAXARGS              16      /* max number of command args */
140 /* Boot Argument Buffer Size */
141 #define CONFIG_SYS_BARGSIZE             (CONFIG_SYS_CBSIZE)
142
143 #define CONFIG_SYS_MEMTEST_START        (TEGRA2_SDRC_CS0 + 0x600000)
144 #define CONFIG_SYS_MEMTEST_END          (CONFIG_SYS_MEMTEST_START + 0x100000)
145
146 #define CONFIG_SYS_LOAD_ADDR            (0xA00800)      /* default */
147 #define CONFIG_SYS_HZ                   1000
148
149 /*-----------------------------------------------------------------------
150  * Stack sizes
151  *
152  * The stack sizes are set up in start.S using the settings below
153  */
154 #define CONFIG_STACKBASE        0x2800000       /* 40MB */
155 #define CONFIG_STACKSIZE        0x20000         /* 128K regular stack*/
156
157 /*-----------------------------------------------------------------------
158  * Physical Memory Map
159  */
160 #define CONFIG_NR_DRAM_BANKS    1
161 #define PHYS_SDRAM_1            TEGRA2_SDRC_CS0
162 #define PHYS_SDRAM_1_SIZE       0x20000000      /* 512M */
163
164 #define CONFIG_SYS_TEXT_BASE    0x00108000
165 #define CONFIG_SYS_SDRAM_BASE   PHYS_SDRAM_1
166
167 #define CONFIG_SYS_INIT_RAM_ADDR        CONFIG_STACKBASE
168 #define CONFIG_SYS_INIT_RAM_SIZE        CONFIG_SYS_MALLOC_LEN
169 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_INIT_RAM_ADDR + \
170                                                 CONFIG_SYS_INIT_RAM_SIZE - \
171                                                 GENERATED_GBL_DATA_SIZE)
172
173 #define CONFIG_TEGRA2_GPIO
174 #define CONFIG_CMD_GPIO
175 #endif /* __TEGRA2_COMMON_H */