tx25.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /*
  2. * (C) Copyright 2009 DENX Software Engineering
  3. * Author: John Rigby <jrigby@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  18. * MA 02111-1307 USA
  19. */
  20. #ifndef __CONFIG_H
  21. #define __CONFIG_H
  22. /*
  23. * KARO TX25 board - SoC Configuration
  24. */
  25. #define CONFIG_MX25
  26. #define CONFIG_MX25_CLK32 32000 /* OSC32K frequency */
  27. #define CONFIG_SYS_HZ 1000
  28. #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* 256 kB for U-Boot */
  29. /* NAND BOOT is the only boot method */
  30. #define CONFIG_NAND_U_BOOT
  31. #ifdef CONFIG_NAND_SPL
  32. /* Start copying real U-boot from the second page */
  33. #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x800
  34. #define CONFIG_SYS_NAND_U_BOOT_SIZE 0x30000
  35. #define CONFIG_SYS_NAND_U_BOOT_DST (0x81200000)
  36. #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_NAND_U_BOOT_DST
  37. #define CONFIG_SYS_NAND_PAGE_SIZE 2048
  38. #define CONFIG_SYS_NAND_SPARE_SIZE 64
  39. #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024)
  40. #define CONFIG_SYS_NAND_PAGE_COUNT 64
  41. #define CONFIG_SYS_NAND_SIZE (128 * 1024 * 1024)
  42. #define CONFIG_SYS_NAND_BAD_BLOCK_POS 0
  43. #else
  44. #define CONFIG_SKIP_LOWLEVEL_INIT
  45. #endif
  46. #define CONFIG_DISPLAY_CPUINFO
  47. #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
  48. #define CONFIG_SETUP_MEMORY_TAGS
  49. #define CONFIG_INITRD_TAG
  50. /*
  51. * Memory Info
  52. */
  53. /* malloc() len */
  54. #define CONFIG_SYS_MALLOC_LEN (1 << 20) /* 1 MiB */
  55. /*
  56. * Board has 2 32MB banks of DRAM but there is a bug when using
  57. * both so only the first is configured
  58. */
  59. #define CONFIG_NR_DRAM_BANKS 1
  60. #define PHYS_SDRAM_1 0x80000000
  61. #define PHYS_SDRAM_1_SIZE 0x02000000
  62. #if (CONFIG_NR_DRAM_BANKS == 2)
  63. #define PHYS_SDRAM_2 0x90000000
  64. #define PHYS_SDRAM_2_SIZE 0x02000000
  65. #endif
  66. /* 8MB DRAM test */
  67. #define CONFIG_SYS_MEMTEST_START PHYS_SDRAM_1
  68. #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1+0x0800000)
  69. #define CONFIG_STACKSIZE (256 * 1024) /* regular stack */
  70. /*
  71. * Serial Info
  72. */
  73. #define CONFIG_MXC_UART
  74. #define CONFIG_SYS_MX25_UART1
  75. #define CONFIG_CONS_INDEX 1 /* use UART0 for console */
  76. #define CONFIG_BAUDRATE 115200 /* Default baud rate */
  77. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  78. #define CONFIG_MXC_GPIO
  79. /*
  80. * Flash & Environment
  81. */
  82. /* No NOR flash present */
  83. #define CONFIG_SYS_NO_FLASH
  84. #define CONFIG_ENV_IS_IN_NAND
  85. #define CONFIG_ENV_OFFSET CONFIG_SYS_MONITOR_LEN
  86. #define CONFIG_ENV_SIZE (128 * 1024) /* 128 kB NAND block size */
  87. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
  88. /* NAND */
  89. #define CONFIG_NAND_MXC
  90. #define CONFIG_NAND_MXC_V1_1
  91. #define CONFIG_MXC_NAND_REGS_BASE (0xBB000000)
  92. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  93. #define CONFIG_SYS_NAND_BASE (0xBB000000)
  94. #define CONFIG_JFFS2_NAND
  95. #define CONFIG_MXC_NAND_HWECC
  96. #define CONFIG_SYS_NAND_LARGEPAGE
  97. #define CONFIG_SYS_64BIT_VSPRINTF
  98. /* U-Boot general configuration */
  99. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  100. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  101. /* Print buffer sz */
  102. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  103. sizeof(CONFIG_SYS_PROMPT) + 16)
  104. #define CONFIG_SYS_MAXARGS 32 /* max number of command args */
  105. /* Boot Argument Buffer Size */
  106. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  107. #define CONFIG_CMDLINE_EDITING
  108. #define CONFIG_SYS_LONGHELP
  109. /* U-Boot commands */
  110. #include <config_cmd_default.h>
  111. #define CONFIG_CMD_NAND
  112. #define CONFIG_CMD_CACHE
  113. /*
  114. * Ethernet
  115. */
  116. #define CONFIG_FEC_MXC
  117. #define CONFIG_FEC_MXC_PHYADDR 0x1f
  118. #define CONFIG_MII
  119. #define CONFIG_CMD_NET
  120. #define CONFIG_NET_MULTI
  121. #define BOARD_LATE_INIT
  122. #define CONFIG_ENV_OVERWRITE
  123. #define CONFIG_BOOTDELAY 5
  124. #define CONFIG_LOADADDR 0x81000000 /* loadaddr env var */
  125. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  126. #define xstr(s) str(s)
  127. #define str(s) #s
  128. #define CONFIG_EXTRA_ENV_SETTINGS \
  129. "netdev=eth0\0" \
  130. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  131. "nfsroot=${serverip}:${rootpath}\0" \
  132. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  133. "addip=setenv bootargs ${bootargs} " \
  134. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  135. ":${hostname}:${netdev}:off panic=1\0" \
  136. "addtty=setenv bootargs ${bootargs}" \
  137. " console=ttymxc0,${baudrate}\0" \
  138. "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
  139. "addmisc=setenv bootargs ${bootargs}\0" \
  140. "u-boot=tx25/u-boot.bin\0" \
  141. "kernel_addr_r=" xstr(CONFIG_LOADADDR) "\0" \
  142. "hostname=tx25\0" \
  143. "bootfile=tx25/uImage\0" \
  144. "rootpath=/opt/eldk/arm\0" \
  145. "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
  146. "run nfsargs addip addtty addmtd addmisc;" \
  147. "bootm\0" \
  148. "bootcmd=run net_nfs\0" \
  149. "load=tftp ${loadaddr} ${u-boot}\0" \
  150. "update=nand erase 0 40000;nand write ${loadaddr} 0 40000\0" \
  151. "upd=run load update\0" \
  152. /* additions for new relocation code, must be added to all boards */
  153. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  154. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - /* Fix this */ \
  155. GENERATED_GBL_DATA_SIZE)
  156. #endif /* __CONFIG_H */