zmx25.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /*
  2. * (c) 2011 Graf-Syteco, Matthias Weisser
  3. * <weisserm@arcor.de>
  4. *
  5. * Configuation settings for the zmx25 board
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #ifndef __CONFIG_H
  26. #define __CONFIG_H
  27. #define CONFIG_ARM926EJS /* arm926ejs CPU core */
  28. #define CONFIG_MX25
  29. #define CONFIG_MX25_CLK32 32768 /* OSC32K frequency */
  30. #define CONFIG_SYS_HZ 1000
  31. #define CONFIG_SYS_TEXT_BASE 0xA0000000
  32. /*
  33. * Environment settings
  34. */
  35. #define CONFIG_EXTRA_ENV_SETTINGS \
  36. "gs_fast_boot=setenv bootdelay 5\0" \
  37. "gs_slow_boot=setenv bootdelay 10\0" \
  38. "bootcmd=dcache off; mw.l 0x81000000 0 1024; usb start;" \
  39. "fatls usb 0; fatload usb 0 0x81000000 zmx25-init.bin;" \
  40. "bootm 0x81000000; bootelf 0x81000000\0"
  41. #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
  42. #define CONFIG_SETUP_MEMORY_TAGS
  43. #define CONFIG_INITRD_TAG
  44. #define BOARD_LATE_INIT
  45. /*
  46. * Compressions
  47. */
  48. #define CONFIG_LZO
  49. /*
  50. * Hardware drivers
  51. */
  52. /*
  53. * GPIO
  54. */
  55. #define CONFIG_MXC_GPIO
  56. /*
  57. * Serial
  58. */
  59. #define CONFIG_MXC_UART
  60. #define CONFIG_SYS_MX25_UART2
  61. #define CONFIG_CONS_INDEX 1 /* use UART2 for console */
  62. #define CONFIG_BAUDRATE 115200 /* Default baud rate */
  63. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  64. /*
  65. * Ethernet
  66. */
  67. #define CONFIG_FEC_MXC
  68. #define CONFIG_FEC_MXC_PHYADDR 0x00
  69. #define CONFIG_MII
  70. #define CONFIG_NET_MULTI
  71. /*
  72. * BOOTP options
  73. */
  74. #define CONFIG_BOOTP_BOOTFILESIZE
  75. #define CONFIG_BOOTP_BOOTPATH
  76. #define CONFIG_BOOTP_GATEWAY
  77. #define CONFIG_BOOTP_HOSTNAME
  78. /*
  79. * Command line configuration.
  80. */
  81. #include <config_cmd_default.h>
  82. #define CONFIG_CMD_NET
  83. #define CONFIG_CMD_CACHE
  84. #define CONFIG_SYS_64BIT_VSPRINTF
  85. /*
  86. * Additional command
  87. */
  88. #define CONFIG_CMD_DHCP
  89. #define CONFIG_CMD_PING
  90. #define CONFIG_CMD_ELF
  91. #define CONFIG_CMD_FAT
  92. #define CONFIG_CMD_USB
  93. #define CONFIG_SYS_HUSH_PARSER
  94. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  95. /*
  96. * USB
  97. */
  98. #ifdef CONFIG_CMD_USB
  99. #define CONFIG_USB_EHCI /* Enable EHCI USB support */
  100. #define CONFIG_USB_EHCI_MXC
  101. #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
  102. #define CONFIG_MXC_USB_PORT 2
  103. #define CONFIG_MXC_USB_PORTSC 0xC0000000
  104. #define CONFIG_MXC_USB_FLAGS 0
  105. #define CONFIG_EHCI_IS_TDI
  106. #define CONFIG_USB_STORAGE
  107. #define CONFIG_DOS_PARTITION
  108. #define CONFIG_SUPPORT_VFAT
  109. #endif /* CONFIG_CMD_USB */
  110. /* SDRAM */
  111. #define CONFIG_NR_DRAM_BANKS 1
  112. #define PHYS_SDRAM 0x80000000 /* start address of LPDDRRAM */
  113. #define PHYS_SDRAM_SIZE 0x04000000 /* 64 megs */
  114. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
  115. #define CONFIG_SYS_INIT_SP_ADDR 0x78020000 /* end of internal SRAM */
  116. /*
  117. * FLASH and environment organization
  118. */
  119. #define CONFIG_SYS_FLASH_BASE 0xA0000000
  120. #define CONFIG_SYS_MAX_FLASH_BANKS 1
  121. #define CONFIG_SYS_MAX_FLASH_SECT 256
  122. #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x00040000)
  123. #define CONFIG_ENV_IS_IN_FLASH 1
  124. #define CONFIG_ENV_SECT_SIZE (128 * 1024)
  125. #define CONFIG_ENV_SIZE (128 * 1024)
  126. /*
  127. * CFI FLASH driver setup
  128. */
  129. #define CONFIG_SYS_FLASH_CFI
  130. #define CONFIG_FLASH_CFI_DRIVER
  131. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE /* ~10x faster */
  132. #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE
  133. #define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM + (512*1024))
  134. #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM + PHYS_SDRAM_SIZE)
  135. #define CONFIG_SYS_PROMPT "zmx25> "
  136. #define CONFIG_SYS_CBSIZE 256
  137. #define CONFIG_SYS_MAXARGS 16
  138. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  139. sizeof(CONFIG_SYS_PROMPT) + 16)
  140. #define CONFIG_SYS_LONGHELP
  141. #define CONFIG_CMDLINE_EDITING
  142. #define CONFIG_PREBOOT ""
  143. #define CONFIG_BOOTDELAY 5
  144. #define CONFIG_AUTOBOOT_KEYED
  145. #define CONFIG_AUTOBOOT_PROMPT "boot in %d s\n", bootdelay
  146. #define CONFIG_AUTOBOOT_DELAY_STR "delaygs"
  147. #define CONFIG_AUTOBOOT_STOP_STR "stopgs"
  148. /*
  149. * Size of malloc() pool
  150. */
  151. #define CONFIG_SYS_MALLOC_LEN (0x400000 - 0x8000)
  152. #define CONFIG_STACKSIZE (32*1024) /* regular stack */
  153. #endif /* __CONFIG_H */