tegra-common.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * (C) Copyright 2010-2012
  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. #ifndef __TEGRA_COMMON_H
  24. #define __TEGRA_COMMON_H
  25. #include <asm/sizes.h>
  26. #include <linux/stringify.h>
  27. /*
  28. * High Level Configuration Options
  29. */
  30. #define CONFIG_ARMCORTEXA9 /* This is an ARM V7 CPU core */
  31. #define CONFIG_TEGRA /* which is a Tegra generic machine */
  32. #define CONFIG_SYS_L2CACHE_OFF /* No L2 cache */
  33. #define CONFIG_SYS_CACHELINE_SIZE 32
  34. #include <asm/arch/tegra.h> /* get chip and board defs */
  35. /*
  36. * Display CPU and Board information
  37. */
  38. #define CONFIG_DISPLAY_CPUINFO
  39. #define CONFIG_DISPLAY_BOARDINFO
  40. #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
  41. #define CONFIG_OF_LIBFDT /* enable passing of devicetree */
  42. /* Environment */
  43. #define CONFIG_ENV_VARS_UBOOT_CONFIG
  44. #define CONFIG_ENV_SIZE 0x2000 /* Total Size Environment */
  45. /*
  46. * Size of malloc() pool
  47. */
  48. #define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */
  49. /*
  50. * PllX Configuration
  51. */
  52. #define CONFIG_SYS_CPU_OSC_FREQUENCY 1000000 /* Set CPU clock to 1GHz */
  53. #define CONFIG_SYS_NS16550
  54. #define CONFIG_SYS_NS16550_SERIAL
  55. #define CONFIG_SYS_NS16550_REG_SIZE (-4)
  56. #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
  57. /*
  58. * select serial console configuration
  59. */
  60. #define CONFIG_CONS_INDEX 1
  61. /* allow to overwrite serial and ethaddr */
  62. #define CONFIG_ENV_OVERWRITE
  63. #define CONFIG_BAUDRATE 115200
  64. /* include default commands */
  65. #include <config_cmd_default.h>
  66. /* remove unused commands */
  67. #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
  68. #undef CONFIG_CMD_FPGA /* FPGA configuration support */
  69. #undef CONFIG_CMD_IMI
  70. #undef CONFIG_CMD_IMLS
  71. #undef CONFIG_CMD_NFS /* NFS support */
  72. #undef CONFIG_CMD_NET /* network support */
  73. /* turn on command-line edit/hist/auto */
  74. #define CONFIG_CMDLINE_EDITING
  75. #define CONFIG_COMMAND_HISTORY
  76. #define CONFIG_AUTO_COMPLETE
  77. #define CONFIG_SYS_NO_FLASH
  78. #define CONFIG_CONSOLE_MUX
  79. #define CONFIG_SYS_CONSOLE_IS_IN_ENV
  80. #define CONFIG_BOOTDELAY 2 /* -1 to disable auto boot */
  81. /*
  82. * Miscellaneous configurable options
  83. */
  84. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  85. #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
  86. #define CONFIG_SYS_PROMPT V_PROMPT
  87. /*
  88. * Increasing the size of the IO buffer as default nfsargs size is more
  89. * than 256 and so it is not possible to edit it
  90. */
  91. #define CONFIG_SYS_CBSIZE (256 * 2) /* Console I/O Buffer Size */
  92. /* Print Buffer Size */
  93. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  94. sizeof(CONFIG_SYS_PROMPT) + 16)
  95. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  96. /* Boot Argument Buffer Size */
  97. #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
  98. #define CONFIG_SYS_MEMTEST_START (NV_PA_SDRC_CS0 + 0x600000)
  99. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x100000)
  100. #define CONFIG_SYS_HZ 1000
  101. /*-----------------------------------------------------------------------
  102. * Physical Memory Map
  103. */
  104. #define CONFIG_NR_DRAM_BANKS 1
  105. #define PHYS_SDRAM_1 NV_PA_SDRC_CS0
  106. #define PHYS_SDRAM_1_SIZE 0x20000000 /* 512M */
  107. #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
  108. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  109. #define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* 256M */
  110. #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_STACKBASE
  111. #define CONFIG_SYS_INIT_RAM_SIZE CONFIG_SYS_MALLOC_LEN
  112. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
  113. CONFIG_SYS_INIT_RAM_SIZE - \
  114. GENERATED_GBL_DATA_SIZE)
  115. #define CONFIG_TEGRA_GPIO
  116. #define CONFIG_CMD_GPIO
  117. #define CONFIG_CMD_ENTERRCM
  118. #define CONFIG_CMD_BOOTZ
  119. /* Defines for SPL */
  120. #define CONFIG_SPL
  121. #define CONFIG_SPL_FRAMEWORK
  122. #define CONFIG_SPL_RAM_DEVICE
  123. #define CONFIG_SPL_BOARD_INIT
  124. #define CONFIG_SPL_NAND_SIMPLE
  125. #define CONFIG_SPL_MAX_SIZE (CONFIG_SYS_TEXT_BASE - \
  126. CONFIG_SPL_TEXT_BASE)
  127. #define CONFIG_SYS_SPL_MALLOC_SIZE 0x00010000
  128. #define CONFIG_SPL_LIBCOMMON_SUPPORT
  129. #define CONFIG_SPL_LIBGENERIC_SUPPORT
  130. #define CONFIG_SPL_SERIAL_SUPPORT
  131. #define CONFIG_SPL_GPIO_SUPPORT
  132. #define CONFIG_SYS_GENERIC_BOARD
  133. #endif /* _TEGRA_COMMON_H_ */