tegra20-common.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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 __TEGRA20_COMMON_H
  24. #define __TEGRA20_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_TEGRA20 /* in a NVidia Tegra20 core */
  32. #define CONFIG_TEGRA /* which is a Tegra generic machine */
  33. #define CONFIG_SYS_L2CACHE_OFF /* No L2 cache */
  34. #define CONFIG_SYS_CACHELINE_SIZE 32
  35. #include <asm/arch/tegra.h> /* get chip and board defs */
  36. /*
  37. * Display CPU and Board information
  38. */
  39. #define CONFIG_DISPLAY_CPUINFO
  40. #define CONFIG_DISPLAY_BOARDINFO
  41. #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
  42. #define CONFIG_OF_LIBFDT /* enable passing of devicetree */
  43. #ifdef CONFIG_TEGRA_LP0
  44. #define TEGRA_LP0_ADDR 0x1C406000
  45. #define TEGRA_LP0_SIZE 0x2000
  46. #define TEGRA_LP0_VEC \
  47. "lp0_vec=" __stringify(TEGRA_LP0_SIZE) \
  48. "@" __stringify(TEGRA_LP0_ADDR) " "
  49. #else
  50. #define TEGRA_LP0_VEC
  51. #endif
  52. /* Environment */
  53. #define CONFIG_ENV_VARS_UBOOT_CONFIG
  54. #define CONFIG_ENV_SIZE 0x2000 /* Total Size Environment */
  55. /*
  56. * Size of malloc() pool
  57. */
  58. #define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */
  59. /*
  60. * PllX Configuration
  61. */
  62. #define CONFIG_SYS_CPU_OSC_FREQUENCY 1000000 /* Set CPU clock to 1GHz */
  63. /*
  64. * NS16550 Configuration
  65. */
  66. #define V_NS16550_CLK 216000000 /* 216MHz (pllp_out0) */
  67. #define CONFIG_SYS_NS16550
  68. #define CONFIG_SYS_NS16550_SERIAL
  69. #define CONFIG_SYS_NS16550_REG_SIZE (-4)
  70. #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
  71. /*
  72. * select serial console configuration
  73. */
  74. #define CONFIG_CONS_INDEX 1
  75. /* allow to overwrite serial and ethaddr */
  76. #define CONFIG_ENV_OVERWRITE
  77. #define CONFIG_BAUDRATE 115200
  78. #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
  79. 115200}
  80. /*
  81. * This parameter affects a TXFILLTUNING field that controls how much data is
  82. * sent to the latency fifo before it is sent to the wire. Without this
  83. * parameter, the default (2) causes occasional Data Buffer Errors in OUT
  84. * packets depending on the buffer address and size.
  85. */
  86. #define CONFIG_USB_EHCI_TXFIFO_THRESH 10
  87. #define CONFIG_EHCI_IS_TDI
  88. #define CONFIG_EHCI_DCACHE
  89. /* Total I2C ports on Tegra20 */
  90. #define TEGRA_I2C_NUM_CONTROLLERS 4
  91. /* include default commands */
  92. #include <config_cmd_default.h>
  93. #define CONFIG_PARTITION_UUIDS
  94. #define CONFIG_CMD_PART
  95. /* remove unused commands */
  96. #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
  97. #undef CONFIG_CMD_FPGA /* FPGA configuration support */
  98. #undef CONFIG_CMD_IMI
  99. #undef CONFIG_CMD_IMLS
  100. #undef CONFIG_CMD_NFS /* NFS support */
  101. #undef CONFIG_CMD_NET /* network support */
  102. /* turn on command-line edit/hist/auto */
  103. #define CONFIG_CMDLINE_EDITING
  104. #define CONFIG_COMMAND_HISTORY
  105. #define CONFIG_AUTO_COMPLETE
  106. #define CONFIG_SYS_NO_FLASH
  107. /* Environment information, boards can override if required */
  108. #define CONFIG_CONSOLE_MUX
  109. #define CONFIG_SYS_CONSOLE_IS_IN_ENV
  110. #define TEGRA_DEVICE_SETTINGS "stdin=serial\0" \
  111. "stdout=serial\0" \
  112. "stderr=serial\0"
  113. #define CONFIG_LOADADDR 0x408000 /* def. location for kernel */
  114. #define CONFIG_BOOTDELAY 2 /* -1 to disable auto boot */
  115. /*
  116. * Miscellaneous configurable options
  117. */
  118. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  119. #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
  120. #define CONFIG_SYS_PROMPT V_PROMPT
  121. /*
  122. * Increasing the size of the IO buffer as default nfsargs size is more
  123. * than 256 and so it is not possible to edit it
  124. */
  125. #define CONFIG_SYS_CBSIZE (256 * 2) /* Console I/O Buffer Size */
  126. /* Print Buffer Size */
  127. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  128. sizeof(CONFIG_SYS_PROMPT) + 16)
  129. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  130. /* Boot Argument Buffer Size */
  131. #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
  132. #define CONFIG_SYS_MEMTEST_START (NV_PA_SDRC_CS0 + 0x600000)
  133. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x100000)
  134. #define CONFIG_SYS_LOAD_ADDR (0xA00800) /* default */
  135. #define CONFIG_SYS_HZ 1000
  136. #define CONFIG_STACKBASE 0x2800000 /* 40MB */
  137. /*-----------------------------------------------------------------------
  138. * Physical Memory Map
  139. */
  140. #define CONFIG_NR_DRAM_BANKS 1
  141. #define PHYS_SDRAM_1 NV_PA_SDRC_CS0
  142. #define PHYS_SDRAM_1_SIZE 0x20000000 /* 512M */
  143. #define CONFIG_SYS_TEXT_BASE 0x0010c000
  144. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  145. #define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* 256M */
  146. #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_STACKBASE
  147. #define CONFIG_SYS_INIT_RAM_SIZE CONFIG_SYS_MALLOC_LEN
  148. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
  149. CONFIG_SYS_INIT_RAM_SIZE - \
  150. GENERATED_GBL_DATA_SIZE)
  151. #define CONFIG_TEGRA_GPIO
  152. #define CONFIG_CMD_GPIO
  153. #define CONFIG_CMD_ENTERRCM
  154. #define CONFIG_CMD_BOOTZ
  155. /* Defines for SPL */
  156. #define CONFIG_SPL
  157. #define CONFIG_SPL_NAND_SIMPLE
  158. #define CONFIG_SPL_TEXT_BASE 0x00108000
  159. #define CONFIG_SPL_MAX_SIZE (CONFIG_SYS_TEXT_BASE - \
  160. CONFIG_SPL_TEXT_BASE)
  161. #define CONFIG_SYS_SPL_MALLOC_START 0x00090000
  162. #define CONFIG_SYS_SPL_MALLOC_SIZE 0x00010000
  163. #define CONFIG_SPL_STACK 0x000ffffc
  164. #define CONFIG_SPL_LIBCOMMON_SUPPORT
  165. #define CONFIG_SPL_LIBGENERIC_SUPPORT
  166. #define CONFIG_SPL_SERIAL_SUPPORT
  167. #define CONFIG_SPL_GPIO_SUPPORT
  168. #define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/tegra20/u-boot-spl.lds"
  169. #define CONFIG_SYS_NAND_SELF_INIT
  170. #define CONFIG_SYS_NAND_ONFI_DETECTION
  171. #endif /* __TEGRA20_COMMON_H */