secomx6quq7.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * Copyright (C) 2013 Seco S.r.l
  3. *
  4. * Configuration settings for the Seco Boards.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __CONFIG_H
  9. #define __CONFIG_H
  10. #include "mx6_common.h"
  11. #define CONFIG_BOARD_REVISION_TAG
  12. /* Size of malloc() pool */
  13. #define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M)
  14. #define CONFIG_BOARD_EARLY_INIT_F
  15. #define CONFIG_MXC_UART
  16. #define CONFIG_MXC_UART_BASE UART2_BASE
  17. /* Command definition */
  18. #define CONFIG_CMD_BMODE
  19. #define CONFIG_SYS_MEMTEST_START 0x10000000
  20. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 500 * SZ_1M)
  21. /* MMC Configuration */
  22. #define CONFIG_SYS_FSL_USDHC_NUM 2
  23. #define CONFIG_SYS_FSL_ESDHC_ADDR 0
  24. /* Ethernet Configuration */
  25. #define CONFIG_FEC_MXC
  26. #define CONFIG_MII
  27. #define IMX_FEC_BASE ENET_BASE_ADDR
  28. #define CONFIG_FEC_XCV_TYPE RGMII
  29. #define CONFIG_ETHPRIME "FEC"
  30. #define CONFIG_FEC_MXC_PHYADDR 6
  31. #define CONFIG_PHYLIB
  32. #define CONFIG_PHY_MICREL
  33. #define CONFIG_EXTRA_ENV_SETTINGS \
  34. "netdev=eth0\0" \
  35. "ethprime=FEC0\0" \
  36. "netdev=eth0\0" \
  37. "ethprime=FEC0\0" \
  38. "uboot=u-boot.bin\0" \
  39. "kernel=uImage\0" \
  40. "nfsroot=/opt/eldk/arm\0" \
  41. "ip_local=10.0.0.5::10.0.0.1:255.255.255.0::eth0:off\0" \
  42. "ip_server=10.0.0.1\0" \
  43. "nfs_path=/targetfs \0" \
  44. "memory=mem=1024M\0" \
  45. "bootdev=mmc dev 0; ext2load mmc 0:1\0" \
  46. "root=root=/dev/mmcblk0p1\0" \
  47. "option=rootwait rw fixrtc rootflags=barrier=1\0" \
  48. "cpu_freq=arm_freq=996\0" \
  49. "setbootargs=setenv bootargs console=ttymxc1,115200 ${root}" \
  50. " ${option} ${memory} ${cpu_freq}\0" \
  51. "setbootargs_nfs=setenv bootargs console=ttymxc1,115200" \
  52. " root=/dev/nfs nfsroot=${ip_server}:${nfs_path}" \
  53. " nolock,wsize=4096,rsize=4096 ip=:::::eth0:dhcp" \
  54. " ${memory} ${cpu_freq}\0" \
  55. "setbootdev=setenv boot_dev ${bootdev} 10800000 /boot/uImage\0" \
  56. "bootcmd=run setbootargs; run setbootdev; run boot_dev;" \
  57. " bootm 0x10800000\0" \
  58. "stdin=serial\0" \
  59. "stdout=serial\0" \
  60. "stderr=serial\0"
  61. /* Print Buffer Size */
  62. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  63. sizeof(CONFIG_SYS_PROMPT) + 16)
  64. #define CONFIG_SYS_HZ 1000
  65. /* Physical Memory Map */
  66. #define CONFIG_NR_DRAM_BANKS 1
  67. #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
  68. #define PHYS_SDRAM_SIZE (2u * 1024 * 1024 * 1024)
  69. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
  70. #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
  71. #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
  72. #define CONFIG_SYS_INIT_SP_OFFSET \
  73. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  74. #define CONFIG_SYS_INIT_SP_ADDR \
  75. (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
  76. /* Environment organization */
  77. #define CONFIG_ENV_SIZE (8 * 1024)
  78. #if defined(CONFIG_ENV_IS_IN_MMC)
  79. #define CONFIG_ENV_OFFSET (6 * 128 * 1024)
  80. #define CONFIG_SYS_MMC_ENV_DEV 0
  81. #define CONFIG_DYNAMIC_MMC_DEVNO
  82. #endif
  83. #endif /* __CONFIG_H */