mx25pdk.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * (C) Copyright 2011 Freescale Semiconductor, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of
  7. * the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #ifndef __CONFIG_H
  15. #define __CONFIG_H
  16. /* High Level Configuration Options */
  17. #define CONFIG_MX25_CLK32 32768 /* OSC32K frequency */
  18. #define CONFIG_SYS_HZ 1000
  19. #define CONFIG_SYS_TEXT_BASE 0x81200000
  20. #define CONFIG_DISPLAY_CPUINFO
  21. #define CONFIG_DISPLAY_BOARDINFO
  22. #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
  23. #define CONFIG_SETUP_MEMORY_TAGS
  24. #define CONFIG_INITRD_TAG
  25. #define CONFIG_MACH_TYPE MACH_TYPE_MX25_3DS
  26. /* Size of malloc() pool */
  27. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * 1024 * 1024)
  28. /* Physical Memory Map */
  29. #define CONFIG_NR_DRAM_BANKS 1
  30. #define PHYS_SDRAM_1 0x80000000
  31. #define PHYS_SDRAM_1_SIZE (64 * 1024 * 1024)
  32. #define CONFIG_BOARD_EARLY_INIT_F
  33. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  34. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - \
  35. GENERATED_GBL_DATA_SIZE)
  36. /* Memory Test */
  37. #define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE/2)
  38. #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE)
  39. /* Stack sizes */
  40. #define CONFIG_STACKSIZE (128 * 1024) /* regular stack */
  41. /* Serial Info */
  42. #define CONFIG_MXC_UART
  43. #define CONFIG_SYS_MX25_UART1
  44. #define CONFIG_CONS_INDEX 1 /* use UART0 for console */
  45. #define CONFIG_BAUDRATE 115200 /* Default baud rate */
  46. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  47. /* No NOR flash present */
  48. #define CONFIG_ENV_OFFSET (6 * 64 * 1024)
  49. #define CONFIG_ENV_SIZE (8 * 1024)
  50. #define CONFIG_ENV_IS_NOWHERE
  51. #define CONFIG_SYS_NO_FLASH
  52. #define CONFIG_SYS_64BIT_VSPRINTF
  53. /* U-Boot general configuration */
  54. #define CONFIG_SYS_PROMPT "MX25PDK U-Boot > "
  55. #define CONFIG_AUTO_COMPLETE
  56. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  57. /* Print buffer sz */
  58. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  59. sizeof(CONFIG_SYS_PROMPT) + 16)
  60. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  61. /* Boot Argument Buffer Size */
  62. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  63. #define CONFIG_CMDLINE_EDITING
  64. #define CONFIG_SYS_LONGHELP
  65. /* U-Boot commands */
  66. #include <config_cmd_default.h>
  67. #define CONFIG_CMD_CACHE
  68. /* Ethernet */
  69. #define CONFIG_FEC_MXC
  70. #define CONFIG_FEC_MXC_PHYADDR 0x1f
  71. #define CONFIG_MII
  72. #define CONFIG_CMD_NET
  73. #define CONFIG_ENV_OVERWRITE
  74. #define CONFIG_BOOTDELAY 3
  75. #define CONFIG_LOADADDR 0x81000000 /* loadaddr env var */
  76. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  77. #define CONFIG_EXTRA_ENV_SETTINGS \
  78. "script=boot.scr\0" \
  79. "uimage=uImage\0" \
  80. "netargs=setenv bootargs console=ttymxc0,${baudrate} " \
  81. "root=/dev/nfs " \
  82. "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
  83. "bootcmd=run netargs; dhcp ${uimage}; bootm\0" \
  84. #endif /* __CONFIG_H */