Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 1 | /* |
Tom Warren | 52a8b82 | 2012-05-22 12:19:25 +0000 | [diff] [blame] | 2 | * (C) Copyright 2010-2012 |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 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 | |
Allen Martin | 00a2749 | 2012-08-31 08:30:00 +0000 | [diff] [blame] | 24 | #ifndef __TEGRA20_COMMON_H |
| 25 | #define __TEGRA20_COMMON_H |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 26 | #include <asm/sizes.h> |
Marek Vasut | 51926d5 | 2012-09-23 17:41:25 +0200 | [diff] [blame] | 27 | #include <linux/stringify.h> |
Simon Glass | 649d0ff | 2012-04-02 13:19:03 +0000 | [diff] [blame] | 28 | |
| 29 | /* |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 30 | * High Level Configuration Options |
| 31 | */ |
| 32 | #define CONFIG_ARMCORTEXA9 /* This is an ARM V7 CPU core */ |
Allen Martin | 00a2749 | 2012-08-31 08:30:00 +0000 | [diff] [blame] | 33 | #define CONFIG_TEGRA20 /* in a NVidia Tegra20 core */ |
Allen Martin | 7e5fd8f | 2012-08-31 08:30:02 +0000 | [diff] [blame] | 34 | #define CONFIG_TEGRA /* which is a Tegra generic machine */ |
Aneesh V | e47f2db | 2011-06-16 23:30:48 +0000 | [diff] [blame] | 35 | #define CONFIG_SYS_L2CACHE_OFF /* No L2 cache */ |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 36 | |
Anton staaf | 96d2123 | 2011-10-03 13:54:58 +0000 | [diff] [blame] | 37 | #define CONFIG_SYS_CACHELINE_SIZE 32 |
| 38 | |
Tom Warren | 150c249 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 39 | #include <asm/arch/tegra.h> /* get chip and board defs */ |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 40 | |
Simon Glass | ad16617 | 2012-10-17 13:24:56 +0000 | [diff] [blame] | 41 | /* Align LCD to 1MB boundary */ |
| 42 | #define CONFIG_LCD_ALIGNMENT MMU_SECTION_SIZE |
| 43 | |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 44 | /* |
| 45 | * Display CPU and Board information |
| 46 | */ |
| 47 | #define CONFIG_DISPLAY_CPUINFO |
| 48 | #define CONFIG_DISPLAY_BOARDINFO |
| 49 | |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 50 | #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */ |
Grant Likely | 2fa8ca9 | 2011-03-28 09:59:07 +0000 | [diff] [blame] | 51 | #define CONFIG_OF_LIBFDT /* enable passing of devicetree */ |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 52 | |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 53 | #ifdef CONFIG_TEGRA_LP0 |
Simon Glass | 649d0ff | 2012-04-02 13:19:03 +0000 | [diff] [blame] | 54 | #define TEGRA_LP0_ADDR 0x1C406000 |
| 55 | #define TEGRA_LP0_SIZE 0x2000 |
| 56 | #define TEGRA_LP0_VEC \ |
Marek Vasut | 51926d5 | 2012-09-23 17:41:25 +0200 | [diff] [blame] | 57 | "lp0_vec=" __stringify(TEGRA_LP0_SIZE) \ |
| 58 | "@" __stringify(TEGRA_LP0_ADDR) " " |
Simon Glass | 649d0ff | 2012-04-02 13:19:03 +0000 | [diff] [blame] | 59 | #else |
| 60 | #define TEGRA_LP0_VEC |
| 61 | #endif |
| 62 | |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 63 | /* Environment */ |
Stephen Warren | 0a7bec7 | 2012-05-22 09:21:55 +0000 | [diff] [blame] | 64 | #define CONFIG_ENV_VARS_UBOOT_CONFIG |
Simon Glass | 9dd79fd | 2011-11-05 04:46:48 +0000 | [diff] [blame] | 65 | #define CONFIG_ENV_SIZE 0x2000 /* Total Size Environment */ |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 66 | |
| 67 | /* |
| 68 | * Size of malloc() pool |
| 69 | */ |
| 70 | #define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */ |
| 71 | |
| 72 | /* |
| 73 | * PllX Configuration |
| 74 | */ |
| 75 | #define CONFIG_SYS_CPU_OSC_FREQUENCY 1000000 /* Set CPU clock to 1GHz */ |
| 76 | |
| 77 | /* |
| 78 | * NS16550 Configuration |
| 79 | */ |
| 80 | #define V_NS16550_CLK 216000000 /* 216MHz (pllp_out0) */ |
| 81 | |
| 82 | #define CONFIG_SYS_NS16550 |
| 83 | #define CONFIG_SYS_NS16550_SERIAL |
| 84 | #define CONFIG_SYS_NS16550_REG_SIZE (-4) |
| 85 | #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK |
| 86 | |
| 87 | /* |
| 88 | * select serial console configuration |
| 89 | */ |
| 90 | #define CONFIG_CONS_INDEX 1 |
| 91 | |
| 92 | /* allow to overwrite serial and ethaddr */ |
| 93 | #define CONFIG_ENV_OVERWRITE |
| 94 | #define CONFIG_BAUDRATE 115200 |
| 95 | #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ |
| 96 | 115200} |
| 97 | |
Simon Glass | 0291091 | 2012-02-27 10:52:51 +0000 | [diff] [blame] | 98 | /* |
| 99 | * This parameter affects a TXFILLTUNING field that controls how much data is |
| 100 | * sent to the latency fifo before it is sent to the wire. Without this |
| 101 | * parameter, the default (2) causes occasional Data Buffer Errors in OUT |
| 102 | * packets depending on the buffer address and size. |
| 103 | */ |
| 104 | #define CONFIG_USB_EHCI_TXFIFO_THRESH 10 |
| 105 | #define CONFIG_EHCI_IS_TDI |
Simon Glass | 0291091 | 2012-02-27 10:52:51 +0000 | [diff] [blame] | 106 | |
Allen Martin | 00a2749 | 2012-08-31 08:30:00 +0000 | [diff] [blame] | 107 | /* Total I2C ports on Tegra20 */ |
Simon Glass | c360033 | 2012-02-03 15:13:59 +0000 | [diff] [blame] | 108 | #define TEGRA_I2C_NUM_CONTROLLERS 4 |
| 109 | |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 110 | /* include default commands */ |
| 111 | #include <config_cmd_default.h> |
Stephen Warren | 01ca286 | 2012-09-25 13:32:26 +0000 | [diff] [blame] | 112 | #define CONFIG_PARTITION_UUIDS |
| 113 | #define CONFIG_CMD_PART |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 114 | |
| 115 | /* remove unused commands */ |
| 116 | #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */ |
| 117 | #undef CONFIG_CMD_FPGA /* FPGA configuration support */ |
| 118 | #undef CONFIG_CMD_IMI |
| 119 | #undef CONFIG_CMD_IMLS |
| 120 | #undef CONFIG_CMD_NFS /* NFS support */ |
| 121 | #undef CONFIG_CMD_NET /* network support */ |
| 122 | |
| 123 | /* turn on command-line edit/hist/auto */ |
| 124 | #define CONFIG_CMDLINE_EDITING |
| 125 | #define CONFIG_COMMAND_HISTORY |
Mike Frysinger | ed0fc4b | 2011-10-26 00:19:58 +0000 | [diff] [blame] | 126 | #define CONFIG_AUTO_COMPLETE |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 127 | |
| 128 | #define CONFIG_SYS_NO_FLASH |
| 129 | |
Simon Glass | 4120c27 | 2012-04-17 09:01:36 +0000 | [diff] [blame] | 130 | #define CONFIG_CONSOLE_MUX |
| 131 | #define CONFIG_SYS_CONSOLE_IS_IN_ENV |
Simon Glass | 4120c27 | 2012-04-17 09:01:36 +0000 | [diff] [blame] | 132 | |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 133 | #define CONFIG_LOADADDR 0x408000 /* def. location for kernel */ |
| 134 | #define CONFIG_BOOTDELAY 2 /* -1 to disable auto boot */ |
| 135 | |
| 136 | /* |
| 137 | * Miscellaneous configurable options |
| 138 | */ |
| 139 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ |
| 140 | #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */ |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 141 | #define CONFIG_SYS_PROMPT V_PROMPT |
| 142 | /* |
| 143 | * Increasing the size of the IO buffer as default nfsargs size is more |
| 144 | * than 256 and so it is not possible to edit it |
| 145 | */ |
| 146 | #define CONFIG_SYS_CBSIZE (256 * 2) /* Console I/O Buffer Size */ |
| 147 | /* Print Buffer Size */ |
| 148 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
| 149 | sizeof(CONFIG_SYS_PROMPT) + 16) |
| 150 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ |
| 151 | /* Boot Argument Buffer Size */ |
| 152 | #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE) |
| 153 | |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 154 | #define CONFIG_SYS_MEMTEST_START (NV_PA_SDRC_CS0 + 0x600000) |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 155 | #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x100000) |
| 156 | |
| 157 | #define CONFIG_SYS_LOAD_ADDR (0xA00800) /* default */ |
| 158 | #define CONFIG_SYS_HZ 1000 |
| 159 | |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 160 | #define CONFIG_STACKBASE 0x2800000 /* 40MB */ |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 161 | |
| 162 | /*----------------------------------------------------------------------- |
| 163 | * Physical Memory Map |
| 164 | */ |
| 165 | #define CONFIG_NR_DRAM_BANKS 1 |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 166 | #define PHYS_SDRAM_1 NV_PA_SDRC_CS0 |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 167 | #define PHYS_SDRAM_1_SIZE 0x20000000 /* 512M */ |
| 168 | |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 169 | #define CONFIG_SYS_TEXT_BASE 0x0010c000 |
Allen Martin | b2f9893 | 2012-10-19 21:08:23 +0000 | [diff] [blame] | 170 | #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 171 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 |
| 172 | |
Stephen Warren | 7f1b767 | 2012-09-20 09:29:03 +0000 | [diff] [blame] | 173 | #define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* 256M */ |
| 174 | |
Tom Warren | efc05ae | 2011-01-27 10:58:07 +0000 | [diff] [blame] | 175 | #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_STACKBASE |
| 176 | #define CONFIG_SYS_INIT_RAM_SIZE CONFIG_SYS_MALLOC_LEN |
| 177 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \ |
| 178 | CONFIG_SYS_INIT_RAM_SIZE - \ |
| 179 | GENERATED_GBL_DATA_SIZE) |
| 180 | |
Tom Warren | 52a8b82 | 2012-05-22 12:19:25 +0000 | [diff] [blame] | 181 | #define CONFIG_TEGRA_GPIO |
Tom Warren | f84d64d | 2011-06-17 06:27:29 +0000 | [diff] [blame] | 182 | #define CONFIG_CMD_GPIO |
Stephen Warren | 9cd3f3a | 2012-06-04 09:23:55 +0000 | [diff] [blame] | 183 | #define CONFIG_CMD_ENTERRCM |
Stephen Warren | dd8ab95 | 2012-06-13 09:55:11 +0000 | [diff] [blame] | 184 | #define CONFIG_CMD_BOOTZ |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 185 | |
| 186 | /* Defines for SPL */ |
| 187 | #define CONFIG_SPL |
Allen Martin | b2f9893 | 2012-10-19 21:08:23 +0000 | [diff] [blame] | 188 | #define CONFIG_SPL_FRAMEWORK |
| 189 | #define CONFIG_SPL_RAM_DEVICE |
| 190 | #define CONFIG_SPL_BOARD_INIT |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 191 | #define CONFIG_SPL_NAND_SIMPLE |
| 192 | #define CONFIG_SPL_TEXT_BASE 0x00108000 |
Stephen Warren | 644a69e | 2012-10-22 06:19:34 +0000 | [diff] [blame] | 193 | #define CONFIG_SPL_MAX_SIZE (CONFIG_SYS_TEXT_BASE - \ |
| 194 | CONFIG_SPL_TEXT_BASE) |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 195 | #define CONFIG_SYS_SPL_MALLOC_START 0x00090000 |
| 196 | #define CONFIG_SYS_SPL_MALLOC_SIZE 0x00010000 |
| 197 | #define CONFIG_SPL_STACK 0x000ffffc |
| 198 | |
| 199 | #define CONFIG_SPL_LIBCOMMON_SUPPORT |
| 200 | #define CONFIG_SPL_LIBGENERIC_SUPPORT |
| 201 | #define CONFIG_SPL_SERIAL_SUPPORT |
| 202 | #define CONFIG_SPL_GPIO_SUPPORT |
| 203 | #define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/tegra20/u-boot-spl.lds" |
| 204 | |
Simon Glass | 0dd8408 | 2012-07-29 20:53:30 +0000 | [diff] [blame] | 205 | #define CONFIG_SYS_NAND_SELF_INIT |
Lucas Stach | a833b95 | 2012-10-07 11:29:38 +0000 | [diff] [blame] | 206 | #define CONFIG_SYS_NAND_ONFI_DETECTION |
Simon Glass | 0dd8408 | 2012-07-29 20:53:30 +0000 | [diff] [blame] | 207 | |
Stephen Warren | 1981539 | 2012-11-06 11:27:30 +0000 | [diff] [blame] | 208 | /* Misc utility code */ |
| 209 | #define CONFIG_BOUNCE_BUFFER |
| 210 | |
Allen Martin | 00a2749 | 2012-08-31 08:30:00 +0000 | [diff] [blame] | 211 | #endif /* __TEGRA20_COMMON_H */ |