12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #ifndef _TEGRA20_COMMON_H_
- #define _TEGRA20_COMMON_H_
- #include "tegra-common.h"
- #define CONFIG_ARM_ERRATA_716044
- #define CONFIG_ARM_ERRATA_742230
- #define CONFIG_ARM_ERRATA_751472
- #define V_NS16550_CLK 216000000
- #define CONFIG_STACKBASE 0x02800000
- #define CONFIG_SYS_TEXT_BASE 0x00110000
- #define CONFIG_LOADADDR 0x01000000
- #define MEM_LAYOUT_ENV_SETTINGS \
- "scriptaddr=0x10000000\0" \
- "pxefile_addr_r=0x10100000\0" \
- "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
- "fdt_addr_r=0x02000000\0" \
- "ramdisk_addr_r=0x02100000\0"
- #define CONFIG_SPL_TEXT_BASE 0x00108000
- #define CONFIG_SYS_SPL_MALLOC_START 0x00090000
- #define CONFIG_SPL_STACK 0x000ffffc
- #define CONFIG_LCD_ALIGNMENT MMU_SECTION_SIZE
- #ifdef CONFIG_TEGRA_LP0
- #define TEGRA_LP0_ADDR 0x1C406000
- #define TEGRA_LP0_SIZE 0x2000
- #define TEGRA_LP0_VEC \
- "lp0_vec=" __stringify(TEGRA_LP0_SIZE) \
- "@" __stringify(TEGRA_LP0_ADDR) " "
- #else
- #define TEGRA_LP0_VEC
- #endif
- #define CONFIG_USB_EHCI_TXFIFO_THRESH 10
- #define CONFIG_EHCI_IS_TDI
- #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 1
- #define CONFIG_SYS_NAND_SELF_INIT
- #define CONFIG_SYS_NAND_ONFI_DETECTION
- #endif
|