| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) Copyright 2010 | 2 * (C) Copyright 2010 |
| 3 * NVIDIA Corporation <www.nvidia.com> | 3 * NVIDIA Corporation <www.nvidia.com> |
| 4 * | 4 * |
| 5 * See file CREDITS for list of people who contributed to this | 5 * See file CREDITS for list of people who contributed to this |
| 6 * project. | 6 * project. |
| 7 * | 7 * |
| 8 * This program is free software; you can redistribute it and/or | 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 | 9 * modify it under the terms of the GNU General Public License as |
| 10 * published by the Free Software Foundation; either version 2 of | 10 * published by the Free Software Foundation; either version 2 of |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 /*----------------------------------------------------------------------- | 149 /*----------------------------------------------------------------------- |
| 150 * Include component configurations. | 150 * Include component configurations. |
| 151 */ | 151 */ |
| 152 | 152 |
| 153 #include <configs/chromeos/tegra2/parts/gpio.h> | 153 #include <configs/chromeos/tegra2/parts/gpio.h> |
| 154 #include <configs/chromeos/tegra2/parts/i2c.h> | 154 #include <configs/chromeos/tegra2/parts/i2c.h> |
| 155 #include <configs/chromeos/tegra2/parts/lcd.h> | 155 #include <configs/chromeos/tegra2/parts/lcd.h> |
| 156 #include <configs/chromeos/tegra2/parts/mmc.h> | 156 #include <configs/chromeos/tegra2/parts/mmc.h> |
| 157 #include <configs/chromeos/tegra2/parts/pinmux.h> | 157 #include <configs/chromeos/tegra2/parts/pinmux.h> |
| 158 #include <configs/chromeos/tegra2/parts/uart.h> | 158 #include <configs/chromeos/tegra2/parts/uart.h> |
| 159 #include <configs/chromeos/tegra2/parts/nand.h> |
| 159 | 160 |
| 160 #define CONFIG_DISPLAY_BOARDINFO 1 | 161 #define CONFIG_DISPLAY_BOARDINFO 1 |
| 161 | 162 |
| 162 /*----------------------------------------------------------------------- | 163 /*----------------------------------------------------------------------- |
| 163 * Statically Allocated Buffers for Verified Boot | 164 * Statically Allocated Buffers for Verified Boot |
| 164 */ | 165 */ |
| 165 #define CONFIG_VB_SHARED_DATA_BLOB 0x10000000 | 166 #define CONFIG_VB_SHARED_DATA_BLOB 0x10000000 |
| 166 #define CONFIG_VB_SHARED_DATA_SIZE VB_SHARED_DATA_REC_SIZE | 167 #define CONFIG_VB_SHARED_DATA_SIZE VB_SHARED_DATA_REC_SIZE |
| 167 | 168 |
| 168 /* A sufficiently large buffer size for holding kernel image */ | 169 /* A sufficiently large buffer size for holding kernel image */ |
| 169 #define CONFIG_MAX_KERNEL_SIZE 0x01000000 | 170 #define CONFIG_MAX_KERNEL_SIZE 0x01000000 |
| 170 | 171 |
| 171 #endif /*__configs_chromeos_tegra2_common_h__*/ | 172 #endif /*__configs_chromeos_tegra2_common_h__*/ |
| OLD | NEW |