flea3.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2011, Stefano Babic <sbabic@denx.de>
  4. *
  5. * (C) Copyright 2008-2010 Freescale Semiconductor, Inc.
  6. *
  7. * Copyright (C) 2007, Guennadi Liakhovetski <lg@denx.de>
  8. *
  9. * Configuration for the flea3 board.
  10. */
  11. #ifndef __CONFIG_H
  12. #define __CONFIG_H
  13. #include <asm/arch/imx-regs.h>
  14. /* High Level Configuration Options */
  15. #define CONFIG_MX35
  16. #define CONFIG_MACH_TYPE MACH_TYPE_FLEA3
  17. /* Set TEXT at the beginning of the NOR flash */
  18. /* This is required to setup the ESDC controller */
  19. #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
  20. #define CONFIG_REVISION_TAG
  21. #define CONFIG_SETUP_MEMORY_TAGS
  22. #define CONFIG_INITRD_TAG
  23. /*
  24. * Size of malloc() pool
  25. */
  26. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 1024 * 1024)
  27. /*
  28. * Hardware drivers
  29. */
  30. #define CONFIG_SYS_I2C
  31. #define CONFIG_SYS_I2C_MXC
  32. #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
  33. #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
  34. #define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
  35. #define CONFIG_SYS_SPD_BUS_NUM 2 /* I2C3 */
  36. #define CONFIG_SYS_MXC_I2C3_SLAVE 0xfe
  37. /*
  38. * UART (console)
  39. */
  40. #define CONFIG_MXC_UART
  41. #define CONFIG_MXC_UART_BASE UART3_BASE
  42. /* allow to overwrite serial and ethaddr */
  43. #define CONFIG_ENV_OVERWRITE
  44. /*
  45. * Command definition
  46. */
  47. #define CONFIG_NET_RETRY_COUNT 100
  48. #define CONFIG_LOADADDR 0x80800000 /* loadaddr env var */
  49. /*
  50. * Ethernet on SOC (FEC)
  51. */
  52. #define CONFIG_FEC_MXC
  53. #define IMX_FEC_BASE FEC_BASE_ADDR
  54. #define CONFIG_FEC_MXC_PHYADDR 0x1
  55. #define CONFIG_ARP_TIMEOUT 200UL
  56. /*
  57. * Miscellaneous configurable options
  58. */
  59. #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
  60. /* Print Buffer Size */
  61. #define CONFIG_SYS_MAXARGS 32 /* max number of command args */
  62. #define CONFIG_SYS_MEMTEST_START 0 /* memtest works on */
  63. #define CONFIG_SYS_MEMTEST_END 0x10000
  64. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  65. /*
  66. * Physical Memory Map
  67. */
  68. #define PHYS_SDRAM_1 CSD0_BASE_ADDR
  69. #define PHYS_SDRAM_1_SIZE (128 * 1024 * 1024)
  70. #define CONFIG_SYS_SDRAM_BASE CSD0_BASE_ADDR
  71. #define CONFIG_SYS_INIT_RAM_ADDR (IRAM_BASE_ADDR + 0x10000)
  72. #define CONFIG_SYS_INIT_RAM_SIZE (IRAM_SIZE / 2)
  73. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \
  74. GENERATED_GBL_DATA_SIZE)
  75. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
  76. CONFIG_SYS_GBL_DATA_OFFSET)
  77. /*
  78. * MTD Command for mtdparts
  79. */
  80. /*
  81. * FLASH and environment organization
  82. */
  83. #define CONFIG_SYS_FLASH_BASE CS0_BASE_ADDR
  84. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  85. #define CONFIG_SYS_MAX_FLASH_SECT 512 /* max number of sectors on one chip */
  86. /* Monitor at beginning of flash */
  87. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
  88. #define CONFIG_SYS_MONITOR_LEN (512 * 1024)
  89. /* Address and size of Redundant Environment Sector */
  90. /*
  91. * CFI FLASH driver setup
  92. */
  93. /* A non-standard buffered write algorithm */
  94. /*
  95. * NAND FLASH driver setup
  96. */
  97. #define CONFIG_MXC_NAND_REGS_BASE (NFC_BASE_ADDR)
  98. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  99. #define CONFIG_SYS_NAND_BASE (NFC_BASE_ADDR)
  100. #define CONFIG_MXC_NAND_HWECC
  101. #define CONFIG_SYS_NAND_LARGEPAGE
  102. /*
  103. * Default environment and default scripts
  104. * to update uboot and load kernel
  105. */
  106. #define CONFIG_HOSTNAME "flea3"
  107. #define CONFIG_EXTRA_ENV_SETTINGS \
  108. "netdev=eth0\0" \
  109. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  110. "nfsroot=${serverip}:${rootpath}\0" \
  111. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  112. "addip_sta=setenv bootargs ${bootargs} " \
  113. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  114. ":${hostname}:${netdev}:off panic=1\0" \
  115. "addip_dyn=setenv bootargs ${bootargs} ip=dhcp\0" \
  116. "addip=if test -n ${ipdyn};then run addip_dyn;" \
  117. "else run addip_sta;fi\0" \
  118. "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
  119. "addtty=setenv bootargs ${bootargs}" \
  120. " console=ttymxc2,${baudrate}\0" \
  121. "addmisc=setenv bootargs ${bootargs} ${misc}\0" \
  122. "loadaddr=80800000\0" \
  123. "kernel_addr_r=80800000\0" \
  124. "hostname=" CONFIG_HOSTNAME "\0" \
  125. "bootfile=" CONFIG_HOSTNAME "/uImage\0" \
  126. "ramdisk_file=" CONFIG_HOSTNAME "/uRamdisk\0" \
  127. "flash_self=run ramargs addip addtty addmtd addmisc;" \
  128. "bootm ${kernel_addr} ${ramdisk_addr}\0" \
  129. "flash_nfs=run nfsargs addip addtty addmtd addmisc;" \
  130. "bootm ${kernel_addr}\0" \
  131. "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \
  132. "run nfsargs addip addtty addmtd addmisc;" \
  133. "bootm ${kernel_addr_r}\0" \
  134. "net_self_load=tftp ${kernel_addr_r} ${bootfile};" \
  135. "tftp ${ramdisk_addr_r} ${ramdisk_file};\0" \
  136. "net_self=if run net_self_load;then " \
  137. "run ramargs addip addtty addmtd addmisc;" \
  138. "bootm ${kernel_addr_r} ${ramdisk_addr_r};" \
  139. "else echo Images not loades;fi\0" \
  140. "u-boot=" CONFIG_HOSTNAME "/u-boot.bin\0" \
  141. "load=tftp ${loadaddr} ${u-boot}\0" \
  142. "uboot_addr=" __stringify(CONFIG_SYS_MONITOR_BASE) "\0" \
  143. "update=protect off ${uboot_addr} +80000;" \
  144. "erase ${uboot_addr} +80000;" \
  145. "cp.b ${loadaddr} ${uboot_addr} ${filesize}\0" \
  146. "upd=if run load;then echo Updating u-boot;if run update;" \
  147. "then echo U-Boot updated;" \
  148. "else echo Error updating u-boot !;" \
  149. "echo Board without bootloader !!;" \
  150. "fi;" \
  151. "else echo U-Boot not downloaded..exiting;fi\0" \
  152. "bootcmd=run net_nfs\0"
  153. #endif /* __CONFIG_H */