tegra2-common.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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 __TEGRA2_COMMON_H
  24. #define __TEGRA2_COMMON_H
  25. #include <asm/sizes.h>
  26. /*
  27. * QUOTE(m) will evaluate to a string version of the value of the macro m
  28. * passed in. The extra level of indirection here is to first evaluate the
  29. * macro m before applying the quoting operator.
  30. */
  31. #define QUOTE_(m) #m
  32. #define QUOTE(m) QUOTE_(m)
  33. /*
  34. * High Level Configuration Options
  35. */
  36. #define CONFIG_ARMCORTEXA9 /* This is an ARM V7 CPU core */
  37. #define CONFIG_TEGRA2 /* in a NVidia Tegra2 core */
  38. #define CONFIG_MACH_TEGRA_GENERIC /* which is a Tegra generic machine */
  39. #define CONFIG_SYS_L2CACHE_OFF /* No L2 cache */
  40. #define CONFIG_SYS_CACHELINE_SIZE 32
  41. #define CONFIG_ARCH_CPU_INIT /* Fire up the A9 core */
  42. #include <asm/arch/tegra2.h> /* get chip and board defs */
  43. /*
  44. * Display CPU and Board information
  45. */
  46. #define CONFIG_DISPLAY_CPUINFO
  47. #define CONFIG_DISPLAY_BOARDINFO
  48. #define CONFIG_SKIP_LOWLEVEL_INIT
  49. #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
  50. #define CONFIG_OF_LIBFDT /* enable passing of devicetree */
  51. #ifdef CONFIG_TEGRA2_LP0
  52. #define TEGRA_LP0_ADDR 0x1C406000
  53. #define TEGRA_LP0_SIZE 0x2000
  54. #define TEGRA_LP0_VEC \
  55. "lp0_vec=" QUOTE(TEGRA_LP0_SIZE) "@" QUOTE(TEGRA_LP0_ADDR) " "
  56. #else
  57. #define TEGRA_LP0_VEC
  58. #endif
  59. /* Environment */
  60. #define CONFIG_ENV_VARS_UBOOT_CONFIG
  61. #define CONFIG_ENV_SIZE 0x2000 /* Total Size Environment */
  62. /*
  63. * Size of malloc() pool
  64. */
  65. #define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */
  66. /*
  67. * PllX Configuration
  68. */
  69. #define CONFIG_SYS_CPU_OSC_FREQUENCY 1000000 /* Set CPU clock to 1GHz */
  70. /*
  71. * NS16550 Configuration
  72. */
  73. #define V_NS16550_CLK 216000000 /* 216MHz (pllp_out0) */
  74. #define CONFIG_SYS_NS16550
  75. #define CONFIG_SYS_NS16550_SERIAL
  76. #define CONFIG_SYS_NS16550_REG_SIZE (-4)
  77. #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
  78. /*
  79. * select serial console configuration
  80. */
  81. #define CONFIG_CONS_INDEX 1
  82. /* allow to overwrite serial and ethaddr */
  83. #define CONFIG_ENV_OVERWRITE
  84. #define CONFIG_BAUDRATE 115200
  85. #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
  86. 115200}
  87. /*
  88. * This parameter affects a TXFILLTUNING field that controls how much data is
  89. * sent to the latency fifo before it is sent to the wire. Without this
  90. * parameter, the default (2) causes occasional Data Buffer Errors in OUT
  91. * packets depending on the buffer address and size.
  92. */
  93. #define CONFIG_USB_EHCI_TXFIFO_THRESH 10
  94. #define CONFIG_EHCI_IS_TDI
  95. #define CONFIG_EHCI_DCACHE
  96. /* Total I2C ports on Tegra2 */
  97. #define TEGRA_I2C_NUM_CONTROLLERS 4
  98. /* include default commands */
  99. #include <config_cmd_default.h>
  100. /* remove unused commands */
  101. #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */
  102. #undef CONFIG_CMD_FPGA /* FPGA configuration support */
  103. #undef CONFIG_CMD_IMI
  104. #undef CONFIG_CMD_IMLS
  105. #undef CONFIG_CMD_NFS /* NFS support */
  106. #undef CONFIG_CMD_NET /* network support */
  107. /* turn on command-line edit/hist/auto */
  108. #define CONFIG_CMDLINE_EDITING
  109. #define CONFIG_COMMAND_HISTORY
  110. #define CONFIG_AUTO_COMPLETE
  111. #define CONFIG_SYS_NO_FLASH
  112. /* Environment information, boards can override if required */
  113. #define CONFIG_CONSOLE_MUX
  114. #define CONFIG_SYS_CONSOLE_IS_IN_ENV
  115. #define TEGRA2_DEVICE_SETTINGS "stdin=serial\0" \
  116. "stdout=serial\0" \
  117. "stderr=serial\0"
  118. #define CONFIG_LOADADDR 0x408000 /* def. location for kernel */
  119. #define CONFIG_BOOTDELAY 2 /* -1 to disable auto boot */
  120. /*
  121. * Miscellaneous configurable options
  122. */
  123. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  124. #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
  125. #define CONFIG_SYS_PROMPT V_PROMPT
  126. /*
  127. * Increasing the size of the IO buffer as default nfsargs size is more
  128. * than 256 and so it is not possible to edit it
  129. */
  130. #define CONFIG_SYS_CBSIZE (256 * 2) /* Console I/O Buffer Size */
  131. /* Print Buffer Size */
  132. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  133. sizeof(CONFIG_SYS_PROMPT) + 16)
  134. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  135. /* Boot Argument Buffer Size */
  136. #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
  137. #define CONFIG_SYS_MEMTEST_START (TEGRA2_SDRC_CS0 + 0x600000)
  138. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x100000)
  139. #define CONFIG_SYS_LOAD_ADDR (0xA00800) /* default */
  140. #define CONFIG_SYS_HZ 1000
  141. /*-----------------------------------------------------------------------
  142. * Stack sizes
  143. *
  144. * The stack sizes are set up in start.S using the settings below
  145. */
  146. #define CONFIG_STACKBASE 0x2800000 /* 40MB */
  147. #define CONFIG_STACKSIZE 0x20000 /* 128K regular stack*/
  148. /*-----------------------------------------------------------------------
  149. * Physical Memory Map
  150. */
  151. #define CONFIG_NR_DRAM_BANKS 1
  152. #define PHYS_SDRAM_1 TEGRA2_SDRC_CS0
  153. #define PHYS_SDRAM_1_SIZE 0x20000000 /* 512M */
  154. #define CONFIG_SYS_TEXT_BASE 0x00108000
  155. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  156. #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_STACKBASE
  157. #define CONFIG_SYS_INIT_RAM_SIZE CONFIG_SYS_MALLOC_LEN
  158. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
  159. CONFIG_SYS_INIT_RAM_SIZE - \
  160. GENERATED_GBL_DATA_SIZE)
  161. #define CONFIG_TEGRA_GPIO
  162. #define CONFIG_CMD_GPIO
  163. #endif /* __TEGRA2_COMMON_H */